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