package { import flash.events.Event; /** * BoxEvent.as - Custom event which is dispatched from the Boxes class. In * this case, it is used to pass the name of the object that's been clicked on. * * 26 September 2007 * @author Dennis Ippel - http://www.rozengain.com * */ public class flex_sandy_box_event extends Event { /** * The event type */ public static const CLICKED:String = "clicked"; /** * This is used to store the name of the object that's been clicked on. */ public var which:String; /** * BoxEvent constructor. Nothing special here :-) * @param type * @param bubbles * @param cancelable * */ public function flex_sandy_box_event(type:String, bubbles:Boolean=false, cancelable:Boolean=false) { super(type, bubbles, cancelable); } } }