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
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.
... or insert an object that draws the slur, i.e. Slur.ms.nwcuser or SlurCubic.ms.nwcuser.
Something like this:
!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!