Pete123 Posted September 11, 2012 Posted September 11, 2012 Please excuse my inexperience. I just installed autoit and am running a script my friend gave to me. The problem I am having is that in the top left corner of my screen is a small white block of text that says Script is "Running". When I open a a game that is running in a small fullscreen resolution the white block of text flickers within the game and slows down my frame rate a lot. Is there any way to remove this notification that ths script is active?
JohnOne Posted September 11, 2012 Posted September 11, 2012 You will need to post the script. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Pete123 Posted September 11, 2012 Author Posted September 11, 2012 (edited) from my perspective it looks like more of something that Autoit does as opposed to the script , i may be wrong , please let me know __________________________________ Global $Paused HotKeySet("{HOME}", "TogglePause") HotKeySet("{END}","terminate") $runs = 0 While 1 WinActivate("Diablo III") HotKeySet("{|}") HotKeySet("{|}", "EquipSwitcher") TogglePause() WEnd Func EquipSwitcher() $MousePos = MouseGetPos() Send('{i}') MouseClick ( "right", 674, 488, 1, 1) MouseClick ( "right", 680, 530, 1, 1) MouseClick ( "right", 680, 573, 1, 1) MouseClick ( "right", 680, 604, 1, 1) MouseClick ( "right", 711, 591, 1, 1) MouseClick ( "right", 712, 520, 1, 1) MouseClick ( "right", 716, 447, 1, 1) MouseClick ( "right", 747, 448, 1, 1) MouseClick ( "right", 745, 514, 1, 1) Send('{i}') MouseMove ( $MousePos[0], $MousePos[1] ,3 ) EndFunc Func TogglePause() $Paused = Not $Paused While $Paused Sleep(100) ToolTip('Script is "Running"', 0, 0) WEnd ToolTip("") EndFunc ;==>TogglePause Func terminate() Local $pos = MouseGetPos() MsgBox(0, "Mouse x,y:", $pos[0] & "," & $pos[1] & "Runs " & $runs) Exit 0 EndFunc Edited September 11, 2012 by Pete123
JohnOne Posted September 11, 2012 Posted September 11, 2012 Turn ToolTip('Script is "Running"', 0, 0)into;ToolTip('Script is "Running"', 0, 0) AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
somdcomputerguy Posted September 11, 2012 Posted September 11, 2012 Forum RulesAny discussion of using AutoIt to launch or interact with a game or game server violates our rules. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
Administrators Jon Posted September 12, 2012 Administrators Posted September 12, 2012 Thread locked due to violation of Forum Rules.
Recommended Posts