Can't seem to achieve full transparency on the background with this code, and can't seem to cause any change in the opacity of the waveform itself at all with this code. Am I doing something wrong?
on init
set_ui_height_px(290)
make_perfview
declare ui_slider opacity (0,255)
declare ui_waveform $Waveform(6,6)
attach_zone ($Waveform,find_zone("Test"),0)
end on
on ui_control (opacity)
message(opacity)
set_control_par(get_ui_id($Waveform), CONTROL_PAR_WAVE_ALPHA,opacity)
set_control_par(get_ui_id($Waveform), CONTROL_PAR_BG_ALPHA,opacity)
end on