TheLeO
Joined: 11 Jun 2005 Posts: 160 Location: England ish
|
Posted: Sat May 24, 2008 7:21 am Post subject: Bug??? "<+>+a" and "<^>!SC1E" |
|
|
Okies, i found this to be very strange..
This works fine:
(hold both shift buttons then w a s d to use them as navigation.)
| Code: | <+>+w::Send, {up}
<+>+a::Send, {left}
<+>+s::Send, {Down}
<+>+d::Send, {Right}
|
if I add any of the 2 extra hotkeys, then the "left" a doesn't work. the script sends a normal "a" instead of a "left".. (SC1E is the Key code for "a")
| Code: |
<^>!SC1E::Sendinput, ä
<^>!+SC1E::Sendinput, Ä
<+>+w::Send, {up}
<+>+a::Send, {left}
<+>+s::Send, {Down}
<+>+d::Send, {Right}
|
I couldn't figure out why that's the case...
however, i did find a solution, by using key codes instead of characters.
| Code: |
<^>!SC1E::Sendinput, ä
<^>!+SC1E::Sendinput, Ä
<+>+SC11::Send, {up}
<+>+SC1E::Send, {left}
<+>+SC1F::Send, {Down}
<+>+SC20::Send, {Right} |
Well on the end of the day, I'm still curious why that's the case?  _________________ And i say: where there is a problem , there is a solution.(well some where that is.)
::
I Have Spoken
:: |
|