Actually, "Basic Latin", "Punctuation" & "Latin I" will do.
Basic Latin already contains "Uppercase", "Lowercase" and "Numerals" (check
the Total Number of Glyphs)

No big deal, just a hint (less clicking)



On 6/25/07, Leandro Amano <[EMAIL PROTECTED]> wrote:

In the embedFonts, select: Uppercase, Lowercase, numerals, ponctuation and
Latin I.
In the xml, mark enconding as UTF-8: <?xml version="1.0"
encoding="utf-8"?>

best regards
Leandro Amano

On 6/25/07, Pedro Taranto <[EMAIL PROTECTED]> wrote:
>
> if you trace it, do you see the especials characters in the output
panel??
> if the problem is only in the text field you have to embed the font and
> the especials characters in the textfield?
> here is the list that I always use when i have to embed fonts:
> UPPERCASE
> LOWERCASE
> NUMERALS
> PUNCTUATION
> BASICLATIN
> include these characters:
> ºª¹²³£¢¬°°§ºçàáâãèéêìíîòóôõùúûüÀÁÇÂÃÈÉÊÌÍÎÒÓÔÕÙÚÛÜñÑ
>
> flash does not understand the html entities like &acetilde, because the
> '&' is used to separete variables
>
> hope it helps
>
> --Pedro Taranto
>
>
> Jesse Graupmann escreveu:
> > Using Macromedia Flash MX as a multilingual authoring tool
> > http://www.adobe.com/support/flash/languages/flashlocalization/
> >
> >
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of
Gustavo
> > Duenas
> > Sent: Monday, June 25, 2007 11:50 AM
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: Re: [Flashcoders] loading xml into flash in
spanish(desperate)
> >
> > I'm still stuck on this... would somebody help me, I don't know why
> > this flash apparently doesn't want to read the xml from the
attributes,
> > I changed the xml into utf-8 and nothing, I also set up _sans in the
> > css and nothing, does anyone knows how can I finally convince this
> > flash to show my spanish characters as ñ and the é(tildes)...thanks
> > Everyhting is ok, but the spanish characters. this is quite
> > disturbing because I speak spanish.
> >
> >
> > Gustavo
> > this is my code:
> >
> >
> > stop();
> >
> >
> >
> >
> > menus = new XML();
> >
> > menus.ignoreWhite = true;
> >
> > menus.onLoad = function(success)
> > {
> >
> >       var target = _root.screenTxt.myText_txt1;
> >       var holder = _root.menu;
> >
> >       var titleMenus = this.firstChild.childNodes.length;
> >       var menuContent = this.firstChild;
> >
> >       for (var i = 0; i < titleMenus; ++i )
> >       {
> >
> >               var depth = holder.getNextHighestDepth();
> >               var btn = holder.attachMovie( "buttons", 'btn_' + i ,
> depth
> > );
> >
> >               btn._x = 0;
> >               btn._y = -10 * i * 4;
> >
> >               btn.data = {
> >                       text: menuContent.childNodes[i].attributes.text,
> >                       title: menuContent.childNodes
[i].attributes.title
> >               };
> >
> >
> >               btn.poa.text = btn.data.title;
> >               btn.onRelease = function(){
> >
> >                       target.html=true;
> >                       target.htmlText ="<title>"+
> > this.data.title+"</title>" +"<br>" +
> > "<text>"+this.data.text+"</text>";
> >
> >               }
> >
> >       }
> >
> > }
> >
> > menus.load("txt/poa.xml");
> >
> >
> > this is the xml
> >
> > _______________________________________________
> > 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
> >
> >
> _______________________________________________
> 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
>



--
--
Leandro Amano
Digital Bug
Chief Creative Officer
Adobe Certified Expert
Adobe Certified Instructor
Adobe User Group Leader
_______________________________________________
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

_______________________________________________
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