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 … 21 22 23 24 25 … 48 Next »

Ability to delete doubled up notes

Thread tools
Ability to delete doubled up notes
Liam Offline
Code Monkey
246 Posts:
 
#3
08-12-2021, 12:41 PM
You can do that already, using console commands. Open up the console (ctrl+shift+J) on chrome, then select the notes you want to dedupe, then run this code:

let s = new Set(); let t = new Set(); for (const n of selection.notes) { let k = n.toString(0); if (t.has(k)) { s.add(n); } else { t.add(k); }}; selectNotesIf(n => s.has(n) );

That code will select the duped notes, so then you can delete them or whatever you want.


https://tiusic.com

https://www.youtube.com/playlist?list=PL...v872SZVXzI
Reply

Messages In This Thread
Ability to delete doubled up notes - by Pixelwaffle - 08-12-2021, 12:06 PM
RE: Ability to delete doubled up notes - by Lopyt - 08-12-2021, 12:21 PM
RE: Ability to delete doubled up notes - by Liam - 08-12-2021, 12:41 PM
RE: Ability to delete doubled up notes - by ma_spaghett - 02-22-2022, 10:22 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-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