按键精灵执行一个命令后,若果真则不执行下面的命令怎么做

2025-02-25 01:41:21
推荐回答(1个)
回答1:

if true then
delay 100
else
//语句
end

或者
if false then
//语句
end