I tried searching through the forums before posting my question in case the answer was already out there. I’m sure it is and I just missed it ;'( Anyway, here is my dilemma …
Some of the action-script ;')
flower_mc.petal1_mc.onRelease = function() {
flower_mc.petal1_mc.onEnterFrame = function() {
if (_root.flower_mc._x <= 320) {
_root.flower_mc._x += 5;
_root.container.loadMovie(“about.swf”,1);
updateAfterEvent();
}
}
}
flower_mc.petal2_mc.onRelease = function() {
flower_mc.petal2_mc.onEnterFrame = function() {
if (_root.flower_mc._x <= 320) {
_root.flower_mc._x += 5;
_root.container.loadMovie(“contact.swf”,1);
updateAfterEvent();
}
}
}
“about.swf” will load when it is the first .swf loaded.
“contact.swf” will load when it is the first .swf loaded.
If “about.swf” is loaded and I try loading “contact.swf,” it will not load and “about.swf” won’t go away. Same thing happens if I do it vice-versa. Could it be something simple that I have overlooked? I have tried “unLoadmovie” but that doesn’t work. I also have three other movieclips that need to be loaded also. Any help or suggestions are greatly appreciated!