Ham123 Posted May 10, 2009 Posted May 10, 2009 Do you guys know of any kind of script or recording software that will record which keys and for how long you press them? For example, a racing game, I press forward arrow key, and at the same time, press the left arrow key, then I let go of the left arrow key, and hold the forward arrow key. It records for how long I press these keys. Any such script/software known? Ive tried AHK, but it is not what Im looking for. Thanks!
Andreik Posted May 10, 2009 Posted May 10, 2009 (edited) Do you guys know of any kind of script or recording software that will record which keys and for how long you press them?For example, a racing game, I press forward arrow key, and at the same time, press the left arrow key, then I let go of the left arrow key, and hold the forward arrow key. It records for how long I press these keys.Any such script/software known? Ive tried AHK, but it is not what Im looking for. Thanks!For what purpose?If is what I think, here is an answer:http://www.autoitscript.com/forum/index.ph...st&p=337809 Edited May 10, 2009 by Andreik
Ham123 Posted May 10, 2009 Author Posted May 10, 2009 For what purpose?If is what I think, here is an answer:http://www.autoitscript.com/forum/index.ph...st&p=337809Yup, thats what I was looking for pretty much I had a different idea just now of recording what I did to notepad and the browser at the same time. So it would send the key to both of them, then id just make one line of send( and be done with it lol
Ham123 Posted May 10, 2009 Author Posted May 10, 2009 (edited) Sorry, just one more question to anyone reading this. I am trying to use the following to send a keystroke to both the browser and notepad at the same time (using Autohotkey) WinGet, firefoxid, List, Cubefield - Mozilla Firefox WinGet, notepadid, List, Untitled - Notepad ~a:: KeyWait a IfWinActive, Untitled - Notepad { ControlSend,, a, ahk_id %firefoxid1% ControlSend,, a, ahk_id %notepad1% return } Is there something wrong with this code? Thank you. Or is there another way to send keystrokes from the browser to notepad? Edited May 10, 2009 by Ham123
Developers Jos Posted May 10, 2009 Developers Posted May 10, 2009 Sorry, just one more question to anyone reading this.I am trying to use the following to send a keystroke to both the browser and notepad at the same time (using Autohotkey)WinGet, firefoxid, List, Cubefield - Mozilla FirefoxWinGet, notepadid, List, Untitled - Notepad~a::KeyWait aIfWinActive, Untitled - Notepad{ControlSend,, a, ahk_id %firefoxid1%ControlSend,, a, ahk_id %notepad1%return}Is there something wrong with this code? Thank you.Or is there another way to send keystrokes from the browser to notepad?Yes the is a lot wrong with that code is its not proper AutoIt3 syntax.Your source tells you what syntax it is.... 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.
Ham123 Posted May 10, 2009 Author Posted May 10, 2009 Yes the is a lot wrong with that code is its not proper AutoIt3 syntax.Your source tells you what syntax it is.... i understand that its for autohotkey, but i figured that since they're somewhat similar, someone would have experience with it
Developers Jos Posted May 10, 2009 Developers Posted May 10, 2009 i understand that its for autohotkey, but i figured that since they're somewhat similar, someone would have experience with it I won't hold it against you but you have no idea which can of worms you are opening.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.
Ham123 Posted May 10, 2009 Author Posted May 10, 2009 I won't hold it against you but you have no idea which can of worms you are opening.JosI interpreted them as somewhat similar, sorry.Im looking at control send atm, trying to figure out how to do it
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