Border (Textfield.border Property); Bordercolor (Textfield.bordercolor Property); Bottomscroll (Textfield.bottomscroll Property) - MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference

Flash lite 2.x actionscript language reference
Hide thumbs Also See for FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE:
Table of Contents

Advertisement

border (TextField.border property)

public border :
Boolean
Specifies if the text field has a border. If
field has no border.
Availability: ActionScript 1.0; Flash Lite 2.0
Example
The following example creates a text field called
displays some text in the field.
this.createTextField("my_txt", this.getNextHighestDepth(), 10, 10, 320,
240);
my_txt.border = true;
my_txt.text = "Lorum ipsum";

borderColor (TextField.borderColor property)

public borderColor :
The color of the text field border. The default is
retrieved or set, even if there is currently no border.
Availability: ActionScript 1.0; Flash Lite 2.0
Example
The following example creates a text field called
displays some text in the field.
this.createTextField("my_txt", this.getNextHighestDepth(), 10, 10, 320,
240);
my_txt.border = true;
my_txt.borderColor = 0x00FF00;
my_txt.text = "Lorum ipsum";
See also
border (TextField.border property)

bottomScroll (TextField.bottomScroll property)

public bottomScroll :
An integer (one-based index) that indicates the bottommost line that is currently visible the
text field. Think of the text field as a window onto a block of text. The property
is the one-based index of the topmost visible line in the window.
TextField.scroll
, the text field has a border. If
true
Number
Number
[read-only]
, sets the border property to
my_txt
(black). This property may be
0x000000
, sets the border property to
my_txt
, the text
false
, and
true
, and
true
TextField
655

Advertisement

Table of Contents
loading

Table of Contents