Do you feel it?

 From:  Michael Gibson
4363.194 In reply to 4363.188 
Hi Burr,

> Michael,
> This line seems to no longer present the image listed
> as the source in the plugin gallery..

It looks like your post there is getting kind of mangled by the forum because it will think that you're trying to use that HTML as part of your message.

Try putting any code like that inside of a <code> ... </code> block here in the forum - that will prevent the forum from trying to actually use the HTML for your message itself. Or maybe it's best to post what you've got as a file attachment that way I can look at it more directly.


Oh wait a second, I know what it is - at the moment JPG files won't work in an <img> tag like that, save it as a PNG file and then it will work. I can fix that up pretty easily for the next beta, I forgot about that part because I only use PNG myself.


> I made a couple changes to the line I had been inserting
> into the sidepane.htm, to have it match the others and it
> worked OK. Just removed a "style" and couple other little
> differences...

Yeah there are a few changes in how various controls are structured - for example a <moi:CommandButton> takes its image as an icon="" attribute instead of on the style. And actually <moi:CommandButton> is a template now - you can see the template that makes it up in the file CommandButton.htm . The part that says icon="..." goes into an <img> tag that's part of the button structure.

Things like icons are now drawn by more regular <img> tags now (sometimes in templates) - before they used to be drawn by custom painting code.

Basically instead of a control being painted by custom code, they're now assemblies of HTML with stuff like images and divs with gradient backgrounds and stuff like that. The main exception is the scene browser, it has some custom painting code in it.

- Michael