ActionScript 2.0 Components Language Reference |
|
|
|
| DeltaPacket interface > DeltaPacket.logChanges() | |||
Flash Player 7.
Flash MX Professional 2004.
deltaPacket.logChanges()
None.
A Boolean value; true if the consumer of the delta packet should log changes found in the delta packet.
Method; returns true if the consumer of this delta packet should log the changes it specifies. This value is used mainly for communication of changes between data sets by means of shared objects or from a server to a local data set. In both cases, the data set should not record the changes specified.
The following example calls the logChanges() method:
var deltapkt:DeltaPacket = _parent.myDataSet.deltaPacket;
if(deltapkt.logChanges()) {
trace("*** We need to log changes. ***");
}
else {
trace("*** We do not need to log changes");
}
|
|
|
|