1. Hi, I'm familiar with creating buttons using xml, but the one thing i cannot find is how to have a tooltip appear on the button, although I can do this easily in lua as:

     MyButtonName.tooltipText="The text to appear as a tooltip"
    

    The text message will then appear as a tooltip whenever the mouse hovers over the button, but I would rather set this in the xml code rather than having to write some lua just for this one thing.

  2. You may be able to set it as an attribute, or in an <OnLoad> script.

  3. Thanks for the pointers, I managed to get it working with :

     <Scripts>
         <OnLoad>MyButtonName.tooltipText="My Tooltip Text"</OnLoad>
     </Scripts>