Re: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Andreas Rønning
txtDescription.text = textHtml; should be txtDescription.htmlText = textHtml; - Andreas Bruno Mosconi wrote: I'm preceding a simple task here, insert HTML content in a TextArea component including a simple Button component and a MC. First, I've imported TextArea and Button comps to my

RE: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Bruno Mosconi
de novembro de 2005 13:32 To: Flashcoders mailing list Subject: Re: [Flashcoders] TextArea BUG!! HELP txtDescription.text = textHtml; should be txtDescription.htmlText = textHtml; - Andreas Bruno Mosconi wrote: I'm preceding a simple task here, insert HTML content in a TextArea component

Re: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Michael Stuhr
Bruno Mosconi schrieb: Sadly TextArea Component does not have htmlText attribute, only text. If you try: txtDescription.htmlText = textHtml; TextArea will show blank. put the button inside another mc should give expected results. and btw: isn't there a bug with img/ at the very end of html

RE: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Bruno Mosconi
Mosconi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: quarta-feira, 9 de novembro de 2005 17:25 To: Flashcoders mailing list Subject: Re: [Flashcoders] TextArea BUG!! HELP Bruno Mosconi schrieb: Sadly TextArea Component does not have

Re: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Michael Stuhr
Bruno Mosconi schrieb: Ok, but how do I refer to button's instance to change dynamically its label? Btw, I've found a FIX at: http://flashant.org/index.php?m=200412#239 Looks like lots of people are addressing the same BUG unusual ways. this.createTextField(textField_txt, 10, 0, 0, 100,

RE: [Flashcoders] TextArea BUG!! HELP = Can't Change Button's Label

2005-11-09 Thread Bruno Mosconi
: [Flashcoders] TextArea BUG!! HELP Bruno Mosconi schrieb: Sadly TextArea Component does not have htmlText attribute, only text. If you try: txtDescription.htmlText = textHtml; TextArea will show blank. put the button inside another mc should give expected results. and btw: isn't

Re: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Michael Stuhr
Bruno Mosconi schrieb: Micha, thanks for the help Your MC trick worked fine, but button's label can't be changed at all! Take a look at this test code: txtDescription.html = true; textHtml += test line..BR/; textHtml += img src=\button_mc\ id=\button\sfvdfbybfbfbbr/;

RE: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Bruno Mosconi
novembro de 2005 18:31 To: Flashcoders mailing list Subject: Re: [Flashcoders] TextArea BUG!! HELP Bruno Mosconi schrieb: Micha, thanks for the help Your MC trick worked fine, but button's label can't be changed at all! Take a look at this test code: txtDescription.html = true