Skip to main content
Topic: Request for a grace note tool (Read 2425 times) previous topic - next topic

Request for a grace note tool

In the attached snippet (711a), the grace notes take time from the quarter note in the 2nd beat, sounding like the measure in the middle staff (although the grace notes sound faster in the top staff), but what I would like is the bottom staff.

As an experiment I put the three measures on the same staff, exported to midi, and imported them back (711b).  The 16th grace notes had turned into 32nds. How does this work?

If anyone has or is working on a tool that can change the top staff to the bottom, please let me know before I try to tackle this.

TIA
Since 1998

Re: Request for a grace note tool

Reply #1
what I would like is the bottom staff.
Code: (nwc) [Select · Download]
!NoteWorthyComposerClip(2.5,Single)
|Clef|Type:Treble
|RestChord|Dur:8th|Opts:Stem=Down,HideRest|Dur2:4th|Pos2:-2
|Note|Dur:16th|Pos:-6^|Opts:Stem=Up,Beam=First|Visibility:Never
|Note|Dur:16th|Pos:-4^|Opts:Stem=Up,Beam=End|Visibility:Never
|Note|Dur:16th,Grace|Pos:-6^|Opts:Stem=Up,Beam=First,Muted
|Note|Dur:16th,Grace|Pos:-4^|Opts:Stem=Up,Beam=End,Muted
|Chord|Dur:4th|Pos:-6,-4,-2
|Note|Dur:4th|Pos:-2
|Note|Dur:4th|Pos:-2
!NoteWorthyComposerClip-End
Registered user since 1996

Re: Request for a grace note tool

Reply #2
Since I often write for harp, very often I need that kind of arpeggio but, as far as I know, there's no other way than to write it explicitly, possibly in a hidden staff.

About the grace notes duration, as a base take that each note is a 32nd, no matter which is the duration shown.
Of course you can always tie more notes so as to reach the desired duration.

There is a couple of problems (or maybe more ;-).
If the tempo is slow, an arpeggio of 32nd can be too slow.
If the number of grace notes times 1/32 exceeds the non grace note duration, then odd things happen.

Then there is the matter of the grace rests, and this is a mess.
I'll leave it to some master, like the one who taught me. ;-)

P.S. While I was typing I saw Rick's answer.
He's incredible indeed!

 

Re: Request for a grace note tool

Reply #3
Thank you, gentlemen!  I already have functions in JavaScript that can convert the nwctxt Dur (like Dur:16th,Dotted) to the equivalent number of 768th notes and back if need be, but messing with the last note of the previous bar could get tricky.

Flurmy, that observation of 32nd notes for grace makes sense.  Thanks.
Since 1998