NoteWorthy Composer Forum

Forums => General Discussion => Topic started by: Rick G. on 2006-05-31 07:38 PM

Title: Slur visibilty problem (Beta 1 Ver 2)
Post by: Rick G. on 2006-05-31 07:38 PM
It seems right that slurs inhert their visibilty from their starting note/rest, but why should they also inherit visibility from the first note after a system break? This causes a different result depending on page flow. IMHO, this should be corrected.
Code: [Select · Download]
!NoteWorthyComposerClip(2.0,Single)
|Rest|Dur:Whole
|Bar
|Rest|Dur:Whole
|Bar
|Rest|Dur:Whole
|Bar
|Note|Dur:Whole,Slur|Pos:0
|Bar|SysBreak:Y
|Note|Dur:Whole,Slur|Pos:0|Visibility:Never
|Bar
|Note|Dur:Whole,Slur|Pos:0
|Bar
|Note|Dur:Whole|Pos:0
!NoteWorthyComposerClip-End
The slur is invisible on the second line but, if you change the SysBreak to the next Bar, the slur appears.
Title: Re: Slur visibilty problem (Beta 1 Ver 2)
Post by: Carl Mill on 2006-06-01 12:03 AM
It appears that the problem is due to the second note's visibility being set to "Never".  The slur carries over to the second line when the note visibility is set to "Default" or "Always".

Code: [Select · Download]
!NoteWorthyComposerClip(2.0,Single)
|Rest|Dur:Whole
|Bar
|Rest|Dur:Whole
|Bar
|Rest|Dur:Whole
|Bar
|Note|Dur:Whole,Slur|Pos:0
|Bar|SysBreak:Y
|Note|Dur:Whole,Slur|Pos:0
|Bar
|Note|Dur:Whole,Slur|Pos:0
|Bar
|Note|Dur:Whole|Pos:0
!NoteWorthyComposerClip-End
Title: Re: Slur visibilty problem (Beta 1 Ver 2)
Post by: Rick G. on 2006-06-01 06:21 AM
obvously.