ActionScript 2.0 Components Language Reference |
|
|
|
| DeltaPacket interface > DeltaPacket.getSource() | |||
Flash Player 7.
Flash MX Professional 2004.
deltaPacket.getSource()
None.
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.
Method; returns the source of the DeltaPacket collection.
The following example calls the getSource() method:
// ... var deltapkt:DeltaPacket = _parent.myDataSet.deltaPacket; var dpSourceText:String = "Source: " + deltapkt.getSource(); trace(dpSourceText); // ...
|
|
|
|