/* Copyright (c) 2009 Yahoo! Inc. All rights reserved. The copyrights embodied in the content of this file are licensed under the BSD (revised) open source license */ package com.yahoo.astra.animation { import flash.events.Event; /** * The AnimationEvent class represents events that are broadcast by the com.yahoo.astra.animation.Animation class. * * @see com.yahoo.astra.animation.Animation * * @author Josh Tynjala */ public class AnimationEvent extends Event { //-------------------------------------- // Static Properties //-------------------------------------- /** * Indicates that the animation has started playing. *
The properties of the event object have the following values:
*Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The object that defines the
* event listener that handles the event. For example, if you use
* myButton.addEventListener() to register an event listener,
* myButton is the value of the currentTarget property. |
target | The object that dispatched the event;
* it is not always the object listening for the event.
* Use the currentTarget property to always access the
* object listening for the event. |
parameters | The values of the properties controlled by the animation, * when the event occurred. |
The properties of the event object have the following values:
*Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The object that defines the
* event listener that handles the event. For example, if you use
* myButton.addEventListener() to register an event listener,
* myButton is the value of the currentTarget property. |
target | The object that dispatched the event;
* it is not always the object listening for the event.
* Use the currentTarget property to always access the
* object listening for the event. |
parameters | The values of the properties controlled by the animation, * when the event occurred. |
The properties of the event object have the following values:
*Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The object that defines the
* event listener that handles the event. For example, if you use
* myButton.addEventListener() to register an event listener,
* myButton is the value of the currentTarget property. |
target | The object that dispatched the event;
* it is not always the object listening for the event.
* Use the currentTarget property to always access the
* object listening for the event. |
parameters | The values of the properties controlled by the animation, * when the event occurred. |
The properties of the event object have the following values:
*Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The object that defines the
* event listener that handles the event. For example, if you use
* myButton.addEventListener() to register an event listener,
* myButton is the value of the currentTarget property. |
target | The object that dispatched the event;
* it is not always the object listening for the event.
* Use the currentTarget property to always access the
* object listening for the event. |
parameters | The values of the properties controlled by the animation, * when the event occurred. |