<?xml version="1.0" encoding="utf-8"?> <!-- http://blog.flexexamples.com/2008/12/05/setting-the-break-opportunity-on-an-fxtextarea-control-in-flex-gumbo/ --> <Application name="FxTextArea_breakOpportunity_test" xmlns="http://ns.adobe.com/mxml/2009" layout="vertical" verticalAlign="middle" backgroundColor="white"> <Style> FxTextArea { breakOpportunity: "any"; } </Style> <FxTextArea id="textArea" width="400" height="300"> <content><String source="data/lorem.html" /></content> </FxTextArea> </Application>