相当于“跳到第n行#”的Applescript

时间:2014-05-20 15:09:19

标签: java applescript

我已经使用applescript创建了一个文本游戏,因为它有大约60个结束它很长,所以我想要一些像java一样的代码,让你跳转到代码的不同部分。

AppleScript中是否存在这样的东西?

1 个答案:

答案 0 :(得分:2)

Applescript没有行号goto命令。您必须将条件函数构造为单独的处理程序,然后根据需要调用每个处理程序。

if thisBoolean then
    runThisHandler()
else if thatBoolean then
    runThatHandler()
else
    -- do something else
end