Fixed AS1/2 - gotolabelaction is gotoandplay

This commit is contained in:
Jindra Petřík
2021-11-23 19:46:56 +01:00
parent 54954700c7
commit 2e808bb084
2 changed files with 2 additions and 1 deletions

View File

@@ -42,7 +42,7 @@ public class GotoLabelActionItem extends ActionItem {
@Override
public GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) {
writer.append("gotoAndStop");
writer.append("gotoAndPlay");
writer.spaceBeforeCallParenthesies(1);
writer.append("(\"");
writer.append(Helper.escapeActionScriptString(label));