source file is too large to attach. i am attaching the swf instead. this is without any tampering with the code. when the code is tampered with, (read above).
on (rollOver) {
tellTarget ("/awards2/exit") {
gotoAndPlay("rollover");
}
}
on (rollOut) {
tellTarget ("/awards2/exit") {
gotoAndPlay("rollout");
}
}
on (release) {
tellTarget ("/awards2") {
gotoAndPlay("leave");
}
}
This is for the awards section. “awards2” is the instance name of the movie clip that has the section window. “awards” is the instance name of the movie clip that has the awards button symbol.
How do you call up the current MC? What is its name??? Flash will have a hard time telling which MC is the window MC, because there are many other MCs running simultaneously as special effects.
Id use a variable to control which movie clip is currently being displayed and when another button is clicked, the current mc goes to its exit frame.
Does it makes sense to you?
:-\
really easy, really simple, no problem. and if that doesn’t work, then add the path to them as well like “_root.service” or “_root.someothercrazymc.service”
*Originally posted by kartik *
*why don’t u create an array of the swf files and then use a for loop and removeMovieClip(array) or something lik that **
Originally posted by kax if you need to load them again, you should use the attachMovie method to load them from the Library whenever you need those MovieClips.