I'm trying to set up my navigation so it's easily scalable.
Right now I have the navigation as a movie clip saved as a .swf file and then I use the _root.createEmptyMovieClip() to bring it into a a container on each page. The idea is, if any changes are made to navigation, I won't have to go into each page and update.
It works fine in the first flash movie that opens the site but the same action script fails on every page there after (i've done three).
Here's the script:
onLoad = function () {
_root.createEmptyMovieClip("container", 100);
loadMovie("flash/navigation.swf", "container");
container._x = 0 ;
container._y = 0 ;
}
play();
If I set the "100" to "0" on the first line above I can see the navigation below the currently playing movie.
Also, I'm using this script to bring up next page:
on (release) {
loadMovieNum("/site/flash/bagsOther.swf", 0);
}
Right now I have the navigation as a movie clip saved as a .swf file and then I use the _root.createEmptyMovieClip() to bring it into a a container on each page. The idea is, if any changes are made to navigation, I won't have to go into each page and update.
It works fine in the first flash movie that opens the site but the same action script fails on every page there after (i've done three).
Here's the script:
onLoad = function () {
_root.createEmptyMovieClip("container", 100);
loadMovie("flash/navigation.swf", "container");
container._x = 0 ;
container._y = 0 ;
}
play();
If I set the "100" to "0" on the first line above I can see the navigation below the currently playing movie.
Also, I'm using this script to bring up next page:
on (release) {
loadMovieNum("/site/flash/bagsOther.swf", 0);
}