I have an easy question for someone.
Have a scene that loops over and over until three objects are clicked
and then the scene moves on.
How would I write a conditional statement for this" after the three objects are clicked the movie continues to the next scene.
I know the logic is not right and that you cannot say if(red.clicked){//do this};
can anyone help please…this should be easy…
var blue:MovieClip = blue_mc;
var yellow:MovieClip = yellow_mc;
var red:MovieClip = red_mc;
if(red.clicked){
//do this
gotoAndStop(‘here’);
}