unreal99 Posted July 8, 2009 Posted July 8, 2009 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
monoceres Posted July 8, 2009 Posted July 8, 2009 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!
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