.
Create and style textfields with AS3
In this Flash actionscript 3.0 tutorial you will see how to dynamically create a textfield on the stage, giving it properties and add some styling to it, all done with actionscripting.

As I just mentioned, this is an actionscript tutorial, so we do not need to do anything in design view, only thing I did was to change the stage height and width to 200 x 100 px.
This actionscript will contain 3 sections.
Section 1 where we create an instance of the textfield object.
In section 2 we will be adding properties to our new textfield, such as proportions, placement, border etc.
In the last section we will add some formatting to our text field, like color and font size.
I have typed in the code below for you to copy in, all my code descriptions will be inline with the code, and start with "//" as comments in flash actionscript.
//Creating the textfield object and naming it "myTextField" var myTextField:TextField = new TextField(); //Here we add the new textfield instance to the stage with addchild() addChild(myTextField); //Here we define some properties for our text field, starting with giving it some text to contain. //A width, x and y coordinates. myTextField.text = "some text here!"; myTextField.width = 250; myTextField.x = 25; myTextField.y = 25; //Here are some great properties to define, first one is to make sure the text is not selectable, then adding a border. myTextField.selectable = false; myTextField.border = true; //This last property for our textfield is to make it autosize with the text, aligning to the left. myTextField.autoSize = TextFieldAutoSize.LEFT; //This is the section for our text styling, first we create a TextFormat instance naming it myFormat var myFormat:TextFormat = new TextFormat(); //Giving the format a hex decimal color code myFormat.color = 0xAA0000; //Adding some bigger text size myFormat.size = 24; //Last text style is to make it italic. myFormat.italic = true; //Now the most important thing for the textformat, we need to add it to the myTextField with setTextFormat. myTextField.setTextFormat(myFormat);
Thats it, test your flash movie, you should have a full customized textfield made in actionscript.
Admin Bob says: 2008-07-06
chelsea says: 2008-06-26
Admin Bob says: 2008-06-16
Admin Bob says: 2008-06-16
prakash says: 2008-06-16
prakash says: 2008-06-16
prakash says: 2008-06-16
rahul says: 2008-06-09

