On Apr 4, 2005 8:48 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

> Sorry i'm using copy and paste but flex throws this
> <mx:Label styleName="price"
> text="Totale:€{price.format(shoppingCart.total)}"/>

Use the character code directly.

  <mx:Label text="&#8364;" />

If the font supports that character, it'll get displayed.

"&euro;" is not reliable even in browsers.

And if you insert the character directly, make sure you save the file
as utf-8.  The encoding you should be saving your MXML files in is
specified at the top of your MXML document:

  <?xml version="1.0" encoding="utf-8"?>

Manish


 
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