最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
七色花--as3变色应用练习
时间:2022-07-02 17:08:50 编辑:袖梨 来源:一聚教程网
类:
package {
//********************************************************//
//*******本类由浪子啸天创意设计****************************//
//*******有什么问题请mail:[email protected]******************//
//*******更多的请访问:http://www.flasc.cn***//
//*******转载请注明处处,请保留版权*************************//
//*******************************************************//
import flash.geom.ColorTransform;
import flash.display.*;
public class Trgb extends MovieClip {
public var col:ColorTransform=new ColorTransform ;
public function Trgb() {
col.color=rgb();
this.transform.colorTransform=col;
}
public function rgb():uint {
return (Math.random() * 0xffffff + 0xff000000);
}
}
}
flash9中代码:
import flash.geom.ColorTransform;
var myTimer:Timer = new Timer(100,90);
var i:Number=myTimer.currentCount;
function StartTimer() {
myTimer.addEventListener("timer", addmc);
myTimer.start();
}
function addmc(i:Number) {
i=myTimer.currentCount;
var mymc=new Trgb();
addChild(mymc);
mymc.x=250;
mymc.y=200;
mymc.rotation=4*i;
}
StartTimer()
相关文章
- 《无限暖暖》天星之羽获得位置介绍 12-20
- 《流放之路2》重铸台解锁方法介绍 12-20
- 《无限暖暖》瞄准那个亮亮的成就怎么做 12-20
- 《无限暖暖》魔气怪终结者完成方法 12-20
- 《无限暖暖》曙光毛团获得位置介绍 12-20
- 《无限暖暖》日光果获得位置介绍 12-20