ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
flash.events 

DataEvent  - AS3

Packageflash.events
Classpublic class DataEvent
InheritanceDataEvent Inheritance TextEvent Inheritance Event Inheritance Object

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

An object dispatches a DataEvent object when raw data has completed loading. There are two types of data event:
  • DataEvent.DATA: dispatched for data sent or received.
  • DataEvent.UPLOAD_COMPLETE_DATA: dispatched when data is sent and the server has responded.

View the examples

Related API Elements



Public Properties
 PropertyDefined By
 Inheritedbubbles : Boolean
[read-only] Indicates whether an event is a bubbling event.
Event
 Inheritedcancelable : Boolean
[read-only] Indicates whether the behavior associated with the event can be prevented.
Event
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 InheritedcurrentTarget : Object
[read-only] The object that is actively processing the Event object with an event listener.
Event
  data : String
The raw data loaded into Flash Player or Adobe AIR.
DataEvent
 InheritedeventPhase : uint
[read-only] The current phase in the event flow.
Event
 Inheritedtarget : Object
[read-only] The event target.
Event
 Inheritedtext : String
For a textInput event, the character or sequence of characters entered by the user.
TextEvent
 Inheritedtype : String
[read-only] The type of event.
Event
Public Methods
 MethodDefined By
  
DataEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, data:String = "")
Creates an event object that contains information about data events.
DataEvent
  
[override] Creates a copy of the DataEvent object and sets the value of each property to match that of the original.
DataEvent
 Inherited
formatToString(className:String, ... arguments):String
A utility function for implementing the toString() method in custom ActionScript 3.0 Event classes.
Event
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Checks whether the preventDefault() method has been called on the event.
Event
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Cancels an event's default behavior if that behavior can be canceled.
Event
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Prevents processing of any event listeners in the current node and any subsequent nodes in the event flow.
Event
 Inherited
Prevents processing of any event listeners in nodes subsequent to the current node in the event flow.
Event
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
  
[override] Returns a string that contains all the properties of the DataEvent object.
DataEvent
 Inherited
Returns the primitive value of the specified object.
Object
Public Constants
 ConstantDefined By
  DATA : String = "data"
[static] Defines the value of the type property of a data event object.
DataEvent
  UPLOAD_COMPLETE_DATA : String = "uploadCompleteData"
[static] Defines the value of the type property of an uploadCompleteData event object.
DataEvent
Property Detail

data

property
data:String

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

The raw data loaded into Flash Player or Adobe AIR.



Implementation
    public function get data():String
    public function set data(value:String):void
Constructor Detail

DataEvent

()Constructor
public function DataEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, data:String = "")

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

Creates an event object that contains information about data events. Event objects are passed as parameters to event listeners.

Parameters
type:String — The type of the event. Event listeners can access this information through the inherited type property. There is only one type of data event: DataEvent.DATA.
 
bubbles:Boolean (default = false) — Determines whether the Event object participates in the bubbling phase of the event flow. Event listeners can access this information through the inherited bubbles property.
 
cancelable:Boolean (default = false) — Determines whether the Event object can be canceled. Event listeners can access this information through the inherited cancelable property.
 
data:String (default = "") — The raw data loaded into Flash Player or Adobe AIR. Event listeners can access this information through the data property.

Related API Elements

Method Detail

clone

()method
override public function clone():Event

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

Creates a copy of the DataEvent object and sets the value of each property to match that of the original.

Returns
Event — A new DataEvent object with property values that match those of the original.

toString

()method 
override public function toString():String

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

Returns a string that contains all the properties of the DataEvent object. The string is in the following format:

[DataEvent type=value bubbles=value cancelable=value data=value]

Returns
String — A string that contains all the properties of the DataEvent object.
Constant Detail

DATA

Constant
public static const DATA:String = "data"

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9, Flash Lite 4

Defines the value of the type property of a data event object.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
dataThe raw data loaded into Flash Player or Adobe AIR.
targetThe XMLSocket object receiving data.

Related API Elements

UPLOAD_COMPLETE_DATA

Constant 
public static const UPLOAD_COMPLETE_DATA:String = "uploadCompleteData"

Language Version: ActionScript 3.0
Runtime Versions: AIR 1.0, Flash Player 9.0.28.0, Flash Lite 4

Defines the value of the type property of an uploadCompleteData event object.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the Event object with an event listener.
dataThe raw data returned from the server after a successful file upload.
targetThe FileReference object receiving data after a successful upload.

Related API Elements

DataEventExample.as

The following example creates an XMLSocket and connects it to a socket server running on port 8080 of yourDomain. An event listener is attached to the XMLSocket object that listens for data events, which are dispatched whenever raw data is received.

Notes:

  • To generate a securityError event in this example, you need to compile the SWF file with "Local playback security" set to "Access network only".
  • You need a server running on [yourDomain] using port 8080.
package {
    import flash.display.Sprite;
    import flash.events.DataEvent;
    import flash.net.XMLSocket;

    public class DataEventExample extends Sprite {
        private var hostName:String = "[yourDomain]";
        private var port:uint = 8080;
        private var socket:XMLSocket;

        public function DataEventExample() {
            socket = new XMLSocket();
            socket.addEventListener(DataEvent.DATA, dataHandler);
            socket.connect(hostName, port);
        }

        private function dataHandler(event:DataEvent):void {
            trace("dataHandler: " + event.data);
        }
    }
}