Example
In class B as defined below, a call to class A's constructor will automatically be inserted as the first
statement of B's constructor function, because a call does not already exist there. (That is, it is
commented out in the example.)
class B extends class A
{
function B() { // this is the constructor
//
super(); // optional; inserted during compilation if omitted
}
function m():Number {return 25;}
function o(s:String):Void {trace(s);}
}
See also
,
class
implements
false
Availability
Flash Player 5.
Usage
false
Description
Constant; a unique Boolean value that represents the opposite of
See also
true
_focusrect
Availability
Flash Player 4.
Usage
_focusrect = Boolean;
Description
Property (global); specifies whether a yellow rectangle appears around the button or movie clip
that has keyboard focus. The default value,
focused button or movie clip as the user presses the Tab key to navigate through objects in a SWF
file. Specify
false
that can be overridden for specific instances.
See also
Button._focusrect,
382
Chapter 12: ActionScript Dictionary
,
interface
if you do not want to display the yellow rectangle. This is a global property
MovieClip._focusrect
, displays a yellow rectangle around the currently
true
.
true
Need help?
Do you have a question about the FLASH MX 2004 - ACTIONSCRIPT and is the answer not in the manual?