0

我有以下语法的 AppleScript:

do shell script "something"
do shell script "something 2"
do shell script "something 3"

让我们说“something 2”给了我们一个错误,并且没有被正确执行。无论“某事 2”的结果是什么,我如何让 AppleScript 继续执行“某事 3”?

希望你明白,

谢谢!

4

1 回答 1

1

放一个try方块

do shell script "something"
try
    do shell script "something 2"
end try
do shell script "something 3"
于 2012-07-04T19:23:38.870 回答