首页  > 02年世界杯巴西

常见问题(FAQ)

通过 SendPlay 函数, SendMode Play 或热字串选项 SP 来使用 SendPlay.

SendPlay "abc"

SendMode "Play"

Send "abc"

:SP:btw::by the way

; 或

#Hotstring SP

::btw::by the way

注意: SendPlay 在启用了用户账户控制时可能没有效果, 即使以管理员权限运行脚本.

使用 SetKeyDelay 增加延迟. 例如:

SetKeyDelay 0, 50

SetKeyDelay 0, 50, "Play"

试试 ControlSend, 在其他 Send 模式无效时它可能可以:

ControlSend "abc",, GameTitle

试试在多种发送方式中使用按键的按下和弹起事件:

Send "{KEY Down}{KEY Up}"

试试在按键的按下事件和弹起事件之间使用 Sleep:

Send "{KEY down}"

Sleep 10 ; 试试不同的毫秒数.

Send "{KEY up}"