CUE: Volume Control

2.13K viewsCSS Questions
0

There are no cue volume objects in CSS so I thought I could just use reactions…but I looked through the LOM here
https://docs.cycling74.com/max8/vignettes/live_object_model?q=LOM
and there seems to be no access?
This cant be true because I have used a number of different scripts eg STC where cue volume is controlled.

admin Changed status to publish
Attached Files:
0

Yep was about to say ‘master_track.mixer_device.cue_volume’.

Hooking into the functionality that other mapping types use for absolute/relative controls it too complex for a reaction. (We will look into making them accessible to reactions).

The easiest way to add cue_volume (until we add it in the UI) is to simply do this:
1. add a volume mapping as you would normally (for extra simplicity, make it a master volume mapping by selecting master from the parent track settings.
2 set the relative controls up how you need them – install the script
3 Then in the code, go to the method: def _mode1_configs, and change the line which selects the master volume:
“self.song().master_track.mixer_device.volume”
to:
“self.song().master_track.mixer_device.cue_volume”

Save it, reload live, and you will have a Cue Volume mapping.

admin Changed status to publish
Attached Files:
You are viewing 1 out of 12 answers, click here to view all answers.