Execute: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Add javascript snippet)
Line 18: Line 18:
</pre>
</pre>


== Example (Basic) ==
== Example (JavaScript) ==
<pre>
<pre>
// Eval execute a string as a SUB
// Eval execute a string as a SUB
Line 24: Line 24:
var x;
var x;
x = 5;
x = 5;
eval("NSB.PRINT x * 10");
eval("NSB.PRINT(x * 10)");
eval("x = x * 10");
eval("x = x * 10");
NSB.Print(x;
NSB.Print(x);
</pre>
</pre>



Revision as of 18:39, 19 May 2013

Execute(string)

Description

Execute executes an expression or file as if it were code substituted in the program. The required parameter, string, can be either a string expression or the name of a file containing statements that is executed. If multiple statements are to be executed, separate them with a carriage return (vbCRLF). The code can access and modify all variables in the current running program.

The code in the string is evaluated as JavaScript code. See the TechNote 04, "The role of JavaScript, HTML5 and WebKit".

Example (Basic)

Rem Execute execute a string as a SUB
Dim x
x = 5
Execute("PRINT x * 10")
Execute("x = x * 10")
Print x

Example (JavaScript)

// Eval execute a string as a SUB

var x;
x = 5;
eval("NSB.PRINT(x * 10)");
eval("x = x * 10");
NSB.Print(x);

Output

50
50

Related Items

Eval