Progammatically Scroll
Posted: 11 Apr 2014 19:46
I use laptop, many times without a mouse, so it's not convenient to use touchpad to scroll horizontally.
XY has no internal function to progammatically scroll - right?
But even Autohotkey fail - this AHK works with most windows except XY: Scroll Right:Scroll Left:There must be something strange with XY's window
XY has no internal function to progammatically scroll - right?
But even Autohotkey fail - this AHK works with most windows except XY: Scroll Right:
Code: Select all
MouseGetPos, m_x, m_y
hw_m_target := DllCall( "WindowFromPoint", "int", m_x, "int", m_y )
SendMessage, 0x114, 1, 0,, ahk_id %hw_m_target%
Code: Select all
MouseGetPos, m_x, m_y
hw_m_target := DllCall( "WindowFromPoint", "int", m_x, "int", m_y )
SendMessage, 0x114, 0, 0,, ahk_id %hw_m_target%