Is there a way to position a ToolTip in a certain spot on the stage (ie over the object that created the ToolTip)? On top of that is there is way to not make the ToolTip flash in and out once this is accomplished? The problem I am having is I have a button. When I roll over this button I want a ToolTip to open up. This tool tip will partially be on top of the button. If your cursor is on top of the ToolTip, it takes the focus off of the button and on to the ToolTip which is a rollOut of the button and it removes the ToolTip. But wait! The focus is back on the button so it opens the ToolTip again. So it makes a constant flashing in and out effect of the ToolTip. I am trying to extend the ToolTip class to make it show an image instead of text. I've found examples to do this but they all make the flashing effect. ToolTipManager.createToolTip(img, 600, 300); seems to do the trick but I can't figure out how to change 'img' from a TextField object to an Image object.
