![MACROMEDIA FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE Reference Download Page 34](http://html.mh-extra.com/html/macromedia/flash-8-actionscript-2-0-language/flash-8-actionscript-2-0-language_reference_687537034.webp)
34
ActionScript language elements
Do not place a semicolon (;) at the end of the line that contains the #initclip directive.
Availability:
ActionScript 1.0; Flash Player 6.0
Parameters
order
:Number
[optional] - A non-negative integer that specifies the execution order of blocks
of
#initclip
code. This is an optional parameter. You must specify the value by using an
integer literal (only decimal values are allowed, not hexadecimal), and not by using a variable.
If you include multiple
#initclip
blocks in a single movie clip symbol, then the compiler
uses the last
order
value specified in that movie clip symbol for all
#initclip
blocks in that
symbol.
Example
In the following example, ActionScript is placed on Frame 1 in a movie clip instance. A
variables.txt text file is placed in the same directory.
#initclip
trace("initializing app");
var variables:LoadVars = new LoadVars();
variables.load("variables.txt");
variables.onLoad = function(success:Boolean) {
trace("variables loaded:"+success);
if (success) {
for (i in variables) {
trace("variables."+i+" = "+variables[i]);
}
}
};
#endinitclip
Summary of Contents for FLASH 8-ACTIONSCRIPT 2.0 LANGUAGE
Page 1: ...ActionScript 2 0 Language Reference ...
Page 1352: ...1352 ActionScript classes ...