Skip to main content
Recent Posts
25
Object Plugins / Re: User object for lyric-dependent ties?
Last post by Flurmy -
To begin with: I completely overlooked those functions. Thank you for having put them in evidence.
But I doubt those functions can be of any help.
SeenFirstEnding simply memorizes if NWC met an Ending after a MasterRepeatOpen while Ending1Context, as the name suggest, contains the play context at the moment NWC met the Ending 1.
27
Avant-garde / Re: Windows Copilot may help faster than searcing the forums for help .
Last post by David Palmquist -
Regardless of its lousy wording,  Copilot was telling me the Db part was written half a tone below a C part.
I read
Quote
Since D-flat is one semitone below C, you need to transpose the staff up by 1 semitone.
as
Quote
Since a D-flat part is one semitone below a C part, you need to transpose the Db instrument up a 1 semitone for a C instrument.

So that's what I did.  The Db Picc in G major needed to become C Picc in Ab major.  The result jibed with a C Flute part someone manually transposed in the distant past.  The key signature also matched the bass clef parts.

I played this piece on 3rd clarinet in concert around 60 years ago, when I had only been playing maybe a year.   The 2nd and 3rd parts shared a march size page and lots of the notes were above the staff, then around the upper end of my range.  A few notes went into the altissimo. .  This was my first ever concert, I think we filled our 500 or 700 seat theatre.  I was terrified.   It's funny, that was our junior band; the senior bandleader was my clarinet teacher.  He's still alive and will be 104 this month.

I recently found a full set of PDF parts and thought I'd like to hear how the music sounds with a more experienced band.  One of my current bandleaders agreed to take it on if I print it all out.   The instrumentation is from the turn of the century, so some parts need to be transposed for modern band instruments.  I'm too cheap to buy the commercial arrangements that are available; I suspect they've been dumbed down a little.

28
General Discussion / Re: Scriptorium Update
Last post by Richard Woodroffe -
Folks
The Scriptorium has been updated with works submitted by :

Richard Woodroffe    D737 Opus 56 No.2 An die Leier   (Schubert)
Maurizio Spagni   Ständchen - n. 1 from "Drei leichte stücke" Op. 29   (Poenitz)  (Updated)
Maurizio Spagni   Die Spieldose (Music box) - n. 2 (Humoreske) from "Drei leichte stücke" Op. 29   (Poenitz)   (Updated)
Maurizio Spagni   Wiegenliedchen - n. 3 from "Drei leichte stücke" Op. 29   (Poenitz)   (Updated)

If you would like to be notified every time the Scriptorium is updated, please send an e-mail  requesting Scriptorium Update    notification to nwcscriptorium "at" gmail "dot" com

https://nwc-scriptorium.org/whatsnew.html

Stay safe 

Richard
30
Object Plugins / User object for lyric-dependent ties?
Last post by Opagust -
As a choral singer, I export the songs from nwc to midi and play them while following on the printed score. But consider the following:

As you can see in the attachment, there are 2 tied notes in the beginning of the measure 4. That's OK for the first 2 verses, but not for the third one, where we have 2 syllables.
On the original score this is indicated with a dashed tie, but in NWC this causes a problem when you want to play the song or export to midi. Wit a real tie, the third verse isn't played correctly, when removing the tie and inserting a dashed slur.ms object, the first two verses aren't played as they should.

I managed to solve this problem as you can see in the second attachment and the code snippet below. But it's a lot of manual work.
I'm considering to write a user tool to achieve this, but I think it would need complicated logic to make it user friendly.

So I was wondering if it could be solved with a new user object?
(I'm not experienced enough with making user object plugins).
The tie should be manually be removed and the object be inserted before the first note.
I think  could work as follows:

- input:
 ° span: number of tied notes
 ° verse numbers where the tie should be active
- actions of the plugin:
 ° draw a dashed tie
 ° play one longer note for the indicated verses
 ° play the notes as if not tied, for the other verses.


Code: [Select · Download]
!NoteWorthyComposerClip(2.751,Single)
|Ending|Endings:1,2|Visibility:Never
|Note|Dur:8th,Dotted|Pos:-3^|Opts:Stem=Up,Lyric=Never,Beam=First|Visibility:Never
|Note|Dur:16th|Pos:-3|Opts:Stem=Up,Lyric=Never,Beam|Visibility:Never
|Note|Dur:8th|Pos:-3|Opts:Stem=Up,Lyric=Never,Beam=End|Visibility:Never
|Ending|Endings:3|Visibility:Never
|User|Slur.ms|Pos:-3|Pen:dash
|Note|Dur:8th,Dotted|Pos:-3|Opts:Stem=Up,Beam=First
|Note|Dur:16th|Pos:-3|Opts:Stem=Up,Beam
|Note|Dur:8th|Pos:-3|Opts:Stem=Up,Beam=End
|Ending|Endings:1,2,3|Visibility:Never
|Note|Dur:8th,Slur|Pos:-4|Opts:Stem=Up,Diminuendo,Lyric=Always,Beam=First
|Note|Dur:8th|Pos:-5|Opts:Stem=Up,Diminuendo,Lyric=Always,Beam
|Note|Dur:8th|Pos:-4|Opts:Stem=Up,Lyric=Always,Beam=End
!NoteWorthyComposerClip-End