I have been working on an HTML formatted chat system, and have run into some problems...

I want to make it so that the chat system has moderators, (me to start with) and i want the moderator status to be displayed by showing a golden crown before the moderator user name.

I figured that this would be easy, using an HTML text element. Before the username, i would have the flash file put...

<img src='chat_crown_gold.gif'>
that should load an image into the HTML element and everything would work great. Unfortunately, dynamically changing the text element to include an image isn't working. It only works when you edit the html object itself, and don't dynamically change it, which isnt going to work.

the image shows up when i create a new HTML object, and make its initial text <img src='chat_crown_gold.gif'>, but not if i use a script to set its text to that... is there some way to make this work?