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.
views:
1281answers:
3
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
2009-06-25 17:34:19
+1
A:
You have to set the borderSkin to null
<mx:TextArea borderSkin={null} />
Joel Hooks
2009-06-25 19:33:40