AutoHotKey Script (Should work with new browsers)
Download AutoHotKey (google it)
Copy this script and change names to what you want.
Format
*:: * = hotkey
Send = sends text
Win Things = Window controls
Always end with a return
Never use a hotkey, to send a hotkey ie,
NEVER
i::
Send, i
(will infinite loop)
SAVE YOUR SCRIPT AS AN .AHK and then double click on it to activate it. You will have to rightclick on the desktop icon (system tray) to stop it,
w::
WinActivate, Anubis - Mozilla Firefox
WinWaitActive, Anubis - Mozilla Firefox
Send, {Up}
WinActivate, Forsaken - Mozilla Firefox
WinWaitActive, Forsaken - Mozilla Firefox
Send, {Up}
return
d::
WinActivate, Anubis - Mozilla Firefox
WinWaitActive, Anubis - Mozilla Firefox
Send, {Right}
WinActivate, Forsaken - Mozilla Firefox
WinWaitActive, Forsaken - Mozilla Firefox
Send, {Right}
return
a::
WinActivate, Anubis - Mozilla Firefox
WinWaitActive, Anubis - Mozilla Firefox
Send, {Left}
WinActivate, Forsaken - Mozilla Firefox
WinWaitActive, Forsaken - Mozilla Firefox
Send, {Left}
return
s::
WinActivate, Anubis - Mozilla Firefox
WinWaitActive, Anubis - Mozilla Firefox
Send, {Down}
WinActivate, Forsaken - Mozilla Firefox
WinWaitActive, Forsaken - Mozilla Firefox
Send, {Down}
return
q::
WinActivate, Anubis - Mozilla Firefox
WinWaitActive, Anubis - Mozilla Firefox
Send, 1
WinActivate, Forsaken - Mozilla Firefox
WinWaitActive, Forsaken - Mozilla Firefox
Send, 1
return
e::
WinActivate, Anubis - Mozilla Firefox
WinWaitActive, Anubis - Mozilla Firefox
Send, 1
WinActivate, Forsaken - Mozilla Firefox
WinWaitActive, Forsaken - Mozilla Firefox
Send, 1
return
|