<?xml version="1.0" encoding="utf-8"?>
<mx:Application name="HDividedBox_horizontalDividerCursor_test"
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:Style>
HDividedBox {
horizontalDividerCursor: Embed("assets/arrow_refresh.png");
}
</mx:Style>
<mx:HDividedBox id="hDividedBox"
width="100%"
height="100%">
<mx:HBox backgroundColor="haloGreen"
width="100%"
height="100%">
</mx:HBox>
<mx:HBox backgroundColor="haloBlue"
width="100%"
height="100%">
</mx:HBox>
</mx:HDividedBox>
</mx:Application>