Flash CS3 Documentation |
|||
| ActionScript 2.0 Components Language Reference > DataSet component > DataSet.logChanges | |||
Flash Player 7.
Flash MX Professional 2004.
dataSetInstance.logChanges
Property; a Boolean value that specifies whether changes made to the data set, or to its items, should (true) or should not (false) be recorded in DataSet.deltaPacket.
When this property is set to true, operations performed at the collection level and item level are logged. Collection-level changes include the addition and removal of items from the collection. Item-level changes include property changes made to items and method calls made on items by means of the DataSet component.
The following example disables logging for the DataSet object named userData.
user_ds.logChanges = false;
Flash CS3