Arguments Class - MACROMEDIA FLASH MX 2004 - ACTIONSCRIPT Reference Manual

Actionscript reference guide
Hide thumbs Also See for FLASH MX 2004 - ACTIONSCRIPT:
Table of Contents

Advertisement

Arguments class

Availability
Flash Player 5; property added in Flash Player 6.
Description
The Arguments class is an array that contains the values that were passed as parameters to any
function. Each time a function is called in ActionScript, an Arguments object is automatically
created for that function. A local variable,
Arguments object.
Property summary for the Arguments class
Property
arguments.callee
arguments.caller
arguments.length
arguments.callee
Availability
Flash Player 5.
Usage
arguments.callee
Description
Property; refers to the function that is currently being called.
Example
You can use the
arguments.callee
in the following:
factorial = function (x) {
if (x <= 1) {
return 1;
} else {
return x * arguments.callee(x-1);
}
};
The following is a named recursive function:
function factorial (x) {
if (x <= 1) {
return 1;
} else {
return x * factorial(x-1);
}
}
272
Chapter 12: ActionScript Dictionary
arguments
Description
Refers to the function being called.
Refers to the calling function.
The number of parameters passed to a function.
property to make an anonymous function that is recursive, as
, is also created and lets you refer to the

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLASH MX 2004 - ACTIONSCRIPT and is the answer not in the manual?

Questions and answers

Subscribe to Our Youtube Channel

Table of Contents