using UnityEngine; using System.Collections; using System.Diagnostics; public class NewBehaviourScript1 : MonoBehaviour {
[System.Runtime.InteropServices.DllImport("user32")]//导入user32这个dll文件,其实我们用到的模拟鼠标按键已经封装在这个windows下的文件里了
private static extern int mouse_event(int dwFlags, int dx, int dy, int cButtons, int dwExtraInfo); //引用user32.dll中的方法,下面同理:
unity3d学习教程 自动打卡程序 模拟鼠标按键代码
[System.Runtime.InteropServices.DllImport("user32")] private static extern bool SetCursorPos(int x, int y); const int MOUSEEVENTF_MOVE = 0x0001; //定义鼠标状态 const int MOUSEEVENTF_LEFTDOWN = 0x0002; const int MOUSEEVENTF_LEFTUP = 0x0004; const int MOUSEEVENTF_RIGHTDOWN = 0x0008; const int MOUSEEVENTF_RIGHTUP = 0x0010; const int MOUSEEVENTF_MIDDLEDOWN = 0x0020; const int MOUSEEVENTF_MIDDLEUP = 0x0040; const int MOUSEEVENTF_ABSOLUTE = 0x8000; // Use this for initialization void Start () { StartCoroutine(OpenWs()); } IEnumerator OpenWs() { Process.Start("http://www.unitymanual.com/u.php"); WWW web=new WWW("http://www.unitymanual.com/u.php");
yield return web;//这里没找到好的方法来延迟鼠标按键,如果网页打开缓慢,可能会导致网页还没打开,鼠标已经模拟按下.或者可以等待一定时间,个人感觉这种方法不好.还有就是每次开机时浏览器启动的比较缓慢,也会导致鼠标提前模拟按下的情况
查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/extra/
int x=1120;//打卡按钮的位置,电脑分辨率不同,可能导致位置也不同,这个根据实际情况微调下:
int y=370; SetCursorPos(x,y);//设置鼠标位置 mouse_event(MOUSEEVENTF_LEFTDOWN,0, 0, 0, 0); //模拟鼠标按下,弹起 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0); } // Update is called once per frame void Update () { } }
作者:csdn博客 unity3d学习者
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索unity3d
, unity3d 仿真
, 鼠标
, int
, sql 打卡记录
, const
, setcursorpos
, unity php
, system
, 按键
, 模拟按键
, 模拟
, 代码分析unity3d
指纹仪 打卡窗口
按键精灵模拟鼠标移动、按键精灵鼠标侧键代码、按键精灵鼠标左键代码、按键精灵鼠标右键代码、鼠标按键代码,以便于您获取更多的相关知识。