Skip to main content
Topic: slurs (Read 2003 times) previous topic - next topic

slurs

I want to create a song which has a note in verse #1 contains 1 syllable and in verse #2 contains 2 syllables (two notes of a half duration).
The notes should be slurred "eventually", but I do not know how to do that.
Who can help me?

Regards,
Guido van Harten
(my apologize for the bad explanation).

 

Re: slurs

Reply #1
I want to create a song which has a note in verse #1 contains 1 syllable and in verse #2 contains 2 syllables (two notes of a half duration).
The notes should be slurred "eventually", but I do not know how to do that.
Who can help me?

Regards,
Guido van Harten
(my apologize for the bad explanation).
This can be done by using the Slur.ms object, using the "dash" option to indicate that the slur does not occur for all verses. In the lyrics, put a "_" character for the second syllable in the verse that has only one syllable. Note that custom objects require NWC version 2.75.

Here is an example:
Code: (nwc) [Select · Download]
!NoteWorthyComposer(2.75)
|AddStaff|Name:"Staff"|Group:"Standard"
|StaffProperties|EndingBar:Section Close|Visible:Y|BoundaryTop:12|BoundaryBottom:20|Lines:5|Color:Default
|StaffProperties|Muted:N|Volume:127|StereoPan:64|Device:0|Channel:1
|StaffInstrument|Trans:0|DynVel:10,30,45,60,75,92,108,127
|Lyrics|Placement:Bottom|Align:Standard Rules|Offset:0
|Lyric1|Text:"Just three _ words\n"
|Lyric2|Text:"There are four words\n"
|Clef|Type:Treble
|TimeSig|Signature:4/4
|Note|Dur:4th|Pos:-6
|User|Slur.ms|Pos:1|Pen:dash
|Note|Dur:4th|Pos:-4
|Note|Dur:4th|Pos:-2
|Note|Dur:4th|Pos:1
!NoteWorthyComposer-End

Mike