Text Labels and Value Parameters

I did the same with the [value] tag as the knob-widget’s caption, this will permanently show the connected parameter’s value (if supported by the plugin!)… then i used a little script to set the text of the label-widget according to the caption of the knob-widget. This also works in both directions and you won’t have to deal with cryptic parameter numbers within the script.

var
knb_1, lbl_aux : widget

On WidgetValueChanged (knb_val:double) from knb_1
    SetWidgetLabel (lbl_aux, GetWidgetLabel(knb_1))
End

widget2label.gig (43.9 KB)

(i used the free Surge Synth plugin in my example)

4 Likes