call() |
Top Previous Next |
call( efsname [, arguments] )
This function is provided for backwards compatibility with EFS1. It allows you to call another script and retrieve the return values from that script.
Parameters
Usage
function main() { var myVar; ... ... //call a second script that calculates a custom moving average //and retrieve the current value. In this example, the script //we are calling has one input parameter. myVar = call( "myCustomMA.efs", 10 );
}
|