User Guide
Manuals
Brands
Macromedia Manuals
Other
FLASH MX 2004-ACTIONSCRIPT LANGUAGE REFERENCE
281
282
283
284
285
286
287
288
289
290
290
Chapter 2: ActionScript Language Reference
throw new Error("Strings to not match.");
}
}
try {
compareStrings("Dog", "dog");
// output: Strings to not match.
} catch (e_err:Error) {
trace(e_err.toString());
}
See also
throw
,
try..catch..finally
1
...
...
288
289
290
291
292
...
...
1104