Loads and executes the specified iScript executable.
Syntax
Parameters
filename
|
the name of the iScript executable.
|
Returns
object
|
any object passed back by the return statement.
|
Notes
All variables accessible by the caller are accessible by the iScript executable.
Any variables created within the iScript executable are removed when the iScript executable is exited.
Example
count = call( "page_counter.cef" )
|