Recipe 8.11 Condensing Whitespace

8.11.1 Problem

You want to condense whitespace in an HTML text field display.

8.11.2 Solution

Set the object's condenseWhite property to true.

8.11.3 Discussion

When you use HTML in a text field, the optional condenseWhite setting condenses whitespace, as is done in most HTML browsers. For example, the following text would be rendered in a web browser with only a single space between "hello" and "friend" in spite of the fact that the original source has multiple spaces between the two words:

hello          friend

In ActionScript text fields, however, all of the spaces are displayed unless you set the condenseWhite property to true.

myTextField.html = true; myTextField.condenseWhite = true; myTextField.htmlText = "hello            friend";   // Displays: "hello friend"

The condenseWhite property works only when the html property is true.

8.11.4 See Also

Recipe 8.10 and the XML.ignoreWhite property



ActionScript Cookbook
ActionScript 3.0 Cookbook: Solutions for Flash Platform and Flex Application Developers
ISBN: 0596526954
EAN: 2147483647
Year: 2005
Pages: 425

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net