Posted February 18, 2012
I was searching on how to bind my mouse wheel to weapon changing in Blood. I finally found a way on how to do so. Get autohotkey and create this script:
#ifWinActive, ahk_class SDL_app
*WheelUp::
SendEvent {Up Down}
Sleep 200
SendEvent {Up Up}
Return
*WheelDown::
SendEvent {Down Down}
Sleep 200
SendEvent {Down Up}
Return
This will bind your mouse wheel to the up and down arrows. Also, this script will only be on when your dosbox is the active window. I'm not sure how to change what keys the mousewheel is bound to; if you find out tell me :).
Big thanks to Code120! Here is the thread I found his script on: http://vogons.zetafleet.com/viewtopic.php?t=27517&sid=b0c55d85737e9184e1f2254cac39c754
#ifWinActive, ahk_class SDL_app
*WheelUp::
SendEvent {Up Down}
Sleep 200
SendEvent {Up Up}
Return
*WheelDown::
SendEvent {Down Down}
Sleep 200
SendEvent {Down Up}
Return
This will bind your mouse wheel to the up and down arrows. Also, this script will only be on when your dosbox is the active window. I'm not sure how to change what keys the mousewheel is bound to; if you find out tell me :).
Big thanks to Code120! Here is the thread I found his script on: http://vogons.zetafleet.com/viewtopic.php?t=27517&sid=b0c55d85737e9184e1f2254cac39c754
Post edited February 18, 2012 by Kil3r