How to make it so that when I click 3 total movie clips, it disappears and takes me to a new frame?
Hey everyone, I am creating a "iSpy" game, where you find objects and once you do, it will take you to a "winner screen"
How do I make it so that when after I click each of the objects (3 movieclips in total), they disappear right after? Also, how do I make it so that when I get a score of 3 (Each time I click an object, its +1) it takes me to a winner screen?
Any help would be appreciated as I'm not really sure how the delete function in actionscript works, but I do have an idea on how to set up the scoreBox which is listed below:
// I use my text tool add a text box and type Score: and then change it to dynamic text, then I add another text box right next to it, I make the instance name scoreBox and type nothing in it
var score = 0; // my variable for my starting score
scoreBox.text = score;
code here for deleting object
score +=1;
scoreBox.text = score;
