Hello, this should be a simple question for any scripting vets out there, I almost feel silly asking but I’ve got to much on my plate to leave it as a nuisence.
On the topic of loading external .swf’s (with into’s & outro’s) I’ve simply nested my animated buttons within movies and they are not correctly linked with my “container” movie in which the .swf’s are loading into. They work just fine when placed on the main timeline, but I need them enclosed within independant movies as to be properly animated. Here is an example of the button script:
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “pages/about”;
container.loadMovie(“pages/about.swf”);
}
else if (_root.currMovie != “pages/about”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “pages/about”;
container.play();
}
}
}
I believe the solution will be found having the path to “container” scripted correctly. The movie this script is enclosed in is named “clipAbout”.
Thanks for any help…