Hello,
I have a movie clip on the main stage, and would like to be able to zoom in and out and rotate it using buttons i have created. The Movie is called "Card" and any help is appreciated,
Cheers Dave
Printable View
Hello,
I have a movie clip on the main stage, and would like to be able to zoom in and out and rotate it using buttons i have created. The Movie is called "Card" and any help is appreciated,
Cheers Dave
make a button Zoom with actions:
on(press) {
zoom = true
}
on (release) {
zoom = false
}
now in the main TimeLine put in frame 2:
if (zoom == true) {
myMovie._scale = myMovie._scale + 1
}
gotoAndPlay(1)
it's the same for the rotation; use a variable rotate(true/false) and
in the script myMovie._rotation = myMovie._rotation + 1