User Guide

XMLConnector.ignoreWhite 1493
XMLConnector.direction
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
componentInstance.direction
Description
Property; indicates whether data is being sent, received, or both. The values are the following:
send XML data for the params property is sent by HTTP POST method to the URL for
the XML document. Any data that is returned is ignored. The
results property is not set
to anything, and there is no
result event.
receive No params data is sent to the URL. The URL for the XML document is
accessed through HTTP
GET, and valid XML data is expected from the URL.
send/receive The params data is sent to the URL, and valid XML data is expected
from the URL.
Example
The following example sets the direction to receive for the document mysettings.xml:
myXMLConnector.direction = "receive";
myXMLConnector.URL = "mysettings.xml";
myXMLConnector.trigger();
XMLConnector.ignoreWhite
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
NOTE
The params and results properties and the result event are inherited from the RPC
component API.