// Bir yazıyı yada bir şekli movie clip yapın ve event'ine şu kodları yazın..


onClipEvent (load) {
rpm = 60;
degreesPerSecond = (rpm*360)/60;
// ters yönde dönmesi için degreesPerSecond = (rpm*-360)/60;
fps = 24;
degreesPerFrame = degreesPerSecond/fps;
}

onClipEvent (enterFrame) {
_rotation += degreesPerFrame;
}