You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "Mark Kessler (JIRA)" <ji...@apache.org> on 2013/04/17 03:16:14 UTC

[jira] [Updated] (FLEX-17869) Setting useHandCursor property to false on LinkBar control does nothin. nada. zero.

     [ https://issues.apache.org/jira/browse/FLEX-17869?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mark Kessler updated FLEX-17869:
--------------------------------

    Labels: easyfix  (was: )
    
> Setting useHandCursor property to false on LinkBar control does nothin. nada. zero.
> -----------------------------------------------------------------------------------
>
>                 Key: FLEX-17869
>                 URL: https://issues.apache.org/jira/browse/FLEX-17869
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: mx: LinkBar
>    Affects Versions: Adobe Flex SDK Previous
>         Environment: Affected OS(s): All OS Platforms
> Language Found: English
>            Reporter: Adobe JIRA
>            Priority: Minor
>              Labels: easyfix
>
>       Steps to reproduce:
> 1. Compile and run attached MXML file
> 2. Roll over the LinkBar control.
>  
>  Actual Results:
> The hand cursor still appears
>  
>  
>  Expected Results:
>  No hand cursor
>  
>  Workaround (if any):
> Loop over the LinkBar children and set useHandCursor to false on each child.
> <?xml version="1.0" encoding="utf-8"?>
> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
>     <mx:Script>
>         <![CDATA[
>             private function init():void {
>                 var idx:uint;
>                 var len:uint = linkBar.numChildren;
>                 for (idx=0; idx<len; idx++) {
>                     Object(linkBar.getChildAt(idx)).useHandCursor = false;
>                 }
>             }
>         ]]
>       >
>     </mx:Script>
>     <mx:LinkBar id="linkBar"
>             dataProvider="[The,quick,brown,fox]"
>             creationComplete="init();" />
> 	
> </mx:Application>
>     

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira