The regular Office DialogLauncher has a Supertooltip that displays a picture (like the small picture version of the Font dialog box in the screenshot embedded in the XLSM attachment) when you hover

How do I make that happen? I was thinking of making a screen shot of some of my dialog launcher boxes, instead of just displaying some more SuperTip text.

This is my 2010 XML, and the getSupertip = "GetSupertip" will only display text. The 2007 XLM is similar


[VBA]
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="OnRibbonLoad" >
<ribbon>
<tabs>

<!-- Add Custom group to the Home tab in the ribbon -->

<tab id="CustomTab" label="My Tab">
<group id="SampleGroup" label="Sample Group">
<toggleButton id="ToggleButton1"
size="large"
label="Large Toggle Button"
getPressed="MyToggleMacro"
onAction="MyActionMacro"
screentip = "This is a Toggle Button"
supertip = "This is a normal type of screentip This is a normal type of screentip This is a normal type of screentip"
/>
<button id="Button1"
size="large"
label="Large Button"
onAction="MyButtonMacro"
screentip = "This is a normal Button"
supertip = "This is a normal type of screentip This is a normal type of screentip This is a normal type of screentip"
/>
<dialogBoxLauncher>
<button id="Launcher1"
getScreentip="GetScreentip"
getSupertip = "GetSupertip"
onAction="MyLauncherMacro" />
</dialogBoxLauncher>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
[/VBA]

Thanks


Paul