Jump to content

Terminte a script with hotkey problem


Recommended Posts

I'm trying to write Autoit script that does a few simple drag and drop in a window. That works fine. But I'd also like to be able to abort the commands when the script is running by pressing the ENTER key.

I defined a hotkey for ENTER associated to a terminate function as I have seen done in a post in this forum.

I also enveloped the commands of the body of the script in a For loop that runs exactly one time, because I read in the Autoit help file that a hotkey interrupts the current function or statement. (maybe the For loop isn't necessary, but anyway the hotkey doesn't work without it either).

My problem is that when executing the commands in the For loop, my pressing the ENTER key has no effect at all. The commands go on being executed regardless.

Thankyou for any help.

My script:

HotKeySet("{ENTER}", "Terminate")

Func Terminate()

Exit 0

EndFunc

For $i=0 to 0

winActivate("test")

MouseClickDrag("left",571,152,220,152,1)

MouseClick ( "left", 236, 570 , 10)

Next

Link to comment
Share on other sites

it works fine for me

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

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...