<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/10/09/setting-the-horizontal-divider-cursor-on-an-hdividedbox-container-in-flex/ -->
<mx:Application name="HDividedBox_horizontalDividerCursor_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 hDividedBox_init():void {
                hDividedBox.setStyle("horizontalDividerCursor", ArrowRefreshIcon);
            }
        ]]>
    </mx:Script>

    <mx:HDividedBox id="hDividedBox"
            width="100%"
            height="100%"
            initialize="hDividedBox_init();">
        <mx:HBox backgroundColor="haloGreen"
                width="100%"
                height="100%">
        </mx:HBox>
        <mx:HBox backgroundColor="haloBlue"
                width="100%"
                height="100%">
        </mx:HBox>
    </mx:HDividedBox>
    
</mx:Application>