Issue with navigating CursorDevice->Slots

Post Reply New Topic
RELATED
PRODUCTS

Post

Hey,

does anybody notice, that its not possible to select the "FX" slot of a Plugin? Every other slot is working (as long as its a Bitwig device, e.g. "PRE" or "POST" of the Amp device).

Code: Select all

public interface CursorDeviceSlot extends DeviceChain
{
   void selectSlot(String slot);
}
So basically I'm just doing:

Code: Select all

CursorDeviceSlot cursorDeviceSlot = (CursorDeviceSlot) cursorDevice.getCursorSlot();
cursorDeviceSlot.selectSlot("FX");
Bitwig, Roland TR-8S, 303, Volcas, Deepmind12, Neutron, Poly D, NI | Berlin, Germany

Post

Yeah I had trouble getting to those slots with my plugin window control. I think the chain device also has this issue… or I just don’t know the function hidden in plain sight
----------------------------------------------------------------------
http://instagram.com/kirkwoodwest/
http://soundcloud.com/kirkwoodwest

Post

You can navigate by doing

Code: Select all

cursorDevice.selectFirstInSlot(slotName)
but by doing this, I'm missing the rest of the available devices in the slot...
Bitwig, Roland TR-8S, 303, Volcas, Deepmind12, Neutron, Poly D, NI | Berlin, Germany

Post Reply

Return to “Controller Scripting”