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

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

Online Sequencer Forums › Online Sequencer › Suggestions
« Previous 1 … 42 43 44 45 46 … 51 Next »

#midiflip code

Thread tools
#midiflip code
Jacob_ Offline
Administrator
352 Posts:
 
#11
03-10-2018, 11:43 AM
Here's another one that flips the song between major/minor. Make sure you have the right key selected first since auto-detect will always detect major.

Code:
if (keySelect.selectedIndex == 0) {
   message('Select a key first');
} else {
   var inverseKeyIndex = (keySelect.selectedIndex + 12) % 24;
   var inverseKey = settings.scales[inverseKeyIndex];
   for (i = 0; i < song.notes.length; i++) {
      var note = song.notes[i];
      var octave = note.type.substring(note.type.length-1);
      var noteInverseKeyIndex = scale.indexOf(note.type.substring(0, note.type.length-1));
      if (noteInverseKeyIndex != -1) {
          song.moveNote(note, note.instrument, note.instrument, note.time, note.time, note.type, inverseKey[noteInverseKeyIndex] + octave);
          song.update(note);
      }
   }
   keySelect.selectedIndex = inverseKeyIndex;
   keySelect.onchange();
}


Reply

Messages In This Thread
#midiflip code - by HelpMe123Alt - 03-10-2018, 08:48 AM
RE: #midiflip code - by Kirbyderp - 03-10-2018, 09:23 AM
RE: #midiflip code - by HelpMe123Alt - 03-10-2018, 10:04 AM
RE: #midiflip code - by korwynkim - 03-10-2018, 10:08 AM
RE: #midiflip code - by HelpMe123Alt - 03-10-2018, 10:15 AM
RE: #midiflip code - by guest - 03-10-2018, 10:31 AM
RE: #midiflip code - by guest - 03-10-2018, 10:32 AM
RE: #midiflip code - by HelpMe123Alt - 03-10-2018, 10:41 AM
RE: #midiflip code - by Jacob_ - 03-10-2018, 11:06 AM
RE: #midiflip code - by HelpMe123Alt - 03-10-2018, 11:07 AM
RE: #midiflip code - by Jacob_ - 03-10-2018, 11:43 AM
RE: #midiflip code - by Kirbyderp - 03-10-2018, 12:11 PM
RE: #midiflip code - by Jacob_ - 03-10-2018, 12:04 PM
RE: #midiflip code - by Kirbyderp - 03-10-2018, 12:15 PM
RE: #midiflip code - by Kirbyderp - 03-10-2018, 12:40 PM
RE: #midiflip code - by Kirbyderp - 03-10-2018, 01:01 PM
RE: #midiflip code - by HelpMe123Alt - 03-10-2018, 02:46 PM



Users browsing this thread:   1 Guest(s)


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