Animation does not function after the button linked to the scene.

Copy link to clipboard
Copied
Hi. I have problem regarding my buttons in my Adobe Flash project. The button was linked to this one page, but once the user click the button, nothing happen on the scene which was supposedly to have animations. It just happen to few parts of the project not the whole project. Anyone know how to solve this? Thank you so much.
Copy link to clipboard
Copied
if you have a button that changes the current frame to frame 100, all movieclips that are in a keyframe at frame 100 will play from their start. all movieclips that are in a non-keyframe at frame 100 will not necessarily play.

Copy link to clipboard
Copied
i am sorry but can you explain it more simpler? i dont understand. sorry. thank you.
Copy link to clipboard
Copied
make sure the problematic frame contains a keyframe in the layer that holds the problematic movieclip.
Copy link to clipboard
Copied
I have the same problem and my buttons does not change anything, simply sends to the next scene. and yet it doesn't work. The program stays in the first frame and does not move.
Copy link to clipboard
Copied
create a test fla with a button. can you get the button to respond to input?
Copy link to clipboard
Copied
Hi kglad​
I have the same problem with the persons above. I would like to make my button to move to the previous scene but it doesn't works.
stop();
var HomeC:HomeCa = new HomeCa();
HomeC.addEventListener(MouseEvent.CLICK, prvscene);
function prvscene(event:MouseEvent):void {
gotoAndPlay(1,"cover");
}
Could you please take a look at my coding and tell me what is wrong with it?
Copy link to clipboard
Copied
use the trace function to confirm prvscene is being called.
if it is, you don't have a scene named 'cover' or your code is working correctly and you don't recognize that.

