Greasy Fork is available in English.

Noteflight Tuplet Improver

allows you to make tuplets of any size in Noteflight!

Tendrás que instalar una extensión para tu navegador como Tampermonkey, Greasemonkey o Violentmonkey si quieres utilizar este script.

Necesitarás instalar una extensión como Tampermonkey o Violentmonkey para instalar este script.

Necesitarás instalar una extensión como Tampermonkey o Violentmonkey para instalar este script.

Necesitarás instalar una extensión como Tampermonkey o Userscripts para instalar este script.

Necesitará instalar una extensión como Tampermonkey para instalar este script.

Necesitarás instalar una extensión para administrar scripts de usuario si quieres instalar este script.

(Ya tengo un administrador de scripts de usuario, déjame instalarlo)

Necesitará instalar una extensión como Stylus para instalar este estilo.

Necesitará instalar una extensión como Stylus para instalar este estilo.

Necesitará instalar una extensión como Stylus para instalar este estilo.

Necesitará instalar una extensión del gestor de estilos de usuario para instalar este estilo.

Necesitará instalar una extensión del gestor de estilos de usuario para instalar este estilo.

Necesitará instalar una extensión del gestor de estilos de usuario para instalar este estilo.

(Ya tengo un administrador de estilos de usuario, déjame instalarlo)

Autor
Colton Stone
Instalaciones diarias
0
Instalaciones totales
1
Calificaciones
0 0 0
Versión
1.2.0
Creado
14/6/2025
Actualizado
18/6/2025
Tamaño
2,04 KB
Licencia
GPL-3.0-or-later
Funciona en

About

Noteflight only gives you the option to make tuplets with up to 7 notes, but if you take a look at its code, you'll notice that you can actually make tuplets of any size! I made this userscript because I didn't want to have to keep pasting code into the console every time I opened a score.

How to use

  1. Select the note or rest you want to turn into a tuplet.
  2. In the Rhythm palette, click the septuplet button.
  3. Enter the number of notes you want in the dialog that will open.
  4. Press enter or click OK.

Credits

Extra stuff

If anyone wants the original code but doesn't want to go to the comment section of the score to find the code, here it is:

nfeditor.palette().currentPalette().applyTuplet=(e) => {if (e=="septuplet") {l=prompt("Enter number of notes in tuplet: ");nfeditor.documentController.controller.createTuplet(parseInt(l));} else {nfeditor.palette().currentPalette().applyAction("tuplet",{duplet:2,triplet:3,quadruplet:4,quintuplet:5,sextuplet:6}[e])}}

But there's really no point in not going to the score because it's an amazing piece of music.

Notes

In a later version, I might add an item to either the userscript context menu, the site context menu, or both, I'm not sure yet. I might also add a new button to the palette (obviously with GM_addElement) for larger tuplets.

Changelog

  • v1.0.0 — Initial release