Skip to main content
Topic: question on repeats (Read 3056 times) previous topic - next topic

question on repeats

i want to repeat a section inside a section 4 times but repeat the entire section twice, how do i do that?

Re: question on repeats

Reply #1
This will repeat section "B" 4 times each time, and the entire staff twice.
Quote
!NoteWorthyComposerClip(2.0,Single)
|Clef|Type:Treble
|Key|Signature:C
|TimeSig|Signature:2/4
|Note|Dur:Half|Pos:-1
|Bar|Style:LocalRepeatOpen
|Note|Dur:Half|Pos:0
|Bar|Style:LocalRepeatClose|Repeat:4
|Note|Dur:Half|Pos:1
|Bar|Style:MasterRepeatClose
!NoteWorthyComposerClip-End
See the next thread if section "B" needs a special ending for some of its iterations.
Registered user since 1996

Re: question on repeats

Reply #2
A;ternatively
Quote
!NoteWorthyComposerClip(2.0,Single)
|Bar|Style:LocalRepeatOpen|Visibility:Never
|Clef|Type:Treble
|TimeSig|Signature:4/4
|Note|Dur:4th|Pos:1
|Note|Dur:4th|Pos:0
|Note|Dur:4th|Pos:-1
|Note|Dur:4th|Pos:0
|Bar|Style:MasterRepeatOpen
|Note|Dur:Whole|Pos:1
|Bar
|Ending|Endings:1,2,3
|Note|Dur:Whole|Pos:4
|Bar|Style:MasterRepeatClose
|Ending|Endings:4
|Note|Dur:Whole|Pos:3
|Bar
|Note|Dur:Whole|Pos:1
|Bar|Style:LocalRepeatClose|Repeat:2
!NoteWorthyComposerClip-End
may give you more flexibility.

 

Re: question on repeats

Reply #3
nvrmd figured it out