If the font is Verdana, then it doesn't make sense to embed as Verdana exists on most operating systems... Certainly 99.9% (not checked, but I doubt exagerated) of the market!!!! Verdana is more ubiquitous than Flash itself ;-)
Lee -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alfredo Laguia Sent: 29 March 2006 15:30 To: Flashcoders mailing list Subject: Re: [Flashcoders] "+" simbol issue help first: Yes, it is verdana type and i've embedded the font as always, as the rest of the symbology well at least, with the encode, as a %2B. i can see the symbol, and i can keep working on the problem is, i need to change my asps to transform every "+" symbol with %2B.... thx a lot ----- Original Message ----- From: "Ian Thomas" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" <[email protected]> Sent: Wednesday, March 29, 2006 4:05 PM Subject: Re: [Flashcoders] "+" simbol issue help > My guess (and it is only a guess) is that Flash is treating the > contents of LoadVars like a url-encoded string. e.g. > &thing1=Something+something+else&thing2=Another+thing > > Which would mean that it probably replaces your '+' symbol with a space. > > I'd try urlencoding your vars before you output them (in your ASP file > - I'm not sure what the urlencode() function is in ASP but I'm sure > there is one). That way, the characters should get through okay. > > For example: > &thing1=A bucket of frogs+toads > > would become: > &thing1=A+bucket+of+frogs%2Btoads > > See? It's encoded the + symbol as %2B. > > This will also take care of any '&' or '=' signs that might cause you > problems. > > Hope that's helpful, > Ian > > On 3/29/06, Alfredo Laguia <[EMAIL PROTECTED]> wrote: >> yes i added the symbol in the list >> and i did everything that i do allways.... >> >> the code is simple: >> ********************************************* >> misVars = new LoadVars() >> var cantidad:Number >> misVars.onLoad = function(success){ >> if(success){ >> //trace(misVars) >> cantidad = misVars.cant >> montoDatos() >> trace(misVars["titulo"+3]) >> } >> else{ >> trace("error al cargar los datos") >> } >> } >> >> >> misVars.load("http://www.inaltia.es/demo/loadInfoNoticias.asp", GET) >> >> >> >> var posY = 60 >> montoDatos = function(){ >> for(var i= 0; i<cantidad; i++){ >> container = menu.grupoNOTICIAS.NOTICIASMC >> container.attachMovie("moduloNOTICIA", "consolaNoticias"+i, 100+i) >> container["consolaNoticias"+i]._y = posY >> container["consolaNoticias"+i].fecha_txt.text = misVars["fecha"+i] >> container["consolaNoticias"+i].titulo_txt.text = misVars["titulo"+i] >> container["consolaNoticias"+i].contenido = misVars["contenido"+i] >> container["consolaNoticias"+i].info_btn.onPress = function(){ >> noticias._visible = 100; >> noticias.noticiasEXTENDIDAS.noticias_txt = this._parent.contenido >> >> } >> posY = posY +60 >> >> >> >> } >> >> >> } >> >> **************************************************************** >> >> >> ----- Original Message ----- >> From: "Ian Thomas" <[EMAIL PROTECTED]> >> To: "Flashcoders mailing list" <[email protected]> >> Sent: Wednesday, March 29, 2006 3:52 PM >> Subject: Re: [Flashcoders] "+" simbol issue help >> >> >> > Are you using an embedded font? >> > >> > If so, have you remembered to add the + symbol to the list of embedded >> > characters? >> > >> > HTH, >> > Ian >> > >> > On 3/29/06, Alfredo Laguia <[EMAIL PROTECTED]> wrote: >> > >> >> hi there >> >> what can i do to show "+" symbol in a dynamic textfield?? >> >> >> >> i take the data from an asp and calling the asp throw the >> >> explorer >> >> i can see the content data without issue. >> >> >> >> >> >> thx for help! >> > _______________________________________________ >> > [email protected] >> > 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 >> >> _______________________________________________ >> [email protected] >> 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 >> > _______________________________________________ > [email protected] > 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 _______________________________________________ [email protected] 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 _______________________________________________ [email protected] 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

