[FONT=Arial]Hello all,[/FONT]
[FONT=Arial]I have a question in regards to this tutorial:[/FONT]
[FONT=Arial]http://www.kirupa.com/developer/mx2004/transitions.htm[/FONT]
[FONT=Arial]I understand the idea in which you can load movies into an empty mc holder. However, I would like to be able to load other movies using another empty mc within this empty mc, so for example, on certain pages the nav at the top would stay the same, but the content inside would change. At other times when the user clicks on a button, the whole page would change. Can someone please guide me in how this can be done?[/FONT]
[FONT=Arial]Here is the code which is attached to the buttons:[/FONT]
[FONT=Arial]on (release) {[/FONT]
[FONT=Arial]if (_root.currMovie == undefined) {[/FONT]
[FONT=Arial]_root.currMovie = “section1”;[/FONT]
[FONT=Arial]container.loadMovie(“section1.swf”);[/FONT]
[FONT=Arial]} else if (_root.currMovie != “section1”) {[/FONT]
[FONT=Arial]if (container._currentframe >= container.midframe) {[/FONT]
[FONT=Arial]_root.currMovie = “section1”;[/FONT]
[FONT=Arial]container.play();[/FONT]
[FONT=Arial]}[/FONT]
[FONT=Arial]}[/FONT]
[FONT=Arial]}[/FONT]
[FONT=Arial]Any help would be greatly appreicated. Thanks in advance…[/FONT]