RE: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Bruno Mosconi
9 de 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:

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.."; textHtml += "sfvdfbybfbfb"; textHtml += "test line.."; t

RE: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Bruno Mosconi
l Stuhr Sent: quarta-feira, 9 de novembro de 2005 18:21 To: Flashcoders mailing list Subject: Re: [Flashcoders] TextArea BUG!! HELP 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:

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

2005-11-09 Thread Bruno Mosconi
ue: "Button"! Take a look: http://www.ultrafactor.com.br/flash_bug/Button_in_TextArea_test.fla http://www.ultrafactor.com.br/flash_bug/Button_in_TextArea_test.swf -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: quarta-feira,

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, 2

RE: [Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Bruno Mosconi
nks, Bruno 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

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 at the very end of html insi

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 &g

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 libr

[Flashcoders] TextArea BUG!! HELP

2005-11-09 Thread Bruno Mosconi
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 library. Put TextArea at Stage and name it as "txtDescription". Next step, write down some code: [CODE] txtDesc