Jump to content

Mouse right click and left click on keystroke.


Recommended Posts

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