Page 1 of 1

Quick Question on Mouse Function

Posted: Fri Jun 22, 2018 1:26 pm
by DonCzirr
Is the scrolling via the mouse changed in this version from III ?

I went back to play around with III for a little while and still found placing the arrow on the edge

rather than full scrolling a bit annoying.

Was that updated in IV ?

RE: Quick Question on Mouse Function

Posted: Sat Jun 23, 2018 4:38 am
by HobbesACW
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.

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