Skip to main content

beatMouseMove

since 0.9.7

Description​

This event is fired whenever the user moves the mouse over a beat after the user already pressed the button on a beat.

beatMouseMove: IEventEmitterOfT<Beat>;

Examples​

const api = new alphaTab.AlphaTabApi(document.querySelector('#alphaTab'));
api.beatMouseMove.on((beat) => {
expandSelectionToBeat(beat);
});