如何模拟鼠标动作?(100分)

  • 主题发起人 主题发起人 goodboy
  • 开始时间 开始时间
G

goodboy

Unregistered / Unconfirmed
GUEST, unregistred user!
如何在程序中模拟鼠标动作,程序能自动控制鼠标的点击,拖动等。
 
用Windows API"mouse_event"可以模拟鼠标动作.
 
以前也讨论过!

//移动
mouse_event(MOUSEEVENTF_MOVE,100,100,0,0);
//双击
mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
 
在已答问题中以"鼠标“搜索,有答过的
 
但如何控制鼠标按预定轨迹运动,如何模拟拖动?那位大虾能告诉,100分将给你!
 
//拖动
mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);
mouse_event(MOUSEEVENTF_MOVE,?,?,0,0);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);

?处为所经过的轨迹方程上的点。
 
I wander that the mouse is really moved when a Mouse_event is used?
Thank you!
 
接受答案了.
 
后退
顶部