[Flashcoders] Textarea

2008-09-26 Thread Lehr, Theodore M (N-SGIS)
I have a textarea that I am filling with an image followed by text - I want the text to appear under the image but I can not figure out how to get a hard return in after the image - I could do a bunch of br/'s but it will be dynamic so there is no telling how big the image will be - any ideas?

Re: [Flashcoders] Textarea

2008-09-26 Thread David Rogers
Two suggestions: 1) It's a bit extreme but in the end I think it would work. Use the BitmapData Class to collect the image data, then use it to add additional transparent pixels to the left or right making the total width of the image the same width of your text field. You then must

RE: [Flashcoders] Textarea

2008-09-26 Thread Lehr, Theodore M (N-SGIS)
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Rogers Sent: Friday, September 26, 2008 10:27 AM To: Flash Coders List Subject: Re: [Flashcoders] Textarea Two suggestions: 1) It's a bit extreme but in the end I think it would work. Use the BitmapData

[Flashcoders] Textarea in MC issue

2008-09-26 Thread Lehr, Theodore M (N-SGIS)
I have a textarea mc that is getting put into another MC The problem I am having is when someone clicks on it - a green outline appears around the textarea - and when you scroll - all of the text becomes selected and the scroll OCCASSIONALLY gets stuck on the bottom 0 any thoughts?

Re: [Flashcoders] Textarea

2008-09-26 Thread sebastian
, September 26, 2008 10:27 AM To: Flash Coders List Subject: Re: [Flashcoders] Textarea Two suggestions: 1) It's a bit extreme but in the end I think it would work. Use the BitmapData Class to collect the image data, then use it to add additional transparent pixels to the left or right making

[Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
I have a TexrArea I am creating via: mx.controls.TextArea I am trying to find a way to make it so the text is not selectable - when I select some text I get a green border around the textarea - I would like to get that to not show up and I am thinking that if they can not select the text

RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Merrill, Jason
Have you tried selectable = false? Jason Merrill Bank of America Enterprise Technology Global Risk LLD Instructional Technology Media Join the Bank of America Flash Platform Developer Community Are you a Bank of America associate interested in innovative learning ideas and technologies?

RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Yeah - didn't seem to affect anything -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Tuesday, September 09, 2008 12:06 PM To: Flash Coders List Subject: RE: [Flashcoders] TextArea class properties Have you tried selectable = false

Re: [Flashcoders] TextArea class properties

2008-09-09 Thread eric e. dolecki
Of Merrill, Jason Sent: Tuesday, September 09, 2008 12:06 PM To: Flash Coders List Subject: RE: [Flashcoders] TextArea class properties Have you tried selectable = false? Jason Merrill Bank of America Enterprise Technology Global Risk LLD Instructional Technology Media Join the Bank

Re: [Flashcoders] TextArea class properties

2008-09-09 Thread Jon Bradley
On Sep 9, 2008, at 12:05 PM, Merrill, Jason wrote: Have you tried selectable = false? I think it might be: textAreaInstance.enabled = false; Getting rid of the focus rect is generally a separate issue though, but when the component 'enabled' property is set to false, the focus rect

RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
To: Flash Coders List Subject: Re: [Flashcoders] TextArea class properties On Sep 9, 2008, at 12:05 PM, Merrill, Jason wrote: Have you tried selectable = false? I think it might be: textAreaInstance.enabled = false; Getting rid of the focus rect is generally a separate issue though

Re: [Flashcoders] TextArea class properties

2008-09-09 Thread Ian Thomas
color when it is disabled... is there a style that is applicable? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bradley Sent: Tuesday, September 09, 2008 12:35 PM To: Flash Coders List Subject: Re: [Flashcoders] TextArea class properties

Re: [Flashcoders] TextArea class properties

2008-09-09 Thread eric e. dolecki
... is there a style that is applicable? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bradley Sent: Tuesday, September 09, 2008 12:35 PM To: Flash Coders List Subject: Re: [Flashcoders] TextArea class properties On Sep 9, 2008, at 12:05 PM, Merrill

RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Beauty - thanks all -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian Thomas Sent: Tuesday, September 09, 2008 12:48 PM To: Flash Coders List Subject: Re: [Flashcoders] TextArea class properties Try the style 'disabledColor'. The docs are here: http

[Flashcoders] textarea and transparent background

2008-09-05 Thread Lehr, Theodore M (N-SGIS)
I am changing the background color of a textarea via: textArea.setStyle(backgroundColor,0xcc); What I am wondering is if I can make it transparent? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

RE: [Flashcoders] textarea and transparent background

2008-09-05 Thread Cor
Try textArea.setStyle(backgroundColor,0x00cc); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lehr, Theodore M (N-SGIS) Sent: vrijdag 5 september 2008 17:08 To: Flash Coders List Subject: [Flashcoders] textarea and transparent background I am

RE: [Flashcoders] textarea and transparent background

2008-09-05 Thread Lehr, Theodore M (N-SGIS)
Thanks for the suggestion, but no dice -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cor Sent: Friday, September 05, 2008 11:15 AM To: 'Flash Coders List' Subject: RE: [Flashcoders] textarea and transparent background Try textArea.setStyle

Re: [Flashcoders] textarea and transparent background

2008-09-05 Thread Glen Pike
Hi, I am thinking that if you don't set a style, your text area will be transparent. Although you might be able to specify none or transparent as a style - check the doc's for styling the component. Glen Lehr, Theodore M (N-SGIS) wrote: I am changing the background color of a

RE: [Flashcoders] textarea and transparent background

2008-09-05 Thread Lehr, Theodore M (N-SGIS)
: [Flashcoders] textarea and transparent background Hi, I am thinking that if you don't set a style, your text area will be transparent. Although you might be able to specify none or transparent as a style - check the doc's for styling the component. Glen Lehr, Theodore M (N-SGIS) wrote: I

RE: [Flashcoders] textarea and transparent background

2008-09-05 Thread Lehr, Theodore M (N-SGIS)
, 2008 11:35 AM To: Flash Coders List Subject: RE: [Flashcoders] textarea and transparent background Thanks- it seems to be white by default - I'll try your suggestions - I've been searching the docs and the web... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

[Flashcoders] textArea doesn't scroll far enough

2007-05-24 Thread Allandt Bik-Elliott (Receptacle)
gah - not my day today i've got my textArea loading up a bunch of text from a string, from an array loaded from an xml file (erk), but the scrollbars for the component don't scroll far enough (either the bar or the arrows) - i've dragged down the text with my cursor and the extra lines are

Re: [Flashcoders] textArea doesn't scroll far enough

2007-05-24 Thread Muzak
@chattyfig.figleaf.com Sent: Thursday, May 24, 2007 6:30 PM Subject: [Flashcoders] textArea doesn't scroll far enough gah - not my day today i've got my textArea loading up a bunch of text from a string, from an array loaded from an xml file (erk), but the scrollbars for the component don't

RE: [Flashcoders] textArea doesn't scroll far enough

2007-05-24 Thread David Ngo
to get it working right then and there so -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Allandt Bik-Elliott (Receptacle) Sent: Thursday, May 24, 2007 12:30 PM To: flashcoders Subject: [Flashcoders] textArea doesn't scroll far enough gah - not my day

Re: [Flashcoders] textArea doesn't scroll far enough

2007-05-24 Thread Allandt Bik-Elliott (Receptacle)
then and there so -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Allandt Bik-Elliott (Receptacle) Sent: Thursday, May 24, 2007 12:30 PM To: flashcoders Subject: [Flashcoders] textArea doesn't scroll far enough gah - not my day today i've got my

RE: [Flashcoders] textArea doesn't scroll far enough

2007-05-24 Thread Marc Hoffman
] On Behalf Of Allandt Bik-Elliott (Receptacle) Sent: Thursday, May 24, 2007 12:30 PM To: flashcoders Subject: [Flashcoders] textArea doesn't scroll far enough gah - not my day today i've got my textArea loading up a bunch of text from a string, from an array loaded from an xml file (erk

Re: [Flashcoders] textArea doesn't scroll far enough

2007-05-24 Thread nelson ramirez
PM To: flashcoders Subject: [Flashcoders] textArea doesn't scroll far enough gah - not my day today i've got my textArea loading up a bunch of text from a string, from an array loaded from an xml file (erk), but the scrollbars for the component don't scroll far enough (either the bar or the arrows

[Flashcoders] textarea component not scrollable.

2007-04-14 Thread Jonathan Berry
Hello all, Did a search on Google for this, but really didn't know what to search for. I have a series of textarea components that are dynamically generated through createClassObject as children of movieclips and at runtime they are not scrollable or selectable. Hope this is not too easy, but I

[Flashcoders] TextArea Component (Flash 8)

2006-12-15 Thread Millie Niss
I'm embarking on a project which will use text from a mySQL database and I will probably want to embed images and have links in the text. The obvious way to do this is to encode the text as HTML, but my previous experience (with Flash MX 2004 Pro) was that the TextArea component was very

RE: [Flashcoders] TextArea Component (Flash 8)

2006-12-15 Thread Merrill, Jason
Have they increased the puny amount of HTML that is allowed in Flash? Nope, unfortunately. I've been down the exact same road - what I have learned is using the TextFormat object, while not perfect, will save you a lot of headaches. Searching through strings - what a pain, and a major

[Flashcoders] TextArea: shutting off selection?

2006-12-13 Thread grimmwerks
Even though a TextArea is not editable, the user can still select it. Is there a simple 'off' feature I've missed? Danke -- ---[ http://www.grimmwerks.com ---[ [EMAIL PROTECTED] ---[ [EMAIL PROTECTED] ___ Flashcoders@chattyfig.figleaf.com

[Flashcoders] TEXTAREA COMPONENT PROBLEM - has a green keyline when selected :/

2006-09-27 Thread Matt Muller
Im loading some leagcy swfs - flash 7, into flash 8, there is a textarea component that only has this behaviour when its loaded through a movieclip. It has a green keyline when selected, When it loses focus it loses the keyline, Im trying stuff like import mx.styles.CSSStyleDeclaration;

RE: [Flashcoders] TEXTAREA COMPONENT PROBLEM - has a green keyline whenselected :/

2006-09-27 Thread Ryan Potter
Try this: this.myTextArea.drawFocus = null; this.myTextArea.focusTextField = null; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Muller Sent: Wednesday, September 27, 2006 9:22 AM To: Flashcoders mailing list Subject: [Flashcoders

Re: [Flashcoders] TEXTAREA COMPONENT PROBLEM - has a green keyline whenselected :/

2006-09-27 Thread Matt Muller
27, 2006 9:22 AM To: Flashcoders mailing list Subject: [Flashcoders] TEXTAREA COMPONENT PROBLEM - has a green keyline whenselected :/ Im loading some leagcy swfs - flash 7, into flash 8, there is a textarea component that only has this behaviour when its loaded through a movieclip. It has a green

[Flashcoders] TextArea and TextInput differences in creation, why?

2006-09-12 Thread Stephen Matthews
Hi, If I use this code below without having a TextArea TextInput component in my library the TextArea component creation fails. import mx.controls.TextArea; import mx.controls.TextInput; clip.createClassObject( TextInput, newname, depth ); clip.createClassObject( TextArea, newname2, depth2

RE: [Flashcoders] TextArea and TextInput differences in creation, why?

2006-09-12 Thread Robert Chyko
Gotta have the components in the library -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Matthews Sent: Tuesday, September 12, 2006 11:24 AM To: Flashcoders mailing list Subject: [Flashcoders] TextArea and TextInput differences in creation, why

Re: [Flashcoders] TextArea and TextInput differences in creation, why?

2006-09-12 Thread Stephen Matthews
, 2006 11:24 AM To: Flashcoders mailing list Subject: [Flashcoders] TextArea and TextInput differences in creation, why? Hi, If I use this code below without having a TextArea TextInput component in my library the TextArea component creation fails. import mx.controls.TextArea; import

RE: [Flashcoders] textArea background colour

2006-03-09 Thread Judah
Hi Simon, textinput.setStyle(backgroundColor, transparent); textinput.setStyle(borderStyle, none); Judah -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simon Lord Sent: Tuesday, March 07, 2006 6:03 PM To: Flashcoders mailing list Subject: [Flashcoders

Re: [Flashcoders] textArea background colour

2006-03-08 Thread Julius - XK
@chattyfig.figleaf.com Sent: Tuesday, March 07, 2006 7:03 PM Subject: [Flashcoders] textArea background colour How can I remove the border and background fill of a textArea component? ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

[Flashcoders] textArea background colour

2006-03-07 Thread Simon Lord
How can I remove the border and background fill of a textArea component? ___ 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

[Flashcoders] TextArea component Special Chars?

2006-02-17 Thread Aaron Smith
Has anyone had issues with flash remoting (amfph) and sending text from the textArea component. It seems there are some weird extra characters that are being added to the data thats sent. Then php is having issues parsing it. Specifically when I copy text into the textArea component then

[Flashcoders] TextArea - Impossible requests?

2005-11-15 Thread Miles Thompson
Dear All, I'm working on a daily news site - headlines display on left, and when one clicks on a given headline the story loads on the right. I'm using the UI TextArea component to display the story. All is well, but as usual, customer has tossed a couple of curves. 1. When there is only a

RE: [Flashcoders] TextArea - Impossible requests?

2005-11-15 Thread Chris Wilson
Of Miles Thompson Sent: Tuesday, November 15, 2005 9:56 AM To: Flashcoders mailing list Subject: [Flashcoders] TextArea - Impossible requests? Dear All, I'm working on a daily news site - headlines display on left, and when one clicks on a given headline the story loads on the right. I'm using the UI

Re: [Flashcoders] TextArea - Impossible requests?

2005-11-15 Thread Muzak
: [Flashcoders] TextArea - Impossible requests? For the first problem, how about adding a number of blank lines to the end of the news story so the total number of lines is a multiple of the TextArea's visible page size to allow a full scroll? -Chris -Original Message- From: [EMAIL

Re: [Flashcoders] TextArea - Impossible requests?

2005-11-15 Thread Miles Thompson
a normal TextField instead of a TextArea. regards, Muzak - Original Message - From: Chris Wilson [EMAIL PROTECTED] To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com Sent: Tuesday, November 15, 2005 4:09 PM Subject: RE: [Flashcoders] TextArea - Impossible requests

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