> That makes sense but its still strange that when I created an XML var
> in side application, it worked:
>
> var localXML:XML =
> <character>
> <data>\u00A9</data>
> <label>Inverted Exclamation Mark</label>
> </character>;
>
>
> I was able to see the copyright symbol as HTML on my label.   What
> threw me was that I couldn't do this from the XML.
>
    That's because the \u escape sequence is specific to ActionScript. Those 
sequences are replaced with the actual unicode characters (or some runtime 
sequence) and are not evaluated by the player.

    Use the HTML character codes instead: &#XXXX;

ryanm 



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to