MACROMEDIA FLASH MX 2004-ACTIONSCRIPT LANGUAGE Reference page 285

Actionscript language reference
Table of Contents

Advertisement

/* output:
craig.age = 32
craig.name = Craiggers
*/
If you add an undeclared function,
example:
trace("");
craig.dance = true;
for (i in craig) {
trace("craig."+i +" = "+ craig[i]);
}
/* output:
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 14: There is no
property with the name 'dance'.
craig.dance = true;
Total ActionScript Errors: 1
*/
Add the
keyword to the Person2 class, so that the first line appears as follows:
dynamic
dynamic class Person2 {
Test the code again, and you see the following output:
craig.dance = true
craig.age = 32
craig.name = Craiggers
See also
class,
extends
, an error is generated, as shown in the following
dance
Reported Errors: 1
dynamic
285

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?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Flash mx

Table of Contents