Object() - MACROMEDIA FLASH MX 2004-ACTIONSCRIPT LANGUAGE Reference

Actionscript language reference
Table of Contents

Advertisement

Object()

Availability
Flash Player 5.
Usage
Object( [ value ] ) : Object
Parameters
A number, string, or Boolean value.
value
Returns
An object.
Description
Conversion function; creates a new empty object or converts the specified number, string, or
Boolean value to an object. This command is equivalent to creating an object using the Object
constructor (see
Example
In the following example, a new empty object is created, and then the object is populated with
values:
var company:Object = new Object();
company.name = "Macromedia, Inc.";
company.address = "600 Townsend Street";
company.city = "San Francisco";
company.state = "CA";
company.postal = "94103";
for (var i in company) {
trace("company."+i+" = "+company[i]);
}
"Constructor for the Object class" on page
ActionScript Language Reference
660).
CHAPTER 2
Object()
659

Advertisement

Table of Contents
loading
Need help?

Need help?

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

Questions and answers

This manual is also suitable for:

Flash mx

Table of Contents