bushdaka
12-18-2007, 10:11 PM
I found myself unable to zoom with v1.22 since I don't have a mouse on the machine used to run MySEQ. So I just used AutoHotKey from www.autohotkey.com (http://www.autohotkey.com) to make the keyboard emulate the mouse.
Page UP/Page Down - zoom in and out (scrolls wheel mouse)
Page End - reset (clicks middle button)
Just a helpful hint.
#Persistent
#SingleInstance force
#InstallKeybdHook
#InstallMouseHook
#KeyHistory 100
#UseHook on
$PgDn::
Send, {WheelDown}
return
$PgUp::
Send, {WheelUp}
return
$End::
Send, {MButton}
return
Page UP/Page Down - zoom in and out (scrolls wheel mouse)
Page End - reset (clicks middle button)
Just a helpful hint.
#Persistent
#SingleInstance force
#InstallKeybdHook
#InstallMouseHook
#KeyHistory 100
#UseHook on
$PgDn::
Send, {WheelDown}
return
$PgUp::
Send, {WheelUp}
return
$End::
Send, {MButton}
return