Skip to main content
Topic: Slurred Chord (Read 2540 times) previous topic - next topic

Slurred Chord

Is there any way to slur all elements of a chord?  I have a two-note chord in bass clef in which both notes slur differently into the next chord.  How do I get both notes to have a slur connecting them?

!NoteWorthyComposerClip(2.75,Single)
|Chord|Dur:Whole,Slur|Pos:1,7
|Bar
|Chord|Dur:4th|Pos:4,6
!NoteWorthyComposerClip-End

Re: Slurred Chord

Reply #1
short answer: you don't.  The slur affects ALL elements of the chord and individual slur markings are unnecessary.

long answer: you could use layers and show the slurs separately on each layer.
I plays 'Bones, crumpets, coronets, floosgals, youfonymums 'n tubies.

Re: Slurred Chord

Reply #2
... or insert an object that draws the slur, i.e. Slur.ms.nwcuser or SlurCubic.ms.nwcuser.

Re: Slurred Chord

Reply #3
you could use layers and show the slurs separately on each layer.
Something like this:
Code: (nwc) [Select · Download]
!NoteWorthyComposer(2.751)
|AddStaff|Name:"Staff"
|StaffProperties|EndingBar:Open (hidden)|WithNextStaff:Layer
|Chord|Dur:Whole,Slur|Pos:1,7
|Bar
|Chord|Dur:4th|Pos:4,6
|AddStaff|Name:"Staff-1"
|StaffProperties|EndingBar:Open (hidden)
|StaffProperties|Volume:-1|StereoPan:-1
|Chord|Dur:Whole,Slur|Pos:1,7|Opts:Stem=Up,Muted
|Bar
|Chord|Dur:4th|Pos:4,6|Opts:Muted
!NoteWorthyComposer-End
Registered user since 1996

 

Re: Slurred Chord

Reply #4
Something like this:
Code: (nwc) [Select · Download]
!NoteWorthyComposer(2.751)
|AddStaff|Name:"Staff"
|StaffProperties|EndingBar:Open (hidden)|WithNextStaff:Layer
|Chord|Dur:Whole,Slur|Pos:1,7
|Bar
|Chord|Dur:4th|Pos:4,6
|AddStaff|Name:"Staff-1"
|StaffProperties|EndingBar:Open (hidden)
|StaffProperties|Volume:-1|StereoPan:-1
|Chord|Dur:Whole,Slur|Pos:1,7|Opts:Stem=Up,Muted
|Bar
|Chord|Dur:4th|Pos:4,6|Opts:Muted
!NoteWorthyComposer-End

Oh, I see!  Have never used layers before; I see it's something to play with!  Just easier/clearer for singing tenor and bass notes if the slur appears for both notes.  Thanks!