mohd Posted February 9, 2008 Posted February 9, 2008 بسم الله الرحمن الرحيم hi i want to ask some qusetion about hotkey set .... - how can i use this code where i put the key are there another think i must do it ; Press Esc to terminate script, Pause/Break to "pause" Global $Paused HotKeySet("{PAUSE}", "TogglePause") HotKeySet("{ESC}", "Terminate") HotKeySet("+!d", "ShowMessage") ;Shift-Alt-d ;;;; Body of program would go here;;;; While 1 Sleep(100) WEnd ;;;;;;;; Func TogglePause() $Paused = NOT $Paused While $Paused sleep(100) ToolTip('Script is "Paused"',0,0) WEnd ToolTip("") EndFunc Func Terminate() Exit 0 EndFunc Func ShowMessage() MsgBox(4096,"","This is a message.") EndFunc can this script run if i did not install hotkeys program ? thanks
Josbe Posted February 9, 2008 Posted February 9, 2008 Reformulate your questions. At least, looking that script itself could answer your questions. AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
mohd Posted February 9, 2008 Author Posted February 9, 2008 (edited) ok .. also i need - what must i put ?... and where ? - if i run this script on another computer dont have hotkeys program .. is the script work ? thanks Edited February 9, 2008 by mohd
Josbe Posted February 9, 2008 Posted February 9, 2008 ok .. also i need - what must i put ?... and where ? - if i run this script on another computer dont have hotkeys program .. is the script work ? thanksObviously, it's better to set the Hotkey in the begining (before use).Well, you need read the helpfile: HotKeySetSendThe scripts without AutoIt installed AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
mohd Posted February 9, 2008 Author Posted February 9, 2008 first thanks i want to tell u im read this http://www.autoitscript.com/autoit3/docs/f...s/HotKeySet.htmbefore i wrote the topic put i dont under stand what i put in "function"inHotKeySet ( "key" [, "function"] )thanks again
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now