TextFormat.bold
779
Example
The following example creates a text field with a border and uses
TextFormat.align
to center
the text.
var my_fmt:TextFormat = new TextFormat();
my_fmt.align = "center";
this.createTextField("my_txt", 1, 100, 100, 300, 100);
my_txt.multiline = true;
my_txt.wordWrap = true;
my_txt.border = true;
my_txt.text = "this is my first test field object text";
my_txt.setTextFormat(my_fmt);
TextFormat.blockIndent
Availability
Flash Player 6.
Usage
my_fmt
.blockIndent
:Number
Description
Property; a number that indicates the block indentation in points. Block indentation is applied to
an entire block of text; that is, to all lines of the text. In contrast, normal indentation
(
TextFormat.indent
) affects only the first line of each paragraph. If this property is
null
, the
TextFormat object does not specify block indentation.
Example
This example creates a text field with a border and sets the blockIndent to 20.
this.createTextField("mytext",1,100,100,100,100);
mytext.multiline = true;
mytext.wordWrap = true;
mytext.border = true;
var myformat:TextFormat = new TextFormat();
myformat.blockIndent = 20;
mytext.text = "this is my first test field object text";
mytext.setTextFormat(myformat);
TextFormat.bold
Availability
Flash Player 6.
Usage
my_fmt
.bold
:Boolean
Summary of Contents for FLEX
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 ...