Object Function; On Handler - 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

Object function

Object( [value] ) : Object
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
"Constructor for the Object class").
Availability: ActionScript 1.0; Flash Lite 2.0
Parameters
[optional] - A number, string, or Boolean value.
value:Object
Returns
- An object.
Object
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]);
}
See also
Object

on handler

on(mouseEvent:Object) { // your statements here }
Specifies the mouse event or keypress that triggers an action.
Availability: ActionScript 1.0; Flash Lite 1.0 - Flash 2. Not all events are supported in
Flash 2.
Global Functions
69

Advertisement

Table of Contents
loading

Table of Contents