You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running test with nodejs.
I modified completionHandler and now it works OK for me. But may be I did it bad way?
functioncompletionHandler(successful:Bool):Void
{
try
{
#if flash
flash.external.ExternalInterface.call("testResult", successful);
#elseif js
// js.Lib.eval("testResult(" + successful + ");");Sys.exit(successful?0:1);
#elseif sys
Sys.exit(successful?0:1);
#end
}
// if run from outside browser can get error which we can ignorecatch (e:Dynamic)
{
}
}
Hi,
Is it possible?
Simple script
In case of 1st line fails, I want script to stop.
Possible?
The text was updated successfully, but these errors were encountered: