Indicates the left margin of the paragraph, in points.
leftMargin
rightMargin
An integer that indicates the indentation from the left margin to the first character in
indent
the paragraph.
A number that indicates the amount of leading vertical space between lines.
leading
Returns
A reference to a TextFormat object.
Description
Constructor; creates a TextFormat object with the specified properties. You can then change the
properties of the TextFormat object to change the formatting of text fields.
Any parameter may be set to
optional; any omitted parameters are treated as
Example
The following example creates a TextFormat object, formats the
a new text field to display the text in:
// Define a TextFormat which is used to format the stats_txt text field.
var my_fmt:TextFormat = new TextFormat();
my_fmt.bold = true;
my_fmt.font = "Arial";
my_fmt.size = 12;
my_fmt.color = 0xFF0000;
// Create a text field to display the player's statistics.
this.createTextField("stats_txt", 5000, 10, 0, 530, 22);
// Apply the TextFormat to the text field.
stats_txt.setNewTextFormat(my_fmt);
stats_txt.selectable = false;
stats_txt.text = "Lorem ipsum dolor sit amet...";
To view another example, see the animations.fla file in the HelpExamples Folder. The following
list provides typical paths to the HelpExamples Folder:
•
Windows: \Program Files\Macromedia\Flash MX 2004\Samples\HelpExamples\
•
Macintosh: HD/Applications/Macromedia Flash MX 2004/Samples/HelpExamples/
944
Chapter 2: ActionScript Language Reference
Indicates the right margin of the paragraph, in points.
to indicate that it is not defined. All of the parameters are
null
.
null
stats_txt
text field, and creates
Need help?
Do you have a question about the FLASH MX 2004-ACTIONSCRIPT LANGUAGE and is the answer not in the manual?
Questions and answers