"Secret" about the beta instruments in short
Open a new sequence, then the console: ctrl+shift+i
Clear the console if you want to, I don't think it's necessary though...
Make sure that the markup to write is in the console first.
Copy the code below then paste it in the console (Ctrl + V) and press Enter
Now the beta instruments should be at the bottom of the drop down menu.
insts=[]; for(i=0;i<instrumentSelect.length;i++) { insts.push(parseInt(instrumentSelect[i].value)) } for(i=0;i<settings.instrumentColors.length;i++) { if(!insts.includes(i)) { var opt = document.createElement("option"); opt.value = i; opt.text = settings.instruments[i]; instrumentSelect.add(opt); } }
I've got the information from a nice member here at the site. Me I don't understand such code

Open a new sequence, then the console: ctrl+shift+i
Clear the console if you want to, I don't think it's necessary though...
Make sure that the markup to write is in the console first.
Copy the code below then paste it in the console (Ctrl + V) and press Enter
Now the beta instruments should be at the bottom of the drop down menu.
insts=[]; for(i=0;i<instrumentSelect.length;i++) { insts.push(parseInt(instrumentSelect[i].value)) } for(i=0;i<settings.instrumentColors.length;i++) { if(!insts.includes(i)) { var opt = document.createElement("option"); opt.value = i; opt.text = settings.instruments[i]; instrumentSelect.add(opt); } }
I've got the information from a nice member here at the site. Me I don't understand such code
