views:

426

answers:

1

I want 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?

+2  A: 

You can disable the tooltip on a button (and any other UIComponent) by setting its "toolTip" property to null

myButton.toolTip = null;
Christophe Herreman