<?xml version="1.0" encoding="utf-8"?> <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="800" height="600" creationComplete="doInit()"> <mx:Script> <![CDATA[ public var myPod:Object; public function doInit():void { doResize(); } public function doResize():void { this.width = this.parent.width; this.height = this.parent.height; } ]]> </mx:Script> <mx:Image x="0" y="0" width="100%" height="100%" scaleContent="true" maintainAspectRatio="false" source="@Embed('ubix splash.jpg')" /> </mx:Module>