Online Sequencer Make music online
  • Sequences
  • Members
  • Chat
  • Forum
  • Wiki

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

Online Sequencer Forums › Off Topic › General Music Composition
« Previous 1 … 9 10 11 12 13 Next »

Want to BETA TEST new instruments?

Thread tools
Want to BETA TEST new instruments?
act55555 Offline
Member
27 Posts:
 
#22
03-09-2019, 10:48 AM (This post was last modified: 03-09-2019, 11:02 AM by act55555.)
(06-10-2018, 08:27 AM)Frank Wrote:
Code:
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);
  }
}



Slight modification to the above. Now includes the instrument ID enclosed in parenthesis after the instrument name. Saves you the trouble of guessing what instrument id to use with audioSystem.setReverb(<instrumentID>, <value>), audioSystem.setDelay(<instrumentID>, <value>), and audioSystem.setInstrumentVolume(<instrumentID>, <value>):

Code:
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].concat(' (', String(i), ') ');
    instrumentSelect.add(opt);
  }
}


Check Out My Stuff
Reply

Messages In This Thread
Want to BETA TEST new instruments? - by Frank - 06-01-2018, 01:49 PM
RE: Want to BETA TEST new instruments? - by Kirbyderp - 06-01-2018, 01:54 PM
RE: Want to BETA TEST new instruments? - by guest - 06-05-2018, 07:12 PM
RE: Want to BETA TEST new instruments? - by guest - 06-05-2018, 07:48 PM
RE: Want to BETA TEST new instruments? - by Frank - 06-06-2018, 07:08 AM
RE: Want to BETA TEST new instruments? - by Sosasees - 07-16-2018, 07:18 AM
RE: Want to BETA TEST new instruments? - by Frank - 07-17-2018, 11:12 AM
RE: Want to BETA TEST new instruments? - by Frank - 06-10-2018, 08:27 AM
RE: Want to BETA TEST new instruments? - by act55555 - 03-09-2019, 10:48 AM
RE: Want to BETA TEST new instruments? - by guest - 06-11-2018, 06:48 PM
RE: Want to BETA TEST new instruments? - by Frank - 06-12-2018, 10:39 AM
RE: Want to BETA TEST new instruments? - by guest - 06-14-2018, 09:25 AM
RE: Want to BETA TEST new instruments? - by Frank - 06-14-2018, 12:56 PM
RE: Want to BETA TEST new instruments? - by guest - 06-15-2018, 09:32 AM
RE: Want to BETA TEST new instruments? - by Frank - 06-15-2018, 09:50 AM
RE: Want to BETA TEST new instruments? - by Frank - 06-15-2018, 09:57 AM
RE: Want to BETA TEST new instruments? - by guest - 06-16-2018, 08:48 AM
RE: Want to BETA TEST new instruments? - by Setherdo21 - 07-06-2018, 03:20 PM
RE: Want to BETA TEST new instruments? - by SIZE - 01-17-2019, 03:13 AM
RE: Want to BETA TEST new instruments? - by LucentTear - 01-17-2019, 04:30 AM
RE: Want to BETA TEST new instruments? - by JoelTheGreat - 02-05-2019, 06:22 AM
RE: Want to BETA TEST new instruments? - by JoelTheGreat - 02-05-2019, 07:37 AM



Users browsing this thread:   1 Guest(s)


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