ActionScript 2.0 Components Language Reference |
|
|
|
| XMLConnector component > XMLConnector.results | |||
Flash Player 6 (6.0.79.0).
Flash MX Professional 2004.
componentInstance.results
Property; identifies data that was received from the server as a result of a trigger() operation. Each RPC component defines how this data is fetched, and what the valid types are. This data appears when the RPC operation has successfully completed, as signaled by the result event. It is available until the component is unloaded, or until the next RPC operation.
It is possible for the returned data to be very large. You can manage this in two ways:
null to this property at any time. The following example traces the results property for myXMLConnector:
trace(myXMLConnector.results);
|
|
|
|