Controlling Properties of Multiple Movie Clips with Buttons' Event Handlers
Help: list of properties
download source file: prop_demo.fla
Sample Button Event Handlers on (rollOver) {
// show face0
face0._visible = true;
// add to the _rotation property of "rotater":
rotater._rotation = rotater._rotation + 16;
// set the vertical position of "mover"
mover._y = 50;
// set the transparency of "fader":
fader._alpha = 30;
}
on (rollOut, releaseOutside) {
// hide face0
face0._visible = false;
}