如果想使一个小球不停的旋转,可以使用以下方法
package { import flash.display.MovieClip; import flash.events.Event; public class chen extends MovieClip{ public function chen() { mc.x=stage.stageWidth/2; mc.y=stage.stageHeight/2; addEventListener(Event.ENTER_FRAME,aa); } public function aa(e:Event):void { mc.rotationX+=1; mc.rotationY+=1; mc.rotation+=10; } } }