FrenzyCat 0 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 Share this post Link to post Share on other sites
FireFox 260 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. OS : Win XP SP2 (32 bits) / Win 7 SP1 (64 bits) / Win 8 (64 bits) | Autoit version: latest stable / beta.Hardware : Intel(R) Core(TM) i5-2400 CPU @ 3.10Ghz / 8 GiB RAM DDR3.My UDFs : Skype UDF | TrayIconEx UDF | GUI Panel UDF | Excel XML UDF | Is_Pressed_UDFMy Projects : YouTube Multi-downloader | FTP Easy-UP | Lock'n | WinKill | AVICapture | Skype TM | Tap Maker | ShellNew | Scriptner | Const Replacer | FT_Pocket | Chrome theme makerMy Examples : Capture tool | IP Camera | Crosshair | Draw Captured Region | Picture Screensaver | Jscreenfix | Drivetemp | Picture viewerMy Snippets : Basic TCP | Systray_GetIconIndex | Intercept End task | Winpcap various | Advanced HotKeySet | Transparent Edit control Share this post Link to post Share on other sites
Unc3nZureD 13 Posted February 6, 2014 Now define the mouseleftclick and mouserightclick functions. ( hint: http://www.autoitscript.com/autoit3/docs/functions/MouseClick.htm ) Share this post Link to post Share on other sites