怎样实现后台鼠标滚轮
想要实现后台鼠标滚轮 并设置滚动一次的位置· #include <WinAPI.au3>#include <Constants.au3>
_WinAPI_Mouse_Event ( $iFlags [, $iX = 0 [, $iY = 0 [, $iData = 0 [, $iExtraInfo = 0]]]] )
If $iFlags is $MOUSEEVENTF_WHEEL, then $iData specifies the amount of wheel movement. A positive
value indicates that the wheel was rotated forward away from the user. A negative value indicates that the
wheel was rotated backward, toward the user. One wheel click is defined as $WHEEL_DELTA, which is 120. If
$iFlags is not $MOUSEEVENTF_WHEEL, then $iData should be zero.
_WinAPI_Mouse_Event ( $MOUSEEVENTF_WHEEL, "", "", 200) 这个事前台的 啊 主要想实现后台的 稳定· 你想干什么用途呢? PostMessage 学习学习。。。。。。。。。
页:
[1]