isReadyForPlayback
Description​
Gets whether the synthesizer is ready for playback. The player is ready for playback when all background workers are started, the audio output is initialized, a soundfont is loaded, and a song was loaded into the player as midi file.
isReadyForPlaybackJavaScript |
alphaTab('isReadyForPlayback')jQuery |
IsReadyForPlayback.net |
isReadyForPlaybackAndroid |
Types​
boolAll |
Examples​
- JavaScript
- jQuery
- C#
- Android
const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
if(api.isReadyForPlayback)) api.play();
const at = $('#alphaTab');
if(at.alphaTab('isReadyForPlayback')) at.alphaTab('play');
var api = new AlphaTabApi<MyControl>(...);
if(api.IsReadyForPlayback) api.Play();
val api = AlphaTabApi<MyControl>(...)
if (api.isReadyForPlayback) api.play()