Hello Sergey,

SK> I want to disable particular LinkBar item and make mouse pointer
SK> looking like arrow, not hand, while over it. How to do that?

1st) every time study source file before asking :)
  In this case, learning 'createNavItem' method from mx.controls.LinkBar" class
helps.

2nd) use <mx:HBox>
        <mx:LinkButton label="link1"/>
        <mx:LinkButton label="link2"/>
        <mx:LinkButton label="link3"/>
    </mx:HBox> insted of LinkBar

3d) create your own container for LinkButtons

4th) if you still want to use <mx:LinkBar>
---------------------------------------------
var linkButton : LinkButton  = LinkButton(lb.getChildAt(0));
linkButton.enabled = false;
linkButton.useHandCursor = false;
linkButton.mouseChildren = false;
---------------------------------------------



-- 
Best regards,
 Andriy                            mailto:[EMAIL PROTECTED]
-- 
Нелимитированный трафик в хостинг-пакетах! http://mirohost.net/


    


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/flexcoders/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to