I am stuck on the best course of action here.
I have got a index.swf file which contains a header and the navigation buttons, and these will remain the same throughout the website.
What i was hoping to do was to be able to use the index.swf file, and then load the other swf’s into it with the following script on the button:
on (release) {
loadMovieNum(“long.swf”, 1);
}
Whilst this does do what i want it to do in that this layer comes to the front, but it covers the logo and navigation, therefore i have two options, the first would be to have the logo and navigation buttons on all pages, but the downside to that is that it increases the overrall website size.
The second option and my preferred option (if possible) would be to find some way of loading long.swf into index.swf but in the correct position so that the logo and nav buttons are still visible.
Can somebody please come back to me and tell me the best or most common way to handle this.
Thanks,
TB32