h3nno Posted July 15, 2007 Posted July 15, 2007 Hi, i am wondering if there is a way to have the user press a key and pause and unpause a process. If({"x"}) Then MsgBox(0, "test", "poo") EndIf ({"x"}) being the user pressing x
Developers Jos Posted July 15, 2007 Developers Posted July 15, 2007 Hi, i am wondering if there is a way to have the user press a key and pause and unpause a process. If({"x"}) Then MsgBox(0, "test", "poo") EndIf ({"x"}) being the user pressing x Check HotKeySet() in the helpfile .. SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
h3nno Posted July 15, 2007 Author Posted July 15, 2007 Check HotKeySet() in the helpfile .. thanks lol i just figured it out after i made the post. and i have checked the HotKeySet() help HotKeySet("MouseClick ($primary)" , "test") but is there some way to make that work? (i have defined $primary as the primary click previously.)
Developers Jos Posted July 15, 2007 Developers Posted July 15, 2007 thanks lol i just figured it out after i made the post. and i have checked the HotKeySet() help HotKeySet("MouseClick ($primary)" , "test") but is there some way to make that work? (i have defined $primary as the primary click previously.) _IsPressed() SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Siao Posted July 15, 2007 Posted July 15, 2007 #Include <Misc.au3> While 1 If _IsPressed("01") Then MsgBox(0, "test", "poo") Wend "be smart, drink your wine"
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