user controls - How do you show the flex handCursor in firefox 4? -
hey guys, i'm having problem handcursor component in flex , firefox 4.
i've followed code here create handcursor, won't render hand on either demo or flex docs. has found way show handcursor in ff4? if not, what's best way handle creating similar paradigm?
edit: here's code used on both demo site above, , in test case i've drawn locally. works in ff4.
<?xml version="1.0" encoding="utf-8"?> <mx:application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalalign="middle" backgroundcolor="white"> <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>
not sure why not working in ff4 , didnt checked it, try add attribute mousechildren in image
mousechildren="true"
hopes work
Comments
Post a Comment