FrenzyCat Posted February 6, 2014 Posted February 6, 2014 (edited) Hi, can you guys help me with the code. I need to set 4 hokey each works differently. Is it possible to that? Hotkey ESC = Exit's autoitscript Hotkey CTRL+s = START/PAUSE (two functions on same key) Hotkey x = mouseclick left ($cordx,$cordy) Hotkey y= mouseclick right($cordx,$cordy) Tried something like tihs couldn't figure it out. HotKeySet("{ESC}", "ExitProg") HotKeySet("^s", "StartPause");CTRL+s HotKeySet("x", "mouseleftclick") HotKeySet("c", "mouserightclick") Func ExitProg() Exit 0;;Exits the program EndFunc Dim $On $On = False While 1 While $On = True ;;Do Code WEnd Sleep(100) WEnd Func StartPause() If $On = False Then $On = True Else $On = False EndIf EndFunc Edited February 6, 2014 by FrenzyCat
FireFox Posted February 6, 2014 Posted February 6, 2014 Hi,Yes it's possible, and you already made 2 working hotkeys. What's stopping you for the rest?Br, FireFox.
Unc3nZureD Posted February 6, 2014 Posted February 6, 2014 Now define the mouseleftclick and mouserightclick functions. ( hint: http://www.autoitscript.com/autoit3/docs/functions/MouseClick.htm )
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