HobbesACW -> RE: Quick Question on Mouse Function (6/23/2018 7:38:43 AM)
|
Hi Don, I also found this annoying and it hasn't been changed. I managed to solve it in IV using the method Shadrach suggested half way down the second page of this thread. http://www.matrixgames.com/forums/tm.asp?m=4377940&mpage=2&key= I don't have a scroll lock key on my keyboard. If you do just follow his instructions. If you don't then the following script will work with F8. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #Warn ; Enable warnings to assist with detecting common errors. #UseHook On ; Keyboard hook #SingleInstance force SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. ;#IfWinActive The Operational Art of War ;#IfWinActive ahk_exe Opart 4.exe #If WinActive("ahk_class The Operational Art of War") and WinActive("ahk_exe Opart 4.exe") F8:: ; ScrollLock override Send {ScrollLock} Return #IfWinActive Cheers, Chris
|
|
|
|