I've created a simple SharePoint ribbon tab with a button on it; the button XML looks like this:
<Button
Id="Ribbon.MyTab.MainGroup.HelloButton"
Command="MyTab.HelloCommand"
Description="Says Hello"
LabelText="Hello"
Image32by32="/_layouts/MyCustomSPTab/icon3232.png"
TemplateAlias="cust4" />
I know the compiler complains about deploying images to the sandbox.
Is it possible to add an image to a ribbon button in a sandboxed solution? And if so, how?