Developers Jos Posted April 6, 2008 Developers Posted April 6, 2008 (edited) Thats simple Lets assume you hit the "z" on your keyboard. That will trigger Func z(), which will Send a "z", which will trigger Func a() ....etc etc etc... Jos Edited April 6, 2008 by Jos 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.
Developers Jos Posted April 6, 2008 Developers Posted April 6, 2008 I didn't say it is not possible because it is. Your script needs to be changed , thats all. 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.
Developers Jos Posted April 6, 2008 Developers Posted April 6, 2008 maybe it's possible, but i gotta randomize the keysits simple, just temporary disable the HotKey for the letter you send. 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.
Developers Jos Posted April 6, 2008 Developers Posted April 6, 2008 Oh wait, Jos, I'm sorry but do you have an example on how to temporarily disable a hotkey?this should do it for letter a: Func a() HotKeySet("a") Send("a") HotKeySet("a", "z") EndFunc ;==>a 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.
monoceres Posted April 6, 2008 Posted April 6, 2008 (edited) I have: HotKeySet("a","a") HotKeySet("b","b") while 1 Sleep(100) WEnd Func a() HotKeySet("b") Send("b") HotKeySet("b","b") EndFunc Func b() HotKeySet("a") Send("a") HotKeySet("a","a") EndFunc Edit: Too slow Edited April 6, 2008 by monoceres Broken link? PM me and I'll send you the file!
monoceres Posted April 6, 2008 Posted April 6, 2008 Mine is "nlmlxvivh" 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