Hi, I've got dynamically created radio buttons that each need to display a tooltip when the user hovers over them. So for each radio button, I apply an event listner:
radioBtn.addEventListner(MouseEvent.ROLL_OVER,handleLabelRoll); ...then in the handleLabelRoll function, I create the tool tip via: customLabelTip = ToolTipManager.createToolTip(s,newX,newY) as ToolTip; ...my problem is that when creating toolTips in this manner, they don't observe the ToolTipManager.showDelay value I specify...rather they display immediately on hover. Can I delay the firing of the createToolTip method or is there another angle I can take? I need to delay the display by about 1 second. Thanks.

