On 9/4/07, Baljeet singh <[EMAIL PROTECTED]> wrote: > Thanks for suggestion. I have already tried with dataTipField > property as <mx:Tree dataTipField ="@name"/>. but this didn't show any > toolTip for tree nodes.
Baljeet,
I used the following arrangement to display tooltips:
<mx:Tree ...dataTipFunction="getItemTip".../>
private function getItemTip(item:Object):String {
var node:XML = XML(item);
return [EMAIL PROTECTED];
}
Perhaps this will be of some help.
Adam

