DeltaPacket.getSource()

Availability

Flash Player 7.

Edition

Flash MX Professional 2004.

Usage

deltaPacket.getSource()

Parameters

None.

Returns

An object; the source of the DeltaPacket collection. This object is typically a descendant of MovieClip, but this is not required. For example, if the source is a data set, this object might be _level0.myDataSet.

Description

Method; returns the source of the DeltaPacket collection.

Example

The following example calls the getSource() method:

// ...
var deltapkt:DeltaPacket = _parent.myDataSet.deltaPacket;
var dpSourceText:String = "Source: " + deltapkt.getSource();
trace(dpSourceText);
// ...