-
Ok-
I'm probably making this more complicated than it should be-Messing around with the tute "Rotation Made Easy", and what I want to do is place a button on one corner of the box that rotates with it and will stop the rotation when moused over
Thanks
-
In the box MC, add a fourth frame to both layers. Add a keyframe to the Actionscript layer and give it a stop() action.
Put this on your button:
on (rollOver) {
_root.box.gotoAndStop (4);
}
if you want to give the user the choice to resume the animation, you could place another button on the stage and give it these actions:
on (release) {
_root.box.gotoAndPlay (2);
}
Hope this helps...
Sem
[Edited by Sem on 06-28-2001 at 03:18 PM]
-
Thanks!
I'll give it a try