If Left Control key is not pressed, bind WheelDown to send the key PGDN
If Left Control key is pressed, bind WheelDown to send Down key
This is my basic script:
WheelDown::PGDN ^WheelDown::Down
What am I doing wrong?
Posted 19 April 2012 - 01:18 AM
WheelDown::PGDN ^WheelDown::Down
Posted 19 April 2012 - 06:21 AM
WheelDown::PGDN <^WheelDown::Down ;left control only
Posted 19 April 2012 - 01:02 PM
*WheelDown::
SetKeyDelay -1
Send {Blind}{PGDN DownTemp}
return
*WheelDown up::
SetKeyDelay -1
Send {Blind}{PGDN Up}
retur
Posted 19 April 2012 - 07:25 PM
<^WheelDown::Down
<^WheelDown::
Send {Down}
returnbut so far each behaves the same. Any ideas if the problem lies within the game or if <^ could be causing the down key to fire twice? Note that if I just press the Down key it only presses the key once. I've reset all of my Logitech Mouse bindings to their default to make sure nothing is going on there. Why does doing something so simple have to be so hard =(. Thank you so much for your help! :mrgreen:WheelDown::PGDN
<^WheelDown::
Send {Down}
KeyWait WheelDown
Send {Up}
return