I believe your + is not showing b/c it is being interpreted as a mathematical operator and all content post the + sign as octal.
Try the "dynamic string"+"+"+"dynamic string" HTH Matthew -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alfredo Laguia Sent: Wednesday, March 29, 2006 8:58 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] "+" simbol issue help 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" <flashcoders@chattyfig.figleaf.com> 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! > _______________________________________________ > 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 _______________________________________________ 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