Hi Guys, i am an Italian flash designer.
I was wondering if you could help me with this script.
Let me explain you what is my problem:
on my main timeline i have three levels, in the first one there is a MC with insiede a simbol, in the second and third there is a button.
In the two buttons i put this code:
on (release) {
_root.dimx=300
_root.dimy=50
}
of course in each buttons there are different values.
In the MC that contains a simbol, i have this code:
onClipEvent (load) {
_root.dimx = 150;
_root.dimy = 150;
}
onClipEvent (enterFrame) {
_xscale += (_root.dimx-_xscale)/4;
_yscale += (_root.dimy-_yscale)/4;
if (_xscale<290) {
loadMovieNum(“lallo.swf”, 1);
}
}
So when i click my button, the simbol inside the MC change it’s shape and load the extaernal swf.
So far no problem,
now when i click the second button, i would like that the simbol will still change it’s shap and also will load another different swf.
Could you tell me how should i do that?
I would be pleased if you could write me down the missing part of the script.
I thank you in advance
Ciao Alberto