Solo & mute features #1024
-
Hi everyone! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi. You can simply use the provided APIs for muting and solo tracks to update the player. to respect the information in the tracks. https://alphatab.net/docs/reference/api/changetrackmute/ api.changeTrackSolo(score.tracks.filter(t => t.playbackInfo.isSolo), true);
api.changeTrackMute(score.tracks.filter(t => t.playbackInfo.isMute), true); |
Beta Was this translation helpful? Give feedback.
Hi.
Yes,
isSolo
andisMute
are not affecting directly by default the playback and this is rather by design to avoid unexpected side effects for people who do not build a full UI around the mute/solo functionalities.You can simply use the provided APIs for muting and solo tracks to update the player. to respect the information in the tracks.
https://alphatab.net/docs/reference/api/changetrackmute/
https://alphatab.net/docs/reference/api/changetracksolo/