what i am up to:
function growPurple (Event:MouseEvent):void{
purpleSquare_mc.scaleX += .5;
purpleSquare_mc.scaleY += .5;
if (purpleSquare_mc.scaleY > 5){
}
}
pinkBall_mc.addEventListener(MouseEvent.CLICK, growPurple);
what i want to do:
basically, i want to click on pinkBall until the purpleSquare reaches a certain size, then have purpleSquare explode.
so questions – do i need an if statement?
how do i make it stop with purpleSquare at a certain scale?
how do i make it explode? is there a set event for that in flash?
THANKS THANKS THANKS!,
a humble flash novice