code on the MC (= movieclip):
onClipEvent (load){ // when the MC appears on the stage
moveSpeed = 5; // i define the move speed
rotSpeed = 10; // and the rotation speed. you can name the speed variables just like you want.
}
onClipEvent (enterFrame){ // everytime (12fps means that following codes will work 12 times a second)
if (Key.isDown (Key.RIGHT)){ // when you press the right arrowkey
_x += moveSpeed; // this object moves on the x-axis what the move speed variable is
_rotation += rotSpeed; // this object rotates according to the rotation speed
}
}
i hope this helped, i'm sorry, i can't explain it better because i gotta leave now. bye