NoteWorthy Composer Forum

Forums => General Discussion => Topic started by: fathafluff on 2011-03-11 12:58 am

Title: FLow direction question
Post by: fathafluff on 2011-03-11 12:58 am
I have a song with 3 verses and a refrain. I want it to play V1, V2, R, V3, R. The attached file plays V1, V2, R, V3, R, V3. Can someone please explain why V3 plays again. After V1, V2, R the final repeat returns to the beginning (Section Repeat Open), the third ending is taken as expected. When it gets to the final repeat the second time, why doesn't it stop? Do I need to use a DC or DS? The way I have it sems more intuitive.

Edit. changed attachment. Actually plays as I said, except thet the second V3 stops before either ending.
Title: Re: FLow direction question
Post by: Rick G. on 2011-03-11 01:40 am
AABAB
Code: (nwc) [Select · Download]
!NoteWorthyComposerClip(2.0,Single)
|Clef|Type:Treble
|Key|Signature:C|Visibility:Never
|TimeSig|Signature:2/4
|Note|Dur:Half|Pos:-1
|Bar|Style:MasterRepeatClose
|Note|Dur:Half|Pos:0
|Flow|Style:DaCapo|Pos:8|Justify:Right|Placement:AtNextNote|Visibility:Never
|Bar|Style:SectionClose
!NoteWorthyComposerClip-End
Title: Re: FLow direction question
Post by: fathafluff on 2011-03-11 01:48 am
Sorry, I edited this while you were replying. A few questions: Why does the DC in your file not honor the repeat the second time? And what if you actually wanted it to play AABAAB. But really, why does mine take the final repeat a second time. I suppose it stops short becaues there is no fourth ending.
Title: Re: FLow direction question
Post by: Rick G. on 2011-03-11 02:02 am
Why does the DC in your file not honor the repeat the second time?
Quote from: http://www.noteworthysoftware.com/nwc2/help/MNU_ADDFLOWDIRECTION.htm
These instructions are all considered to be Da capo, or D.C., instructions. When encountered, playback will be redirected back to the beginning of the song. After this instruction, all master repeats will be ignored

what if you actually wanted it to play AABAAB
Code: (nwc) [Select · Download]
!NoteWorthyComposerClip(2.0,Single)
|Clef|Type:Treble
|Key|Signature:C|Visibility:Never
|TimeSig|Signature:2/4
|Note|Dur:Half|Pos:-1
|Bar|Style:LocalRepeatClose|Repeat:2
|Note|Dur:Half|Pos:0
|Bar|Style:MasterRepeatClose
!NoteWorthyComposerClip-End

why does mine take the final repeat a second time.
Beats me. I do not recommend an Ending Bar of anything other than 'Open(hidden)' in General Staff Properties (http://ntworthy.com/nwc2/help/TAB_STAFFPROPGENERAL.htm)
Title: Re: FLow direction question
Post by: Lawrie Pardy on 2011-03-11 02:10 am
But really, why does mine take the final repeat a second time.
That would be because the ending barline (the MRC) is still part of the 3rd ending.

Try pasting this as the last object:
Code: [Select · Download]
|Ending|Endings:2|Color:0|Visibility:Never
Title: Re: FLow direction question
Post by: Rick G. on 2011-03-11 02:19 am
This also works for AABAAB. You may find it a bit more logical.
Code: (nwc) [Select · Download]
!NoteWorthyComposerClip(2.0,Single)
|Clef|Type:Treble
|Key|Signature:C|Visibility:Never
|TimeSig|Signature:2/4
|Note|Dur:Half|Pos:-1
|Ending|Endings:1,3|Visibility:Never
|Bar|Style:MasterRepeatClose
|Note|Dur:Half|Pos:0
|Ending|Endings:2|Visibility:Never
|Bar|Style:MasterRepeatClose
!NoteWorthyComposerClip-End
Title: Re: FLow direction question
Post by: fathafluff on 2011-03-11 04:00 am
Thanks to all. I think I understand. And thanks Lawrie, I never would have thought of the hidden second special ending (2.) within ending (2.3.).