gatsbysamericandream Posted April 10, 2006 Posted April 10, 2006 I want to make key X a hotkey but I want X to show at the same time. If I do something like...: Func press_a() <SOME RANDOM ACTION> Send("a") EndFunc ... the function will just continuously keep recalling itself. Any way around this?
Infinitex0 Posted April 10, 2006 Posted April 10, 2006 May I be the first to say what???? The below statement is False.The above statement is True.a lesson I learned from Greenmachine; give a man a code and he'll solve one problem. Teach a man to code and he'll solve all his problems.P.S please don't use autoIt as a virus creator/spyware maker(keyLogger especially)Cick this and help me[center]My Scripts:[/center][center]Port Scanner[/center]
gatsbysamericandream Posted April 10, 2006 Author Posted April 10, 2006 If a function that allows me press A so that it shows up as it normally would, but something else also happens in the background. The problem is that when it sends A again, it just recalls the function over.
Moderators SmOke_N Posted April 10, 2006 Moderators Posted April 10, 2006 Try this:HotKeySet('x', '_x') While 1 Sleep(1000) WEnd Func _x() HotKeySet('x'); Basically turning the 'x' hotkey off Send('x') MsgBox(0, 'Test', 'Testing');Do something HotKeySet('x', '_x'); Restarting 'x' hotkey EndFunc Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
gatsbysamericandream Posted April 10, 2006 Author Posted April 10, 2006 THANKS A LOT SMOKE! IT WORKED 100%.
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