Hi.
If I would like to have a big custom-styled modal help box/screen when I hover over a button without clicking (like the tooltip in styling), how would I do that?
I can catch the onmousemove event over a button with a ogscript attribute, but how would I catch the mouse off event so the modal would hide when hovering off the button?
In this example I use a centered tab to overlay the GUI (with a blank tab when nothing is showed). Is this possible at all?
<button buttontype="push" height="100" id="modaltestbutton" left="10" name="modaltestbutton" top="10" width="100">
<task handles="onmousemove" tasktype="ogscript">ogscript.reveal("TabHelpModal" );</task>
<task handles="onmouseoff???" tasktype="ogscript">ogscript.reveal("TabEmpty");</task>
<task handles="onclick" tasktype="ogscript">theButtonActionScript();</ogscript>
</button>
#DashBoard