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 … 36 37 38 39 40 … 48 Next »

3/4 Time Signature

Thread tools
3/4 Time Signature
dfhwze Offline
Member
41 Posts:
 
#8
03-15-2019, 11:04 AM
some presets

Code:
var note_lengths = [64, 32, 16, 8, 4, 2, 1, 0.5, 0.25];
var note_symbols = ["16", "8", "4", "2", "1", "1/2", "1/4", "1/8", "1/16"];
var tuplets = [3, 5, 7, 11];
var tuplet_names = ["triplet", "quintuplet", "septuplet", "undecatuplet"];
while (grid_select.firstChild) {
   grid_select.removeChild(grid_select.firstChild);
}
for (var i = 0; i < note_lengths.length; i++) {
   var nl = note_lengths[i];
   var ns = note_symbols[i];
   var opt = document.createElement("option"); opt.value = 1/nl; opt.text = ns;  grid_select.add(opt);
   for (var j = 0; j < tuplets.length; j++) {
    var t = tuplets[j];
    var tn = tuplet_names[j];
    var opt1 = document.createElement("option"); opt1.value = t/(nl*2); opt1.text = ns + "(" + tn + ")";  grid_select.add(opt1);
   }
}


Reply

Messages In This Thread
3/4 Time Signature - by Ullemann123 - 09-13-2018, 01:24 AM
RE: 3/4 Time Signature - by Tests - 09-13-2018, 02:23 AM
RE: 3/4 Time Signature - by Ullemann123 - 09-13-2018, 02:43 AM
RE: 3/4 Time Signature - by Frank - 09-14-2018, 04:38 PM
RE: 3/4 Time Signature - by ds treats - 09-13-2018, 03:50 AM
RE: 3/4 Time Signature - by guest - 09-14-2018, 04:44 PM
RE: 3/4 Time Signature - by Atreyu92 - 02-01-2019, 09:14 AM
RE: 3/4 Time Signature - by dfhwze - 03-15-2019, 11:04 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