Hi,

If you creating an action script project in Flash , along with adding
the import statement at the top , you also need to add the TextArea
control in the libray. This can be done by dragging and dropping the
TextArea control from the Component Panel to the Libray. This will
remove the error/

If you are creating a actionscript project inside Flex Builder , I
think you wont get the TextArea  class. But you can use the same
TextField for the purpose.

You can use the following Code Snippet

                        var text:TextField= new TextField();
                        text.height = 100;
                        text.width = 200;
                        text.text = " ... anything in TextArea... ";
                        text.multiline = true;
                        text.type = TextFieldType.INPUT ;
                        text.border = true;
                        text.background = true ;

Regards

Subeesh
http://subeesh.co.nr/

On Mon, Nov 3, 2008 at 3:33 PM, Carlosm <[EMAIL PROTECTED]> wrote:
>
> Hi Vinod,
>
> Thanks for your reply, the problem is that this code is a part of a
> big class ... but I have problems displaying only the textArea
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to