I have an instrument with multiple waveform UI elements. I can update the playhead position of a single waveform element using the code seen in the reference manual:
on note
	while ($NOTE_HELD = 1)
		$playPos := get_event_par($EVENT_ID, $EVENT_PAR_PLAY_POS)
		set_ui_wf_property($layer1RiseWf, $UI_WF_PROP_PLAY_CURSOR, 0, $playPos)
		wait(10000)
	end while
end on
How can I update the playhead position of multiple zone's waveforms, all of which are playing simultaneously?
Thanks! 😁