In flash can we pass a MC as a parameter into a function ?
I want to make a generic function to “shake” a movie. This would take as a param the MC shake and restore.
My code is like this (place in frame 1 of a layer called actions).
[indent]function shake (mc:MovieClip) {
var loop, or_x, or_y:Number;
// Hold the original value of the mc position etc.
or_x = mc._x;
or_y = mc._y;
// loop to shake the mc
for (loop=1; loop<10; loop++) {
mc._x = or_x+random(6)-3;
mc._y = or_y+random(6)-3;
}
trace(‘Out of loop.’);
/* Restore the mc to original values */
mc._x = or_x;
mc._y = or_y;
}
[/indent]
This does not shake - ALTHOUGH if within an MC it works- but as i need a generic function for all …