<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/12/31/changing-the-close-button-skin-on-a-flex-titlewindow-container/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
		xmlns:local="*"
		layout="vertical"
		verticalAlign="middle"
		backgroundColor="white">

	<mx:Style>
		TitleWindow {
			closeButtonSkin: Embed(skinClass="BulletSkins");
            /* Set values from defaults.css to null. */
            closeButtonDisabledSkin: ClassReference(null);
            closeButtonDownSkin: ClassReference(null);
            closeButtonOverSkin: ClassReference(null);
            closeButtonUpSkin: ClassReference(null);
		}
	</mx:Style>

	<mx:TitleWindow id="titleWindow"
			title="TitleWindow"
			status="status message"
			showCloseButton="true"
			width="100%"
			height="100%" />

</mx:Application>

