Hackerr Posted November 2, 2013 Posted November 2, 2013 heres the code i am using While 1 If _IsPressed(11+31) Then $Stop= False Switch $Stop Case True ...... Case False then ExitLoop EndSwitch WEnd
Hackerr Posted November 2, 2013 Author Posted November 2, 2013 could it be the "11+31"? i meant it to be control+1
AutID Posted November 2, 2013 Posted November 2, 2013 #include <Misc.au3> While 1 If _IsPressed("11") And _IsPressed("31") Then MsgBox(0, "", "Control + 1 pressed") EndIf WEnd https://iblockify.wordpress.com/
Kidney Posted November 2, 2013 Posted November 2, 2013 what the OP is doing is adding 31+11 and then looking for that character. so whatever 42 is. which is "B"
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