Flash CS4 Tutorial – 3D Planet Rings
Flash Tutorial No Comments »In today's tutorial, you'll learn how to use Flash CS4's new 3D Rotation tool in order to transform the stroke of a circle into easy-to-edit planet rings.
In today's tutorial, you'll learn how to use Flash CS4's new 3D Rotation tool in order to transform the stroke of a circle into easy-to-edit planet rings.
I usually restrain myself from personal posts on School of Flash, but this time, I couldn't help myself. I took this picture earlier today, and it was too precious not to share!

In this tutorial, you'll learn all about the new 3D features included with Flash CS4. The latest release of Flash supports the ability to rotate and move flat objects (movie clips) around in 3D space. In the tutorial, you'll also learn how to animate the 3D rotation of an object using ActionScript's new rotationX, rotationY, and rotationZ properties.
Here is the code for this tutorial:
addEventListener(Event.ENTER_FRAME, rotate3D); function rotate3D(e:Event):void { sof_mc.rotationX += 4; sof_mc.rotationY += 4; }
Recent Comments