Cheers for the reply, but i figured it out after
reading this and having a long drawn out battle with actionscript!
If anyones interested, or has the same problem and stumbles across this thread he's what i did:
The stage holds a empty MC called "container" thats about it.
On each of the dynamically loaded SWFs the actionscript for their buttons looks like this:
stop();
this._lockroot = true;
button1.onPress = function() {
if (_level0.currMovie == undefined) {
_level0.currMovie = "home";
_level0.container.loadMovie("home.swf");
} else if (_level0.currMovie != "home") {
if (_level0.container._currentframe >= _level0.container.midframe) {
_level0.currMovie = "home";
_level0.container.play();
}
}
}
button2.onPress = function() {
if (_level0.currMovie == undefined) {
_level0.currMovie = "art";..... yadda yadda yadda, you get the idea
The problem was i was using _root when i should of been using _level0, once i tried that it all fell into place
Get in you beauty! Back of the net!! I figured it out, me! thats a hell of an achievement for someone whose an artist and not a coder, but i am going to start doing my homework on actionscript now, i thought i had a good grasp on it, but i really don't, still, i'm glad i was able to sort this out myself, it's given me a real buzz
Peace!