当前位置: 首页 > 图文教程 > Flash动画 > ActionScript > Flash AS3实例教程:简单的转动的星星

ActionScript
将FlashVars写在JS函数中,实现变量更新与后台同步
Flash与Flex3结合学习心得体会
Flash AS简单制作画线条动画
Flash教程:如何把库中的元件加载到场景中
Flash AS3运行错误参考文档
Flash AS3制作自由落体运动代码解析
多层级加载相对路径遇到的问题解决方法
加载PNG后其透明区域不响应事件
AS3教程:按顺序播放多个FLV视频
Flash AS与JS的互动
Flash AS实例:智力过河小游戏源代码
Flash as教程:图片模糊运动
Flash AS3实例教程:物体运动速度向量(velocity)
Flash AS3.0教程:学习帧循环的运用
Flash AS3动态改变影片剪辑元件颜色
Flash AS 制作创意的鼠标经过的网页导航
Flash AS实例教程 会眨眼的美女
Flash AS2实例 跳动的小球动画效果
Flash AS3实例:制作好看的七彩小球动画
AS2.0高级滤镜效果如何用在JPG图片上

ActionScript 中的 Flash AS3实例教程:简单的转动的星星


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-30   浏览: 175 ::
收藏到网摘: n/a

 演示:


这是一个非常简单的实例,主要是库元件与外部类进行类绑定的操作。Star类定义了两个方法:星的颜色和旋转。fla的代码是一个for循环,调用Star类的构造函数,生成100个星的实例,随机摆放,并显示在舞台上。

1、新建一个fla文件,宽400高400,帧频默认,背景颜色黑色,保存。
2、选择多边形工具,设置为5边,星形。在舞台上画一个任意颜色、大小的星。
3、在选取状态下,右键转换为影片剪辑,全对齐,命名为Star,删除舞台上的星。
4、按Ctrl+L组合键,打开库面板,右键单击Star影片剪辑,选择“属性”打开元件属性面板,勾选ActionScript选项,这样就使影片剪辑与Star类进行了绑定。如图:
sshot-1.png
5、下面开始编写Star类的代码,新建一个ActionScript文件。
输入下面的代码:


package {



        import flash.display.MovieClip;

        import flash.geom.ColorTransform;

        import flash.events.*;



        public class Star extends MovieClip {



                private var starColor:uint;

                private var starRotation:Number;



                public function Star () {



                        //Calculate a random color

                        this.starColor = Math.random() * 0xffffff;



                        // Get access to the ColorTransform instance associated with star.

                        var colorInfo:ColorTransform = this.transform.colorTransform;



                        // Set the color of the ColorTransform object.

                        colorInfo.color = this.starColor;



                        // apply the color to the star

                        this.transform.colorTransform = colorInfo;



                        //Assign a random alpha for the star

                        this.alpha = Math.random();



                        //Assign a random rotation speed

                        this.starRotation =  Math.random() * 10 - 5;



                        //Assign a random scale

                        this.scaleX = Math.random();

                        this.scaleY = this.scaleX;



                        //Add ENTER_FRAME where we do the animation

                        addEventListener(Event.ENTER_FRAME, rotateStar);

                }



                //This function is responsible for the rotation of the star

                private function rotateStar(e:Event):void {

                        this.rotation += this.starRotation;

                }

        }

}
6、保存在fla同一目录下,保存名为Star.as。注意:这一步非常重要,一定要同fla主文件保存在相同的目录下,如果保存在其它的目录下,要指明路径。初学者在测试时往往出现找不到类的错误提示,问题都在这里。
7、返回到fla,在第1层的第一帧输入代码:


for (var i = 0; i < 100; i++) {

        var star:Star = new Star();

        star.x = stage.stageWidth * Math.random();

        star.y = stage.stageHeight * Math.random();

        addChild (star);

}
8、好了,所有的工作都已经完成,测试你的影片。

附件下载:星.rar