Hi Brian, if the UI for your script has a little space in the upper right corner of its command options UI, you could make a help button like this:
code:
<div style="position:absolute; right:0; top:0;">
<moi:LabelButton onclick="moi.ui.alert('Help text here...');"><img src="moi://ui/icons/HelpIcon.png" style="width:2em;"/></moi:LabelButton>
</div>
That will look like this:
But it won't make its own space there, it will be an overlay on top of other UI if there is something there.
You could put the button on its own line by removing the style="position:absolute; right:0; top:0;" from the above.
- Michael
|