通过vbs脚本控制方向盘按键

通过vbs脚本控制方向盘按键

保存下面代码为.vbs文件,并执行

Set objShell = CreateObject("Wscript.Shell") 
do
WScript.Sleep 2000
objShell.SendKeys "{RIGHT}"
objShell.SendKeys "{DOWN}"
WScript.Sleep 2000
objShell.SendKeys "{DOWN}"
objShell.SendKeys "{RIGHT}"
loop
奶奶问孙子:4+1等于几 孙子说:等于6-1。 奶奶说:你明明知道答案,为什么不说? 孙子说:年轻人不讲5的……..
原文地址:https://www.cnblogs.com/jasy/p/12968675.html