tags:

views:

1281

answers:

3

With the Flex 3 SDK you simply needed to set the borderThickness style to 0, or set borderStyle to none. With the Flex 4 SDK ad the Spark theme, this has no affect.

A: 

I haven't dabbled in Flash Builder 4 yet, but I know in Flex 3 you can modify things like this (when its not possible another way):

var tb:TextInput = new TextInput();
tb.getChildAt(0).setStyle(...);

Might want to give this a try, you just need to find the correct child element usually.

EDIT: Here's your answer

Chris Klepeis
+1  A: 

You have to set the borderSkin to null

<mx:TextArea borderSkin={null} />
Joel Hooks
+1  A: 

borderVisible="false"

bz