Not as easy as it looks- ADSR

To repeat my problem.
I have created a group called “Envelope” and inside it there are 4 sliders: A,D,S and R
I have a Layer called “Samples” and in it I have 24 Organ samples
I would like to assign the ADSR Envelope to control all 24 samples- How do i do it?

Open Macro Page Designer Extended. Select one of your samples in the program tree. Connect the DCAAttOffset parameter to your attack slider. With the slider selected on macro page click into the Value field.


Now you should see something like:

@0:Layer 1/@0:Zone 1/@id:c8

Well in your case it’s more likely to be something like @0:Samples/@0:Organ_C1.wav/@id:c8

This is scope. The slider (knob) in my example from the picture controls parameter with id c8 of the first zone with name “Zone 1” in first layer with name “Layer 1”.
To make it control all zones in that layer just change it to:

@0:Layer 1/@type:Zone/@id:c8

If you want to control all zones of the program you can skip the @0:Layer 1/ and do it simply like this:

(ADSR for amp envelope)

@type:Zone/@id:c8
@type:Zone/@id:c9
@type:Zone/@id:ca
@type:Zone/@id:cb
1 Like