http://www.unicode.org/charts/PDF/U2000.pdf

page 3, under "Dashes"

regards,
Muzak

----- Original Message ----- 
From: "Andres Ardila" <[EMAIL PROTECTED]>
To: <flashcoders@chattyfig.figleaf.com>
Sent: Thursday, August 23, 2007 10:44 PM
Subject: RE: [Flashcoders] long dash


Hi Natalia

First check that the font that you are using for the textfield actually
have the mdash character, use the character map in windows  (the mdash
is html entity &#8212; or symbol - or Unicode \u2014 )

If the character is there, then use

c="a &#8212; b";
txt.html=true;
txt.htmlText=c;

or

c="a - b";
txt.html=true;
txt.htmlText=c;

or

c="a \u2014 b";
txt.html=true;
txt.htmlText=c;

hope it helps, let me know if not

thanks
Andres


_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to