Online Sequencer Make music online
  • Sequences
  • Members
  • Import MIDI
  • Forum

Existing user? Sign In Create account
Login at Online Sequencer Forums

Online Sequencer Forums › Online Sequencer › Online Sequencer Discussion
« Previous 1 … 24 25 26 27 28 … 56 Next »

How to access the hidden instruments?

Thread tools
How to access the hidden instruments?
Hunter The Bad Pianist Offline
Coke Enjoyer
1 Posts:
 
#1
Question  09-14-2019, 08:45 PM
If anybody could give a tutorial on how to use them that would be great, ive been searching but have yet to find a way to get them.


Not sure how this thing works but im gonna type this here in the hopes that its funny to people that do know  >_>
Reply
JHXC Offline
Still here
224 Posts:
 
#2
09-14-2019, 09:03 PM
Go to offline-os.glitch.me. it has all the hidden instruments fully featured. You can just save a local copy when you're done and bring it over to vanilla os.

At this point that social experiment should just be the latest version of os.


Music and Socials:
  • Bandcamp
  • Twitter
  • YouTube
-JHXC
Reply
dfhwze Offline
Member
41 Posts:
 
#3
11-11-2019, 11:33 AM
This has been asked time and again. 

- Browse to a sequence or create an new one
- If you use Chrome, open the console (CTRL+SHFT+J) 
- Paste the code snipper below
- press ENTER
- Enjoy!

Code:
function loadInstruments() {
var insts=[];
for(var i=0;i<instrumentSelect.length;i++)
{
insts.push(parseInt(instrumentSelect[i].value))
}
var grp = document.createElement("optgroup");
grp.label = "Unfinished";
instrumentSelect.add(grp);
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];
grp.appendChild(opt);
var instSettings = document.createElement("div");
instSettings.innerHTML = "<div class=\"instrument_option\"><div><div id=\"instrument_lock_" + i + "\" class=\"instrument_lock btn tooltipstered\" onclick=\"lockInstrument(" + i + ")\"></div><span id=\"instrument_name_" + i + "\" onclick=\"selectInstrument(" + i + ")\">" + settings.instruments[i] + "</span><div class=\"chip instrument" + i + "\"></div></div><div class=\"row\"><input id=\"instrument_volume_" + i + "\" class=\"slider\" type=\"range\" min=\"0\" max=\"2\" step=\"0.01\" oninput=\"audioSystem.setInstrumentVolume(" + i + ", this.value)\"><div id=\"instrument_delay_" + i + "\" class=\"button tooltipstered\" onclick=\"selectDelay(" + i + ")\">D</div><div id=\"instrument_reverb_" + i + "\" class=\"button tooltipstered\" onclick=\"selectReverb(" + i + ")\">R</div></div></div>;"
document.getElementById("instrument_options").appendChild(instSettings.firstChild);
}
}
console.log("instruments loaded");
}
loadInstruments();


Reply
PuzzlePuddles Away
Aden Mayo
278 Posts:
 
#4
05-09-2020, 07:25 PM
(11-11-2019, 11:33 AM)dfhwze Wrote: This has been asked time and again. 

- Browse to a sequence or create an new one
- If you use Chrome, open the console (CTRL+SHFT+J) 
- Paste the code snipper below
- press ENTER
- Enjoy!

Code:
function loadInstruments() {
var insts=[];
for(var i=0;i<instrumentSelect.length;i++)
{
insts.push(parseInt(instrumentSelect[i].value))
}
var grp = document.createElement("optgroup");
grp.label = "Unfinished";
instrumentSelect.add(grp);
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];
grp.appendChild(opt);
var instSettings = document.createElement("div");
instSettings.innerHTML = "<div class=\"instrument_option\"><div><div id=\"instrument_lock_" + i + "\" class=\"instrument_lock btn tooltipstered\" onclick=\"lockInstrument(" + i + ")\"></div><span id=\"instrument_name_" + i + "\" onclick=\"selectInstrument(" + i + ")\">" + settings.instruments[i] + "</span><div class=\"chip instrument" + i + "\"></div></div><div class=\"row\"><input id=\"instrument_volume_" + i + "\" class=\"slider\" type=\"range\" min=\"0\" max=\"2\" step=\"0.01\" oninput=\"audioSystem.setInstrumentVolume(" + i + ", this.value)\"><div id=\"instrument_delay_" + i + "\" class=\"button tooltipstered\" onclick=\"selectDelay(" + i + ")\">D</div><div id=\"instrument_reverb_" + i + "\" class=\"button tooltipstered\" onclick=\"selectReverb(" + i + ")\">R</div></div></div>;"
document.getElementById("instrument_options").appendChild(instSettings.firstChild);
}
}
console.log("instruments loaded");
}
loadInstruments();
This is the most accurate code ive found on the Forums page! You even added its own tab in the instruments section! Noice


well syntaxstep aint becoming a thing soon ig. i'll be waiting for jonah + notey then
Reply
RuleEmpire Offline
Collab Master Eggshell
94 Posts:
 
#5
07-18-2020, 08:49 AM
https://www.youtube.com/watch?v=ytmTR9cjPIg


Reply



Users browsing this thread:   1 Guest(s)


  •  Return to Top
  •  Contact Us
  •   Home
  •  Lite mode
© Rush Crafted with ❤ by iAndrew
Powered By MyBB, © 2002-2022 MyBB Group.
Linear Mode
Threaded Mode
View a Printable Version
Subscribe to this thread
Add Poll to this thread
Send thread to a friend