For example, sometimes it works fine, I press 1, and 8 appears. Other times I press 1, and 18 appears.
I tried researching this but it seems I failed, I apologize if it's really obvious.
Thanks for any help.
Posted 15 April 2012 - 12:23 AM
Posted 15 April 2012 - 12:53 AM
1:: keywait, 1 ;Waits for key "1" to be released/unpressed. send 8 ; Sends/presses key "8" return ; Tells AHK that this is finished, no more commands to be sent unless you press "1" again.
*1::8 ;The "*" tells ahk to send "8" after the "1" key is released.
Posted 15 April 2012 - 10:06 AM
Posted 16 April 2012 - 05:56 PM
Posted 16 April 2012 - 06:16 PM
Posted 16 April 2012 - 06:31 PM
i think that is untrue*1::8 ;The "*" tells ahk to send "8" after the "1" key is released.
#InstallKeybdHook SendMode Event #UseHookthen i'd try:
Hotkey, 1, Label1 return Label1: sendinput 8 returnone other quick fix off the top of my head:
Posted 16 April 2012 - 07:32 PM
F8::Suspend #IfWinActive ahk_class RAPTURE t::1 g::2 v::3 q::4 e::5 z::6 c::7 1::8 2::9 3::0
Posted 19 April 2012 - 07:27 AM
Posted 30 May 2012 - 04:34 PM
First i wanna say that the fact that its for a game in no way precludes remapping through registry.Sigh, still no use. Wish I knew why this was so complicated. >.<
It's only for the game, so remapping through registry isn't an option - guess I'll just keep reloading the script when I get errors, at least that works for now..
Thanks a lot for all the help, just really curious as to why all the trouble for a simple remap, I suppose it'll forever bug me.