Back

LoadScript

Hello World

Loads a local JavaScript file asynchronously to your app to make its functionality available in your app.

app.LoadScript( path, callback )

See Also: Script

Example - Compute the Answer to the Ultimate Question of Life, the Universe, and Everything

var scriptJS = `
var num = 7;
function computeNum() { return 6 * num; }
`
;

function OnStart() {
    app.WriteFile( "script.js", scriptJS )
    app.LoadScript( "script.js", OnLoad );
}

function OnLoad() {
    app.ShowPopup( "script.js loaded." );
    app.Alert( computeNum(), "computed number: " );
}
    Copy     Copy All       Run      
string: path to file or folder ( “/absolute/...” or “relative/...” )
object: { isTrusted }
function( info )