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
1 comment:
The lack of scroll wheel zoom is still a problem with Tina. I never thought to write an Autohotkey script. Great idea! There is still the problem that most tools zoom based on the position of the cursor, whereas Tina always zooms into the middle of the screen. Got any ideas on how to solve that problem?
Post a Comment