Also set following to zero
borderThicknessBottom
borderThicknessTop
borderThicknessLeft
borderThicknessRight
Refer http://livedocs.adobe.com/flex/2/langref/mx/containers/
Panel.html (TitleWindow extends Panel) for more details.
On May 23, 2007, at 2:05 PM, Lincoln Mitchell wrote:
How do you remove ALL the space around a TitleWindow main content
area?
This is how far I have got:
---
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow
xmlns:mx="http://www.adobe.com/2006/mxml" title="title"
backgroundColor="red"
headerHeight="0"
borderStyle="none" borderSides="" borderThickness="0"
dropShadowEnabled="false"
paddingLeft="0" paddingRight="0" paddingTop="0" paddingBottom="0"
>
<mx:VBox backgroundColor="yellow" width="100%" height="100%">
</mx:VBox>
</mx:TitleWindow>
---
Any help appreciated.
Linc