public function createToolTip(event:ListEvent):void{
            var item:Object=event.itemRenderer as Object;
            var frmName:Object=item.data.label;
            event.target.toolTip=null;
            event.target.toolTip=frmName;
        }
        public function removeToolTip(event:ListEvent):void{
            if(event.target.toolTip!=null){
                event.target.toolTip=null;
            }
        }

Now call this two function from the tree's itemRollOver and itemRollOut
Event.

itemRollOver="createToolTip(event)" itemRollOut="removeToolTip(event)"

[?]

On Tue, May 22, 2012 at 2:42 PM, anil varaha <[email protected]> wrote:

> Hi all.
>
> Can any help me how to position the tool tip that is shown in the tree
> view.
>
> Thanks in advance.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Flex India Community" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/flex_india/-/-S4pz_oFBs0J.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/flex_india?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.

<<347.png>>

Reply via email to