ActionScript 3 :: Converting TextArea Into TextField Component

Sep 19, 2011

I've a TextArea component in my MovieClip. When I double click on it, I want to switch to TextField component, allowing me to change its content. When I click outside, I want to restart its original class (TextArea).

I'm doing this, but didn't work:
element.addEventListener(MouseEvent.DOUBLE_CLICK, changeName);
private function changeName(e:MouseEvent):void{
e.target.type = TextFieldType.INPUT;
}
Where element is a TextArea (classic and dynamic text).

This is how my MovieClip looks. "Name" is the TextArea that I want to allow user changes. I'm setting it like this:
Nombre de instancia = Instance name (empty)
Texto clasico (classic text)
Texto dinamico (dynamic text)

The MovieClip is controlling my by own base class (called 'ConfLayer'). Inside it I have this:
public function doStuff(e:MouseEvent):void{
// element = TextArea 'Name'
element.addEventListener(MouseEvent.DOUBLE_CLICK, changeName);
} private function changeName(e:MouseEvent):void {
var tarea:TextArea = e.target as TextArea;
var tf:TextField = tarea.TextField; // this line throwing error
tf.type = TextFieldType.INPUT;
}

Because AS3 gives me errors, I tried this:
private function changeName(e:MouseEvent):void {
e.target.TextField.type = TextFieldType.INPUT;
}
When I double-click on TextArea element, the previous string removes and I can't write nothing.

View 3 Replies


Similar Posts:


ActionScript 3.0 :: TextField And TextArea Component Are Very Limited In Displaying And Formatting HTML Pages

Mar 25, 2009

i'm working on a game project and i got some trouble with displaying stuff in the game Launcher. everything is in AS3. I'm actually looking to achieve almost the same results as the World of Warcraft launcher with a news section. the way i think to work it is that i create either a textArea component or a textfield and display html page in it. This html page could contain text, image and flash SWF.

but here's the problem, textField and textArea component are very limited in displaying and formating HTML pages. So i don't know if i should continue to search and try developping this way or find another way for displaying dynamic stuff that can be easily updated.

View 2 Replies

Flex :: Converting HTMLText As Object And Move In Textarea

Jul 8, 2009

Is it possible to convert htmltext in object and move that object in textarea?

View 1 Replies

ActionScript 3.0 :: TextArea Vs TextField - What Is Better In General

Oct 3, 2010

I was just wondering, what is better in general? Having a TextArea component or just use a TextField with a scrollbar component over it? What consumes less memory? What is the implications of using a TextArea? Why use a TextArea over a TextField? I'm currently trying to deal with memory leaks and maintenance over time in my flash application, so every byte I save means a lot

View 1 Replies

Actionscript 3 :: What Is The Difference Between TextField , Label And TextArea

Aug 12, 2010

What is the difference between TextField, Label, and TextArea in flash. I'm trying to find the most lightweight class to display text because I will be making lots of them.

View 2 Replies

ActionScript 3.0 :: Font Tag In TextArea Component?

Aug 28, 2008

We have a TextArea that is created dynamically reading in XML data with the textFormat set to Arial font as the default. When we publish it the font tag for a subscript and superscript fonts is not displaying even though we have embedded the fonts. It displays
properly if the font is installed.

View 2 Replies

Auto-scrolling A TextArea Component

Jun 23, 2009

Is there a way to get a TextArea to automatically scroll down when text is added to it?I have had a look around but havent found anything that works.

View 2 Replies

ActionScript 3.0 :: TextArea Component Scrollpolicy Being Ignored?

Nov 20, 2009

The scroll policy for the textArea component appears to be "auto", and that works just fine.However, I want to be able to turn it off in certain situations, i.e., not have the scroll bar appear.I do the following which I thought would turn it off but the scroll bar still shows up.
 
Code Snippet:
myTF = new TextFormat("Arial", 10,  0xFFFFFF,false);
myText_mc.myTextArea.setStyle("textFormat", myTF);
myText_mc.myTextArea.verticalScrollPolicy = "OFF";
myText_mc.myTextArea.horizontalScrollPolicy = "OFF";

View 2 Replies

Professional :: How To Customize TextArea Component

Jan 27, 2010

How does one customize the text area component ( I mean text font, text size, colour and so on). Nothing like that appears in Component Inspector.

View 5 Replies

Related To TextArea Component In Flash?

Apr 10, 2010

I am facing a problem while using textAreacomponent in Flash cs4.I set the text of this component at run time with coding i.e dynamic text and after that i am rotating this component with -2.After rotation it dosen't show the text why is it so?

View 1 Replies

IDE :: Remove Border From TextArea Component?

Mar 22, 2008

I'm working in ActionScript 3 and, yet again, I'm starting to regret trying to use components as it seems I always run into a brick wall when using them : (

I have a TextArea component instantiated and added to the display list programmatically via ActionScript 3 code (not AS2, which is all I could find reference to on the net about this).

How to disable the border so it doesn't show around the TextArea component? I've tried a bunch of things, like for example:

myTextArea.setStyle("border", "false");
and
myTextArea.setStyle("borderStyle", "none");

View 11 Replies

ActionScript 2.0 :: Scaling TextArea Component?

Sep 20, 2004

I'm using the textArea component, but i want to scale it to the size of the browser window. The problem is it scale the content(xml+css) and the scrollbar, and i want to just change the size. I've also tried to attach the Component and then setting the size, but that give the same problem.

View 3 Replies

ActionScript 2.0 :: Converting A Loaded Textfield To A Button?

May 28, 2005

I am loading tekst into an MC like this, and it works fine:

Code:
loadText = new LoadVars();
loadText.onLoad = function(success) {

[code].....

View 5 Replies

ActionScript 3.0 :: How To Dynamically Create Textarea Component

Aug 12, 2009

I have got an array full of strings and I want to populate the elements into dynamically created textarea components. I have seen "this []" syntax used to dynamically create arrays, but I can not get something similar to work for text area components.

Here is the code that I am trying:
Code:
for (var i:int = 0; i < aActivities.length; i++) {
this["taNode_" + i] = new TextArea();
this["taNode_" + i].move(20,50 + (10*i));
this["taNode_" + i].height=26;
this["taNode_" + i].text=aActivities[i];
addChild(this["taNode_" + i]);
}

I get this message when I run my movie:
"1180: Call to a possibly undefined method TextArea."
I do have an instance of a textarea in my Library as I know you have to for things like data grid.

View 4 Replies

ActionScript 3.0 :: Disable Editable TextArea Component?

Nov 14, 2010

I have a TextArea component in a flash document, and this TextArea is loading text from a .txt file.

However, when you're viewing the textarea in a webpage, you can not only select the text that has been loaded into the textarea, but you can also delete the text written there, like it's a word document or something.

Is there any way I can disable this?

View 3 Replies

ActionScript 3.0 :: TextArea Component Does Not Load After Publishing As AIR?

Nov 19, 2009

TextArea component does not load after publishing as AIR .I have a TextArea component in the library. Its Class is: fl.controls.TextArea I add it to the stage using the addChild method. Running it inside the flash CS4 the textArea component gets added to the stage as intended. But after publishing, the textArea component doesn't get loaded. What may be the problem? The stage is blank without any textarea.

View 2 Replies

Editing Text Appearance In A TextArea Component?

Nov 30, 2009

I am just starting to use the TextArea component in Flash CS3. How do I change the font size, style, and color of the text within the textarea? Can I also change the textarea background color from white to something else?

View 3 Replies

ActionScript 1/2 :: Possible To Fill TextArea Component With Gradient?

Feb 26, 2010

Right now I just have a single color as its background via
textarea.setStyle("backgroundColor", "0xe3ecca")
However, is it possible to say, create a gradient (the only way I know how to do so is with the beginGradientFill that you use while using the drawing API) as a variable and then apply that as the background to the TextArea component somehow?

View 2 Replies

Flex :: Remove The Border Of A TextArea Component?

Jun 25, 2009

With the Flex 3 SDK you simply needed to set the borderThickness style to 0, or set borderStyle to none. With the Flex 4 SDK ad the Spark theme, this has no effect.

View 5 Replies

ActionScript 2.0 :: Importing Text Into A TextArea Component?

Jun 29, 2006

I'm importing text into a TextArea component and it all works fine and dandy.Though I want the textarea to not form a scrollbar but to actually just keep adjusting its height so there is never a scrollbar.I looked through all the properties and I have no idea what to test for to see if there is a scrollbar.

View 1 Replies

ActionScript 2.0 :: Embed Fonts In Component Textarea?

Oct 17, 2006

I am working on this website, but i can't figure out why i can't embed my pixelfont in my textarea.

[URL]

I read on the internet i had to do it with styles because the textarea is dynamically filled with content. So i wrote this code, but it doesnt work!

Code:
// **************************************************************
// Styles
// **************************************************************
var my_styles = new TextField.StyleSheet();

[Code]....

View 4 Replies

ActionScript 2.0 :: Print TextArea Component Content

Feb 19, 2010

I have a TextArea component with a lot of content (images+text) - the content is coming from a xml file.. i need to print the textarea content and when i do - it is printing just the visible content area with scrollbar-is there anyway i can print the entire TextArea content using a print button on my flash file- im using AS2.

View 1 Replies

ActionScript 3.0 :: Converting Textfield To Bitmap - Turns Into White Box?

Sep 22, 2009

I'm starting with a textField containing some bold white text.

If I add it to the stage directly it looks like it should look.

If I convert it to a bitmap, like this:

var bmd:BitmapData = new BitmapData(textfield.width, textfield.height);
bmd.draw(textfield);
var bm:Bitmap = new Bitmap(bmd);
addChild(bm);

Then I just get a white rectangle the same dimensions of the type.

View 2 Replies

ActionScript 3.0 :: TextArea Component And Right Click Options In Flash CS3

Jan 6, 2010

I need a textarea component. I dont want to see the right click property options like cut, copy, paste..... on top of the textarea component, if you right click you will get the options. i dont want those... thats it.

View 4 Replies

ActionScript 3.0 :: Make The Text In The TextArea Component Clickable?

Jun 11, 2009

I have text in a textArea component that I need to be clickable and open up the users email program.The text shows fine when I have this:infoBox.taEmail.text = xmlDataSelect.office[evt.target.selectedIndex];but I can not click on it, so I tried this:infoBox.taEmail.htmlText = "<A REF="mailto:"+xmlDataSelect.office[evt.target.selectedIndex].email+ "</U></A>";

View 2 Replies

ActionScript 3.0 :: TextArea Component And Right Click Options In Flash CS3?

Jan 6, 2010

I need a small help on TextArea component using FLASH CS3.  I need a textarea component. I dont want to see the right click property options like cut, copy, paste can any one pls make it for me. on top of the textarea component, if you right click you will get the options.

View 2 Replies

ActionScript 1/2 :: Using An XML File To Add Text Into A TextArea Component Set As Html?

Feb 23, 2010

I'm using AS2 in Flash CS3.I have a TextArea component in the stage that's loading its text from an XML and I've been able to use the ul and li tags to create lists. However, when I try to include a nested list it just inserts a line break between the nested list and the main list rather than indent it further. Is there a solution for this issue?Failing that, how would I be able to add non-breaking spaces into the XML so they will render inside the TextArea component? I've tried   and   without success. I scoured the net for some help with this and found some information about modifying the font embedding xml file with a new entry for the non-breaking space and that didn't work either, so that leaves me somewhat stumped.

View 1 Replies

Flex :: Display Source Code In A Textarea Component?

Nov 18, 2009

I am putting together a presentation on flex for adobe user group that specialize in coldfusion. In my example I would like to display the text of the cfc being called from the webservice tag in my flex application. Is there a simple way to load the actual text for the cfc instead of the html that coldfusion is passing back to my URLloader variable?

[Code]...

View 1 Replies

Flex :: TextArea Component Is Null On ApplicationComplete Event

Jun 11, 2010

I have a weird issue (weird because it is specific to one component) with applicationComplete in a fairly simple application. All the UI components are declared in MXML. I can access them all in applicationComplete, but not a spark.components.TextArea component, named taStatus here; it is null in the handler.[code]...

View 1 Replies

Flex :: How To Get X / Y Coordinates Of Caret Inside TextArea Component

Mar 4, 2011

I googled for almost a day to find the answer to my question: [URL]. This almost works (and is a great solution), but the solution doesn't work when I do:
1). Copy and paste multiple-line texts.
2). Write long and scroll the texts.
I also found another working example at: [URL]. (The autocomplete prompt appears when you press ctrl+space right at the caret's position). But an email from its author says he uses monotype fonts to calculate individual character's location. Is there a way to get multi-line input from a textfield?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved