topical media & game development

talk show tell print

student-ar-fl-events-ColorPickerEvent.ax

student-ar-fl-events-ColorPickerEvent.ax [swf] flex


  // Copyright 2007. Adobe Systems Incorporated. All Rights Reserved.
  package fl.events {
          
          import flash.events.Event;
          
The @ax-student-ar-fl-events-ColorPickerEvent class defines events that are associated with the ColorPicker component. These include the following events: <ul> <li><code>@ax-student-ar-fl-events-ColorPickerEvent.CHANGE</code>: dispatched when a user clicks a different color in the ColorPicker component.</li> <li><code>@ax-student-ar-fl-events-ColorPickerEvent.ENTER</code>: dispatched when a user presses the Enter key after entering a value in the text field of the ColorPicker component.</li> <li><code>@ax-student-ar-fl-events-ColorPickerEvent.ITEM_ROLL_OUT</code>: dispatched when the device pointer moves out of a color cell in the ColorPicker component.</li> <li><code>@ax-student-ar-fl-events-ColorPickerEvent.ITEM_ROLL_OVER</code>: dispatched when the device pointer moves over a color cell in the ColorPicker component.</li> </ul>
see: fl.controls.ColorPicker ColorPicker @langversion 3.0 @playerversion Flash 9.0.28.0

  
          public class @ax-student-ar-fl-events-ColorPickerEvent extends Event {
                  
Defines the value of the <code>type</code> property for an <code>itemRollOut</code> event object. <p>This event has the following properties:</p> <table class="innertable" width="100%"> <tr><th>Property</th><th>Value</th></tr> <tr><td><code>bubbles</code></td><td><code>true</code></td></tr> <tr><td><code>cancelable</code></td><td><code>true</code></td></tr> <tr><td><code>color</code></td><td>The current color value of the ColorPicker component.</td></tr> <tr><td><code>currentTarget</code></td><td>The object that is actively processing the event object with an event listener.</td></tr> <tr><td><code>target</code></td><td>The object that dispatched the event. The target is not always the object listening for the event. Use the <code>currentTarget</code> property to access the object that is listening for the event.</td></tr> </table> @eventType itemRollOut
see: #ITEM_ROLL_OVER @langversion 3.0 @playerversion Flash 9.0.28.0

  
                  public static const ITEM_ROLL_OUT:String = "itemRollOut";
                  
                  
Defines the value of the <code>type</code> property for an <code>itemRollOver</code> event object. <p>This event has the following properties:</p> <table class="innertable" width="100%"> <tr><th>Property</th><th>Value</th></tr> <tr><td><code>bubbles</code></td><td><code>true</code></td></tr> <tr><td><code>cancelable</code></td><td><code>true</code></td></tr> <tr><td><code>color</code></td><td>The current color value of the ColorPicker component.</td></tr> <tr><td><code>currentTarget</code></td><td>The object that is actively processing the event object with an event listener.</td></tr> <tr><td><code>target</code></td><td>The object that dispatched the event. The target is not always the object listening for the event. Use the <code>currentTarget</code> property to access the object that is listening for the event.</td></tr> </table> @eventType itemRollOver
see: #ITEM_ROLL_OUT @langversion 3.0 @playerversion Flash 9.0.28.0

  
                  public static const ITEM_ROLL_OVER:String = "itemRollOver";
                  
                  
Defines the value of the <code>type</code> property of an <code>enter</code> event object. <p>This event has the following properties:</p> <table class="innertable" width="100%"> <tr><th>Property</th><th>Value</th></tr> <tr><td><code>bubbles</code></td><td><code>true</code></td></tr> <tr><td><code>cancelable</code></td><td><code>true</code></td></tr> <tr><td><code>color</code></td><td>The current color value of the ColorPicker component.</td></tr> <tr><td><code>currentTarget</code></td><td>The object that is actively processing the event object with an event listener.</td></tr> <tr><td><code>target</code></td><td>The object that dispatched the event. The target is not always the object listening for the event. Use the <code>currentTarget</code> property to access the object that is listening for the event.</td></tr> </table> @eventType enter @langversion 3.0 @playerversion Flash 9.0.28.0

  
                  public static const ENTER:String = "enter";
                  
                  
Defines the value of the <code>type</code> property of the <code>change</code> event object. <p>This event has the following properties:</p> <table class="innertable" width="100%"> <tr><th>Property</th><th>Value</th></tr> <tr><td><code>bubbles</code></td><td><code>true</code></td></tr> <tr><td><code>cancelable</code></td><td><code>true</code></td></tr> <tr><td><code>color</code></td><td>The current color value of the ColorPicker component.</td></tr> <tr><td><code>currentTarget</code></td><td>The object that is actively processing the event object with an event listener.</td></tr> <tr><td><code>target</code></td><td>The object that dispatched the event. The target is not always the object listening for the event. Use the <code>currentTarget</code> property to access the object that is listening for the event.</td></tr> </table> @includeExample ../controls/examples/ColorPicker.hexValue.1.as -noswf @eventType change @langversion 3.0 @playerversion Flash 9.0.28.0

  
                  public static const CHANGE:String = "change";
  
                  
                  
@private (protected) @langversion 3.0 @playerversion Flash 9.0.28.0

  
                  protected var _color:uint;
                  
                  
Gets the color value that is associated with the event. @langversion 3.0 @playerversion Flash 9.0.28.0

  
                   public function get color():uint {
                           return _color;
                   }
                  
                  
Creates a new @ax-student-ar-fl-events-ColorPickerEvent object.
parameter: type Indicates the current event type.
parameter: color Indicates the color that is associated with the current event. @langversion 3.0 @playerversion Flash 9.0.28.0

  
                  public function @ax-student-ar-fl-events-ColorPickerEvent(type:String, color:uint) {
                          super(type, true);                        
                          _color = color;
                  }
                  
                  
Returns a string that contains all the properties of the @ax-student-ar-fl-events-ColorPickerEvent object.
returns: A string representation of the @ax-student-ar-fl-events-ColorPickerEvent object. @langversion 3.0 @playerversion Flash 9.0.28.0

  
                  override public function toString():String {
                          return formatToString("@ax-student-ar-fl-events-ColorPickerEvent", "type", "bubbles", "cancelable", "color");
                  }
                  
                  
Creates a copy of the @ax-student-ar-fl-events-ColorPickerEvent object and sets the value of each parameter to match the original.
returns: A copy of the @ax-student-ar-fl-events-ColorPickerEvent instance. @langversion 3.0 @playerversion Flash 9.0.28.0

  
                  override public function clone():Event {
                          return new @ax-student-ar-fl-events-ColorPickerEvent(type, color);
                  }
          }
  }


(C) Æliens 27/08/2009

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.