<?xml version="1.0" encoding="utf-8"?>
<mx:Application name="VDividedBox_verticalDividerCursor_test"
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:Script>
<![CDATA[
[Embed("assets/arrow_refresh.png")]
private const ArrowRefreshIcon:Class;
private function vDividedBox_init():void {
vDividedBox.setStyle("verticalDividerCursor", ArrowRefreshIcon);
}
]]>
</mx:Script>
<mx:VDividedBox id="vDividedBox"
width="100%"
height="100%"
initialize="vDividedBox_init();">
<mx:HBox backgroundColor="haloGreen"
width="100%"
height="100%">
</mx:HBox>
<mx:HBox backgroundColor="haloBlue"
width="100%"
height="100%">
</mx:HBox>
</mx:VDividedBox>
</mx:Application>