onClipEvent (load) {
rotationSpeed = 1;
objectAlpha = 100;
}
onClipEvent (enterFrame) {
_rotation -= rotationSpeed;
_alpha = objectAlpha;
}
This is a little bit of script I have done to rotate a movie clip object. Howver because I am doing this with actionscript and not a motion tween I need the rotated object to fade in while rotating and after it has faded in keep rotating with full alpha.
Any help on this one. All must be done with AS alone