I have displayed a tooltip on managerContainer panel with the code:
var p:Point = new Point(m.x+managerContainer.x,m.y+managerContainer.y+m.height);
p = this.contentToGlobal(p);
var s:String =note;
var tip:ToolTip = ToolTipManager.createToolTip(s,
p.x , p.y
) as ToolTip;
But my panel is a draggable one. Now I want the tooltip to be dragged when the panel is dragged without destroying and creating the tooltip over and over again. How to do that, do you know?