Now, you want the same thing with TINA-TI.
- Download and install Autohotkey
- Install the Easy Window Dragging (KDE) Style script in your Startup folder so it launches automatically each time you boot your PC.
- With the script running, go to the task bar notification area, rightclick on the H (autohotkey) icon and choose Edit this Script.
- Insert below code above the "!LButton::" line in your script.
^WheelUp::
SetTitleMatchMode 2
IfWinActive, Schematic Editor
{
Send !vzi
return
}
Send ^{WheelUp}
return
^WheelDown::
SetTitleMatchMode 2
IfWinActive, Schematic Editor
{
Send !vzo
return
}
Send ^{WheelDown}
return
No comments:
Post a Comment