?? kulercolorsreceivedevent.as
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -