[F5]Arg!! For Actionscript Guru!! Beginner needs help!
Hi!
Is it possible to define the properties of a movieclip by clicking a button and then to play the movieclip by pressing another button.
for example:
clicking on buttonA defines the sizeA of a circle
clicking on buttonB defines a second sizeB of the same circle
clicking on buttonC makes the circel growing from sizeA to sizeB
this I need for 25 different circles which shoud grow at the same time
I don’t want to use
on ClipEvent (enterFrame) {
_xscale+=5;
}
because I have 25 circles and this makes the script very slow. Wih tweening I can’t define sizeB. So how can I assign the variables to sizeA and sizeB? How has the MC/ the script to look like?