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
Pixelwaffle Offline
Member
1 Posts:
 
#1
08-12-2021, 12:06 PM
It would be helpful if we had the ability or option to delete two notes of the same duration on the same spot. Having to go through entire sections, deleting notes one by one, and restoring them if they end up not being doubled up is a pain


ᕕ( ᐛ )ᕗ
Reply
Lopyt   Away
(Banned)
2,721 Posts:
   
#2
08-12-2021, 12:21 PM
You can avoid this by using ctrl+alt+v to paste at the mouse


  • x1
    • x1
    • tbyunomi
Reply
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
ma_spaghett Offline
Member
32 Posts:
 
#4
02-22-2022, 10:22 PM (This post was last modified: 02-22-2022, 10:36 PM by ma_spaghett.)
(08-12-2021, 12:41 PM)Liam Wrote: 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.

the command didn't work anymore
EDIT: nevermind. it works but it won't work when you are importing your midi file


Reply



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