Quote from
Gaev on September 19, 2020, 7:03 pm
If I have multiple Javascript subroutines that need to call another Javascript subroutine, do I need to precede each/any of the calls with NeoScriptToJS ? ... like this ...
NeoScriptToJS
neosubroutine.myCommonJavascriptSubroutinee(a,b,c);
if ($App[pqrs] == "xyz") {
blah blah blah
}
... or even ...
NeoScriptToJS
returnValue = neosubroutine.myCommonJavascriptSubroutinee(a,b,c);
if (returnValue == "xyz") {
blah blah blah
}
Is it any different if all such subroutines are actually part of a plugin ?
If I have multiple Javascript subroutines that need to call another Javascript subroutine, do I need to precede each/any of the calls with NeoScriptToJS ? ... like this ...
NeoScriptToJS
neosubroutine.myCommonJavascriptSubroutinee(a,b,c);
if ($App[pqrs] == "xyz") {
blah blah blah
}
... or even ...
NeoScriptToJS
returnValue = neosubroutine.myCommonJavascriptSubroutinee(a,b,c);
if (returnValue == "xyz") {
blah blah blah
}
Is it any different if all such subroutines are actually part of a plugin ?