How to stop a loop when pressing “OK” on a message box with VBS?

后端 未结 2 1720
北恋
北恋 2021-01-26 15:02

I need some help. I am a newbie in VBS and I want to write a bot for a video game I play to type stuff.

set sellAllTyping = wscript.CreateObject(\"WScript.Shell\         


        
2条回答
  •  悲&欢浪女
    2021-01-26 15:56

    I don't know which looping keyword you used. Use any of the below keyword after

    if x=vbOK then "Exit For/Exit Do/Exit Function" might help you

提交回复
热议问题