User Guide
XMLConnector component (Flash Professional only) 897
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.
Note: The params and results properties and the result event are inherited from the RPC
component API.
• 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.
Usage
componentInstance.ignoreWhite
Description
Property; a Boolean value. When this parameter is set to true, the text nodes that contain only
white space are discarded during the parsing process. Text nodes with leading or trailing white
space are unaffected. The default setting is
false.
Example
The following code sets the ignoreWhite property to true:
myXMLConnector.ignoreWhite = true;
XMLConnector.multipleSimultaneousAllowed
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX Professional 2004.