ActionScript 2.0 Components Language Reference |
|
|
|
| Delta interface > Delta.getMessage() | |||
Flash Player 7.
Flash MX Professional 2004.
delta.getMessage()
None.
A string; returns the message associated with delta.
Method; returns the associated message for this delta. Typically this message is only populated if the delta packet has been returned from a server in response to attempted updates. For more information, see RDBMSResolver component.
The following example calls the getMessage() method:
//...
var dpi:Iterator = dp.getIterator();
var d:Delta;
while(dpi.hasNext()) {
d= dpi.next();
trace(d.getMessage());
}
//...
|
|
|
|