Heellpp!

I’m going insane with this!!!

Using this Loading External SWF’s tutorial everything works great. But i need to go a bit deeper and have links inside the externally loaded swf’s that when clicked will play the current external swf’s outro and then load whatever page the user has just clicked on, in the same container.

I know it has something to do with the _root timeline AS. Here is all the script i am using.

This script is for the buttons/links that load the external swf’s into the "container

on (release) { if (_root.currMovie == undefined) { _root.currMovie = “main”; container.loadMovie(“main.swf”); } else if (_root.currMovie != “main”) { if (container._currentframe >= container.midframe) { _root.currMovie = “main”; container.play();}}}

This code loads an external swf right as the main movie loads.

_root.currMovie = “your_first_section_name”; container.loadMovie(_root.currMovie+“.swf”);

This code is in the last frame of the externally loaded swf files.

_root.container.loadMovie(_root.currMovie+“.swf”);

Please Please Please someone help! Trying to finish a site for a client and this is basically the last issue i am having with the site.

Thanks in advance.

_infected