Smooth rotation

Howdy,

I’m pretty new to AS and need some help on getting a frisbee to rotate both quickly and smoothly. The code I am using so far is as follows:

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

The code makes the disc rotate, but the rotation is choppy…I’m trying to go for an effect like the disc is spinning in the air…

Any suggestions?

Thanks!