PDA

View Full Version : Actionscript animation/rotation


djc
12-07-2002, 02:54 AM
I would like to rotate a circular graphic using actionscript. How would I do this?

ssjogus
12-07-2002, 03:13 AM
i a not sure, whether u want to rotate the movie clip around itself or it should rotate around some other object. If u want to make it rotate around itself , u can try this:

onClipEvent (enterFrame) {
this._rotation+=10;
}

djc
12-07-2002, 01:58 PM
Yes, that is exactly what I wanted to do. Thank you for the help!