User Guide

1494 XMLConnector component (Flash Professional only)
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.multipleSimultaneousAll
owed
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
componentInstance.multipleSimultaneousAllowed
Description
Property; indicates whether multiple calls can take place at the same time. If this property is
false, the XMLConnector.trigger() method performs a call if another call is already in
progress. A
status event is emitted, with the code CallAlreadyInProgress. If this property
is
true, the call takes place.
When multiple calls are simultaneously in progress, there is no guarantee that they will be
completed in the order in which they were triggered. Also, the browser and/or operating
system may place limits on the number of simultaneous network operations. The most likely
limit you may encounter is the browser enforcing a maximum number of URLs that can be
downloaded simultaneously. This is something that is often configurable in a browser.
However, even in this case, the browser should queue streams, and this should not interfere
with the expected behavior of the Flash application.