kulercolorsreceivedevent.as
来自「flex 实现的一个showcase 喜欢flex的朋友可以」· AS 代码 · 共 20 行
AS
20 行
package com.teknision.kuler.events
{
import flash.events.Event;
public class KulerColorsReceivedEvent extends Event
{
public static var COLORS_RECEIVED:String = "onColorsReceived";
public var colors:Array;
public function KulerColorsReceivedEvent(i_eventName:String,i_colors:Array=null, i_cancelable:Boolean = false )
{
super(i_eventName,true,i_cancelable);
colors = i_colors
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?