Hi Albert,
Thanks for the info. My plugin uses java.awt.Button. I built it
originally using the Panel_Window example. Is it possible to use
JButtons in my panel without much effort? The differences between all
the Java interface components are extremely arcane to someone like me
who is not a Java expert . Not something that I really want to spend my
time understanding either. Of course it is unfair to expect others to
do the work of understanding this and I appreciate the efforts by
experts like you to help.
Jon
Albert Cardona wrote:
> For JButton:
>
>
http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JComponent.html#setToolTipText(java.lang.String)
>
>
> Notice that it's the abstract class JComponent the one implementing
> the tool tips, so you can add them to any of its subclasses (including
> JButton).
>
> The "tool tip" in ImageJ shows in the status bar because neither are
> the Tools in a button (but as a painted area in a Panel), nor do
> java.awt.Button have tooltips (that I know of).
>
> Remember google is much faster than the mailing list.
>
> Albert
>