Replies: 1 comment
-
Generally there should not be any restriction to use it in Electron. What is important in such setups is whether alphaTab is going to be used in the backend (quasi server) part or on the frontend part. If you use it on the backend part inside NodeJs you cannot use If you plan to use AlphaTab in the frontend part I wouldn't expect any issues unless some "browser" features are disabled by setting. In most cases you would like to use alphaTab as UI control in the frontend of the Electron app. You could also offload things to the "backend" inside APIs and use alphaTab there too, but that might be an edge case. |
Beta Was this translation helpful? Give feedback.
-
I've developed a website which uses Alphatab to show scores, now I'm trying to make a desktop version of it and may add on more features. But when I try to load Alphatab API via
go-astilectron
it saysAfter spending some time reading https://alphatab.net/docs/guides/nodejs/ and going through some other similar issues, feels like I have to give up using
alphaTab.AlphaTabApi(main, settings)
but call this?and I won't be able to use any API features that
AlphaTabApi
provides such asapi.scoreLoaded
,api.render()
,api.playPause()
...etc?Are there better way? or more guide on how to make it function similar to your demo on https://alphatab.net/docs/tutorial-web/introduction ?
Beta Was this translation helpful? Give feedback.
All reactions