<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/11/18/displaying-a-hand-cursor-when-mousing-over-a-flex-control/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white" viewSourceURL="srcview/index.html">

    <mx:ApplicationControlBar dock="true">
        <mx:Form styleName="plain">
            <mx:FormItem label="useHandCursor:">
                <mx:CheckBox id="checkBox1" selected="true" />
            </mx:FormItem>
            <mx:FormItem label="buttonMode:">
                <mx:CheckBox id="checkBox2" selected="true" />
            </mx:FormItem>
        </mx:Form>
    </mx:ApplicationControlBar>

    <mx:Image id="img"
            source="http://www.helpexamples.com/flash/images/image1.jpg"
            useHandCursor="{checkBox1.selected}"
            buttonMode="{checkBox2.selected}" />

</mx:Application>

