如何停止执行框架上的剩余代码? AS3

How can I stop execution of remainder of code on a frame? AS3

使用goto命令不会停止当前执行

例如,如果我有

gotoAndStop(2);
trace("1");

应用程序仍然会执行跟踪命令,然后移动到第 2 帧。我想知道是否有任何这样的命令会立即停止执行帧中剩余的任何代码?

您可以使用

return;

中断框架脚本执行的指令。