![]() |
The Java Developers Almanac 1.4Order this book from Amazon. |
e847. Making Tool Tips Remain VisibleBy default, a tool tip stays visible for 4 seconds. This example demonstrates how to keep the tool tip showing as long as the cursor is in the component.// Get current delay int dismissDelay = ToolTipManager.sharedInstance().getDismissDelay(); // Keep the tool tip showing dismissDelay = Integer.MAX_VALUE; ToolTipManager.sharedInstance().setDismissDelay(dismissDelay);
e844. Setting the Location of a Tool Tip e845. Enabling and Disabling Tool Tips e846. Making Tool Tips Appear Immediately e848. Showing Multiple Lines in a Tool Tip e849. Showing an Image in a Tool Tip © 2002 Addison-Wesley. |