美文网首页
VBS自动输入按键

VBS自动输入按键

作者: 秦楚何 | 来源:发表于2018-12-27 15:37 被阅读0次

    自动输入:

    Dim wshshell
    Set wshshell = WSCRIPT.createobject("wscript.shell")
    wshshell.appactivate "魔兽世界"
    while true
    wscript.sleep 1000
    WshShell.SendKeys "{1}"
    WshShell.SendKeys "{2}"
    wend

    结束:
    dim WSHshell
    set WSHshell = wscript.createobject("wscript.shell")
    WSHshell.run "taskkill /im wscript.exe /f ",0 ,true

    相关文章

      网友评论

          本文标题:VBS自动输入按键

          本文链接:https://www.haomeiwen.com/subject/cgorlqtx.html