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
The example works as intended. But porting it to Sciter.JS does not:
<html><head><title>extension test</title><styletype="text/css"></style><scripttype="text/javascript" type="module">// copy "extension.dll" next to the "sciter.dll"import{loadLibrary}from"@sciter";constext=loadLibrary("extension");console.log(ext);// Objectconsole.log(JSON.stringify(ext));// "{"add":"","sub":""}"console.log(typeofext.add);// stringconsole.log(ext.add(1,2));// TypeError: not a functionconsole.log(ext.sub(1,2));</script></head><body><h4>see logs in Inspector</h4></body></html>
The text was updated successfully, but these errors were encountered:
For the record, I was hoping I could try my hand at the "sciter-ffmpeg.dll" referenced here. If Sciter.JS removed this API I suppose the only other is SOM, which is quite complicated for me.
The example works as intended. But porting it to Sciter.JS does not:
The text was updated successfully, but these errors were encountered: