Jump to content

Recommended Posts

Posted

Hey,

I can't figure a way to combine two regular keys so when they are both pressed Down a command will be executed.

alt/shift/ctrl + some key is working fine but for example how can i bind two keys like "A" and "S" ?

Thanks

Posted

Hi!

I would propose you use _IsPressed() to determine if the keys are pressed.

#include <misc.au3>

While 1
    If _IsPressed("41") And _IsPressed("53") Then
        MsgBox(64,"Event","A & S is pressed")
    EndIf
    Sleep(10)
WEnd

Broken link? PM me and I'll send you the file!

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...