As nobody has found a simple way yet, i think i can answer my own question:
I think it is not possible in a direct way. Using a simple Lua-Script is the best solution, linking the Knob with the (in the script) exported variable/parameter.
pleas exchange the text in or with real text:
myzone=this.parent:getZone("")
myzone2=this.parent:getZone("")
function on_()
– just an example change the octave of osc1 and osc2 to the value you want
– it is even possible to change it in different zones, but you have to create another myzone2 value (see above)
=<exported_Parameter>
myzone:setParameter(“Osc 1.Octave”, )
myzone:setParameter(“Osc 2.Octave”, )
myzone2:setParameter(“Osc 1.Octave”, )
end
- in this example replace min=3 and max=3
defineParameter("","<exported_Parameter>",0,,,on_)