Hi everybody,
need really help with removing movie clip from another movie clip. I’m not as3 coder at all, so any help will be really appreciated.
Heres my code:
[COLOR=“DarkRed”]stop();
import flash.utils.*;
setInterval(showMessage,10000);
function showMessage(){
gotoAndPlay(2);
}
//Create an empty Array with the name movieArray
var mainmovieArray:Array = new Array();
//Put the MovieClips into the Array
//The size of this Array is now 5
mainmovieArray = [“yemimain”, “nobrumain”, “angeemain”, “nickmain”, “marekmain”];
// Declare variable to use later
var myMainMovieClip:MovieClip;
if ((mainmovieArray[Math.floor(Math.random() * 5)]) == “yemimain”) {
// Create a new MovieClip
myMainMovieClip = new yemimain();
} else if ((mainmovieArray[Math.floor(Math.random() * 5)]) == “nobrumain”) {
// Create a new MovieClip
myMainMovieClip = new nobrumain();
} else if ((mainmovieArray[Math.floor(Math.random() * 5)]) == “angeemain”) {
// Create a new MovieClip
myMainMovieClip = new angeemain();
} else if ((mainmovieArray[Math.floor(Math.random() * 5)]) == “nickmain”) {
// Create a new MovieClip
myMainMovieClip = new nickmain();
} else if ((mainmovieArray[Math.floor(Math.random() * 5)]) == “marekmain”) {
// Create a new MovieClip
myMainMovieClip = new marekmain();
} else { // In case the random number is 1
myMainMovieClip = new yemimain();
}
MAINemptyMC_mc.addChild(myMainMovieClip);
// Add the new MovieClip to the empty MovieClip
// so that we can see it.
// Set the location if required
MAINemptyMC_mc.x = 605;
MAINemptyMC_mc.y = 131;[/COLOR]
…
It puts random movie clips to MAINemptyMC_mc and then after time loop it jumps on previous empty frame and whole procedure starts again. Problem is, I probably (not sure if it is the problem) have to remove myMainMovieClip from MAINemptyMC_mc somehow because otherwise after few loop it starts kind of jamming… See your self at http://www.danceacademy.cz/fdemo.html
Thank u very much in advance