The following example shows how you can set the margins on a Flex Gumbo FxTextArea control by setting the marginLeft, marginRight, marginTop, and marginBottom styles.
Full code after the jump.
To use the following code, you must have Flash Player 10 and a Flex Gumbo SDK installed in your Flex Builder 3. For more information on downloading and installing the Gumbo SDK into Flex Builder 3, see “Using the beta Gumbo SDK in Flex Builder 3″.
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2009/01/19/setting-margins-on-a-fxtextarea-control-in-flex-gumbo/ -->
<Application name="FxTextArea_margin_test"
xmlns="http://ns.adobe.com/mxml/2009"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<ApplicationControlBar dock="true">
<Form styleName="plain">
<FormItem label="marginLeft:">
<HSlider id="leftSlider"
minimum="0"
maximum="40"
snapInterval="1"
tickInterval="2"
liveDragging="true" />
</FormItem>
<FormItem label="marginRight:">
<HSlider id="rightSlider"
minimum="0"
maximum="40"
snapInterval="1"
tickInterval="2"
liveDragging="true" />
</FormItem>
<FormItem label="marginTop:">
<HSlider id="topSlider"
minimum="0"
maximum="40"
snapInterval="1"
tickInterval="2"
liveDragging="true" />
</FormItem>
<FormItem label="marginBottom:">
<HSlider id="bottomSlider"
minimum="0"
maximum="40"
snapInterval="1"
tickInterval="2"
liveDragging="true" />
</FormItem>
</Form>
</ApplicationControlBar>
<FxTextArea id="textArea"
textAlign="justify"
marginLeft="{leftSlider.value}"
marginRight="{rightSlider.value}"
marginTop="{topSlider.value}"
marginBottom="{bottomSlider.value}"
width="100%"
height="100%">
<text><String source="data/lorem.txt" /></text>
</FxTextArea>
</Application>
This entry is based on a beta version of the Flex Gumbo SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex Gumbo SDK.

{ 1 comment… read it below or add one }
Why FxTextArea still got the annoying Fx prefix ?