Skip to main content

playerPositionChanged

since 0.9.4

Description​

This event is fired when the current playback position of the song changed.

Examples​

const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
api.playerPositionChanged.on((args) => {
updatePlayerPosition(args);
});