Packagecom.soundstep.ui.events
Classpublic class BaseEventUI
InheritanceBaseEventUI Inheritance flash.events.Event

Author: Romuald Quantin - www.soundstep.com
Class version: 1.1.0
Actionscript version: 3.0
Copyright: Mozilla Public License 1.1 (MPL 1.1)
http://www.opensource.org/licenses/mozilla1.1.php
You can use BaseUI in any flash site, except to include/distribute it in another framework, application, template, component or structure that is meant to build, scaffold or generate source files.
Date: 06-2008
Usage: Event used in the ui package


Example
  baseUI = new BaseUI(this);
  baseUI.addEventListener(BaseEventUI.ADDED, addedHandler);
  baseUI.addEventListener(BaseEventUI.REMOVED, removedHandler);
  



Public Properties
 PropertyDefined by
  elementUI : ElementUI
BaseEventUI
Public Methods
 MethodDefined by
  
BaseEventUI(type:String, elementUI:ElementUI, bubbles:Boolean = false, cancelable:Boolean = false)
BaseEventUI
  
clone():Event
BaseEventUI
  
toString():String
BaseEventUI
Public Constants
 ConstantDefined by
  ADDED : String = "added"
[static]
BaseEventUI
  REMOVED : String = "removed"
[static]
BaseEventUI
Property detail
elementUIproperty
public var elementUI:ElementUI
Constructor detail
BaseEventUI()constructor
public function BaseEventUI(type:String, elementUI:ElementUI, bubbles:Boolean = false, cancelable:Boolean = false)Parameters
type:String
 
elementUI:ElementUI
 
bubbles:Boolean (default = false)
 
cancelable:Boolean (default = false)
Method detail
clone()method
public override function clone():Event

Returns
Event
toString()method 
public override function toString():String

Returns
String
Constant detail
ADDEDconstant
public static const ADDED:String = "added"
REMOVEDconstant 
public static const REMOVED:String = "removed"