|
发表于 2014-8-18 00:57:22
|
显示全部楼层
#include <WinAPI.au3>
#include <Constants.au3>
_WinAPI_Mouse_Event ( $iFlags [, $iX = 0 [, $iY = 0 [, $iData = 0 [, $iExtraInfo = 0]]]] )
[optional] 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) |
|