Createpanel() pop-up title

BlitzMax Forums/MaxGUI Module/Createpanel() pop-up title

Richard Betson(Posted 2011) [#1]
I was wondering if there is is a way to get a info pop-up (not sure what to call it) when hovering the cursor over a panel.The "Title$" var does not seem to produce one. I just wonder if MaxGUI would do this.

Thanks
- Rich -


Zeke(Posted 2011) [#2]
SetGadgetToolTip()


Kryzon(Posted 2011) [#3]
Hi, that's a tooltip you just described.

You set a gadget's tooltip with SetGadgetToolTip().
You retrieve a gadget's current tooltip with GadgetToolTip().

Not all gadgets accept tooltips, but I think your panel does. The "Title$" var for when creating panels is only active when you create a PANEL_GROUP one, such as this here.


Richard Betson(Posted 2011) [#4]
Thanks,

I had my head ducked down coding math and physics for six months and could not recall what to do. :)

- Rich -