Ok, this is getting annoying. I have a project I am working on, and in a part of the game I have a movieclip. In this movieclip there are two frame. The first frame is a unanimated version with a button that it starts on. But the second frame is a animated version with the button. The point is, I have a movieclip with a fake picture of a button in frame one, and the real button in frame two. This is where the problem comes in. When you click the button that is in the second frame, it is supposed to go to a certain scene and frame. In this case, here is what I have.
on(release){
_root.gotoAndStop("Story", 1);
}
Easy and normal coding… but it doesn’t work. I have used the trace command to try and figure out if it works, and the trace command works… but this gotoAndStop part doesn’t. I have the scene name correct. Whats wrong?