MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE Reference page 1244

Actionscript 2.0 language reference
Table of Contents

Advertisement

underline:Boolean
underlined.
[optional] - The URL to which the text in this text format hyperlinks. If
url:String
an empty string, the text does not have a hyperlink.
[optional] - The target window where the hyperlink is displayed. If the target
target:String
window is an empty string, the text is displayed in the default target window
parameter is set to an empty string or to the value
the property will have no effect.
[optional] - The alignment of the paragraph, represented as a string. If
align:String
, the paragraph is left-aligned. If
"left"
paragraph is right-aligned.
leftMargin:Number
rightMargin:Number
[optional] - An integer that indicates the indentation from the left margin to
indent:Number
the first character in the paragraph.
[optional] - A number that indicates the amount of leading vertical space
leading:Number
between lines.
Example
The following example creates a TextFormat object, formats the
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...";
To view another example, see the animations.fla file in the ActionScript samples Folder. The
following list provides typical paths to the ActionScript samples Folder:
Windows: boot drive\Program Files\Macromedia\Flash 8\Samples and
Tutorials\Samples\ActionScript
Macintosh: Macintosh HD/Applications/Macromedia Flash 8/Samples and Tutorials/
Samples/ActionScript
1244
ActionScript classes
[optional] - A Boolean value that indicates whether the text is
"center"
[optional] - Indicates the left margin of the paragraph, in points.
[optional] - Indicates the right margin of the paragraph, in points.
, you can get or set this property, but
null
, the paragraph is centered. If
stats_txt
is
url
. If the
_self
url
, the
"right"
text field, and

Hide quick links:

Advertisement

Table of Contents
loading

This manual is also suitable for:

Flash 8

Table of Contents