Contents

Errors Global Functions & Variables

Script Functions

Functions are a way to wrap a block of reusable code. Functions should be declared in 'General' script or in additional JavaScript files. They can then be called from anywhere else in the movie. Functions can accept parameters and also return a value.


function FunctionName1(){
}
function FunctionName2(Value1){
return true;
}

Example:


function AlertDate(){
var Now=new Date();
alert(Now);
}

function Cube(ValueA){
return ValueA*ValueA*ValueA;
}

var Score=0;
function AddScore(NewScore){
Score
+=NewScore;
}

To call these example functions.


AlertDate();

var Result=Cube(7);

AddScore
(100);

Errors Global Functions & Variables