intrinsic statement
intrinsic class className [extends superClass] [implements interfaceName [,
interfaceName...] ] {
//class definition here
}
Allows compile-time type checking of previously defined classes. Flash uses intrinsic class
declarations to enable compile-time type checking of built-in classes such as
and
. This keyword indicates to the compiler that no function implementation is
String
required, and that no bytecode should be generated for it.
The
keyword can also be used with variable and function declarations. Flash uses
intrinsic
this keyword to enable compile-time type checking for global functions and properties.
The
keyword was created specifically to enable compile-time type checking for
intrinsic
built-in classes and objects, and global variables and functions. This keyword was not meant
for general purpose use, but may be of some value to developers seeking to enable compile-
time type checking with previously defined classes, especially if the classes are defined using
ActionScript 1.0.
This keyword is supported only when used in external script files, not in scripts written in the
Actions panel.
Availability: ActionScript 2.0; Flash Lite 2.0
Example
The following example shows how to enable compile-time file checking for a previously
defined ActionScript 1.0 class. The code will generate a compile-time error because the call
myCircle.setRadius()
can avoid the error by changing the parameter to a
to
).
"10"
10
// The following code must be placed in a file named Circle.as
// that resides within your classpath:
intrinsic class Circle {
var radius:Number;
function Circle(radius:Number);
function getArea():Number;
function getDiameter():Number;
function setRadius(param_radius:Number):Number;
}
// This ActionScript 1.0 class definition may be placed in your FLA file.
// Circle class is defined using ActionScript 1.0
function Circle(radius) {
this.radius = radius;
this.getArea = function(){
206
ActionScript language elements
sends a
value as a parameter instead of a
String
value (for example, by changing
Number
,
,
Array
Object
value. You
Number
Need help?
Do you have a question about the FLASHLITE2 ACTIONSCRIPT-LANGUAGE and is the answer not in the manual?