SendString 发送文本消息 |
|
发送字符串文本消息 |
|
参数1:字符串型,文本消息 |
|
无 |
|
PID=Plugin.Web.Bind("wqm.exe")
Call Plugin.Web.Go("www.baidu.com")
//模拟鼠标移动
Call Plugin.Web.MoveTo(380,185)
//模拟鼠标左键单击
Call Plugin.Web.LeftClick(380,185)
Call Plugin.Web.SendString("测试一下看看行不行") |
|
Plugin PID=Web.Bind("wqm.exe")
Plugin Web.Go("www.baidu.com")
//模拟鼠标移动
Plugin Web.MoveTo(380,185)
//模拟鼠标左键单击
Plugin Web.LeftClick(380,185)
Plugin Web.SendString("测试一下看看行不行")
|