哪位知道应如何用程序把鼠标移动!(50分)

  • 主题发起人 主题发起人 胖熊
  • 开始时间 开始时间

胖熊

Unregistered / Unconfirmed
GUEST, unregistred user!
如标题。
 
mouse_event
查查前面的问题,很多
 
用Win API:
BOOL SetCursorPos(

int X, // horizontal position
int Y // vertical position
);

For Example:
SetCursorPos(100,100);
 
SetCursorPos
 
先用GetCursorPos获得,再用SetCursorPos来移动
 
控制鼠标的动作(包括移动、点击)
http://www.gislab.ecnu.edu.cn/delphibbs/DispQ.asp?LID=248532
 
自己查API 函数
 
setcurpos(x,y);其中x,y的单位为像素,值为相对于屏幕的左上角。
 
多人接受答案了。
 
后退
顶部