I´m making an all-flash-site using scenes.
I have made one scene for all the pages. One scene for home, about, contact, and so on…
To jump between scenes i use buttons with an action like:
on(release){
this.gotoAndPlay(“portfolioEnd”);
_global.my_target = (“about”);
}
–what this does, is to skip to the frame named portfolioEnd in the scene I´m in, and play an “outro”. Then in the last frame, I
have an action like:
_root.gotoAndPlay(“my_target”);
–I then want it to goto and play from the scene and frame called about.
The problem is that it seems that the order of the scenes in the “scenes inspector” messes things up. I don´t understand why the movie can play a different scene with a different frame-name than I have written… This makes me insane!