778
Chapter 7: ActionScript for Flash
leftMargin
Indicates the left margin of the paragraph, in points.
rightMargin
Indicates the right margin of the paragraph, in points.
indent
An integer that indicates the indentation from the left margin to the first character in
the paragraph.
leading
A number that indicates the amount of leading vertical space between lines.
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
null
to indicate that it is not defined. All of the parameters are
optional; any omitted parameters are treated as
null
.
Example
The following example creates a TextFormat object, formats the
stats_txt
text field, and creates
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...";
TextFormat.align
Availability
Flash Player 6.
Usage
my_fmt
.align
:String
Description
Property; indicates the alignment of the paragraph, represented as a string. The alignment of the
paragraph, represented as a string. If
"left"
, the paragraph is left-aligned. If
"center"
, the
paragraph is centered. If
"right"
, the paragraph is right-aligned. The default value is
null
which
indicates that the property is undefined.
Summary of Contents for FLEX-FLEX ACTIONSCRIPT LANGUAGE
Page 1: ...Flex ActionScript Language Reference...
Page 8: ......
Page 66: ...66 Chapter 2 Creating Custom Classes with ActionScript 2 0...
Page 76: ......
Page 133: ...break 133 See also for for in do while while switch case continue throw try catch finally...
Page 135: ...case 135 See also break default strict equality switch...
Page 146: ...146 Chapter 5 ActionScript Core Language Elements See also break continue while...
Page 808: ...808 Chapter 7 ActionScript for Flash...
Page 810: ...810 Appendix A Deprecated Flash 4 operators...
Page 815: ...Other keys 815 Num Lock 144 186 187 _ 189 191 192 219 220 221 222 Key Key code...
Page 816: ...816 Appendix B Keyboard Keys and Key Code Values...
Page 822: ...822 Index...