Jump to content

Pause behaviour?


IAMK
 Share

Recommended Posts

Hello,

 

I tried making a pause button for my script but it doesn't unpause. I then went and copied the pause example in AutoIT, and it works.

What am I doing incorrectly? Instead of showing a tooltip (like in the example), mine types "A".

HotKeySet("{DEL}", "endScript")
HotKeySet("{P}", "pauseScript")

$paused = False

While(1)
   Send("A")
   Sleep(100)
WEnd

Func pauseScript()
   $paused = Not $paused

   While($paused)
      Sleep(100)
   WEnd
EndFunc

Func endScript()
   Exit 0
EndFunc

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...