lr.loadLibrary
Evaluates and runs the specified JavaScript file in the global context.
Example | Runtime Functions |
Syntax
lr.loadLibrary( "<path>" );
Arguments
Argument | Comments |
---|---|
path | One of:
|
The lr.loadLibrary function evaluates and runs the specified js file in the global context. Enter the function manually before the beginning of the action scope.
Return Values
Not applicableParameterization
Parameterization is not applicable to this function.
Example
lr.loadLibrary('circle.js'); function Action() { lr.outputMessage(circle.area(5)); return 0; }