Disable button tooltip in AS3
I want 开发者_JS百科to disable the tooltip on certain buttons.
The tooltip manager seems to be an all or nothing solution. Is it possible to disable the tooltip for just one or two buttons?
You can disable the tooltip on a button (and any other UIComponent) by setting its "toolTip" property to null
myButton.toolTip = null;
精彩评论