Dönen Nesne
// Bir yazı veya şekli movie clip yapın// (convert to seymbol > movie clip)
// Daha sonra bu movie clip'in 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;
}