Name the frame and then gotoAndPlay("frame name")
It is very simple to jump after naming the frame. No need to write complicated scene names. It is absolutely easy to use
What did you name the frame? 1.1 or 1
Don’t write the scene, just write the frame name. For example, if you name the frame a1
just write gotoAndPlay("a1")
on (release) {
gotoAndPlay("a1");
}
---------------------
2 How to add scene frame skipping
on (release) {
gotoAndPlay("Scene 2", 1);
}
Scene 2 is the name of your scene
1 is the frame number to jump