callFunction() |
Top Previous Next |
callFunction( efsname, funcname [, arguments] )
This function is provided for backwards compatibility with EFS1. It allows you to call a specific function within another script and retrieve the return values from that function.
Parameters
Usage
function main() { var myVar; ... ...
//call a function within another script and retrieve the //value(s) returned by the function. myVar = call( "myCustomMA.efs", "calcStdDev", 150 );
}
|