Skip to main content
Topic: Changing the Font Size (Read 1903 times) previous topic - next topic

Changing the Font Size

If you try to change the font size of, say, the lyrics you can only enter whole numbers, but if NW scales the sizes after a staff metric change then they appear as decimal figures. Can the input be changed to allow decimal figures anyway?

And getting rid of the decimal is tricky. You can't change 9.67 to 9 or 10 by clicking on those values. You have to click on some other number, close the font window, then reopen it and change the size to the required value. Somewhat tedious.

Re: Changing the Font Size

Reply #1
... yes, this is one of the weirdest features of NWC.

A simple way to end up with font size ##.# (you dont need more than one decimal place, I assume) is: Say your "Staff Metrics" should be $$. Now, set it to $$0 (i.e., tenfold size; works up to 200), and set the respective font size to ### (without decimal point). Then, reduce the "Staff Metrics" to $$; the respective font size will then be ##.#.

Yet, strange.

H.M.

Re: Changing the Font Size

Reply #2
I seem to recall some discussion (perhaps in one of the "back stage" forums) about this. The "Modify..." button opens a standard Windows font selector dialog, which only allows whole numbers to be entered/chosen for the point size. But as others have noted, NWC will now store (and use) a fractional point size. But the only way to enter them for now is using the method @hmmueller describes.

Perhaps a future NWC version will include a custom font dialog that allows fractional point sizes to be entered.

Re: Changing the Font Size

Reply #3
There is not much to be gained with fractional font sizes:
Code: (nwc) [Select · Download]
!NoteWorthyComposer(2.751)
|Font|Style:User1|Size:19|CharSet:1
|Font|Style:User2|Size:19.4|CharSet:1
|Font|Style:User3|Size:19.5|CharSet:1
|Font|Style:User4|Size:19.9|CharSet:1
|Font|Style:User5|Size:20|CharSet:1
|Font|Style:User6|Size:20.1|CharSet:1
|AddStaff|Name:"Staff"
|StaffProperties|EndingBar:Open (hidden)
|Text|Text:"1"|Font:User1|Pos:8|Wide:Y
|Text|Text:"2"|Font:User2|Pos:8|Wide:Y
|Text|Text:"3"|Font:User3|Pos:8|Wide:Y
|Text|Text:"4"|Font:User4|Pos:8|Wide:Y
|Text|Text:"5"|Font:User5|Pos:8|Wide:Y
|Text|Text:"6"|Font:User6|Pos:8|Wide:Y
!NoteWorthyComposer-End
IMO, this approach is better:
Code: (nwc) [Select · Download]
!NoteWorthyComposer(2.751)
|Font|Style:User1|Size:20|CharSet:1
|Font|Style:User2|Size:21|CharSet:1
|AddStaff|Name:"Staff"
|StaffProperties|EndingBar:Open (hidden)
|Text|Text:"7"|Font:User2|Pos:8|Wide:Y
|Text|Text:"1"|Font:User1|Scale:101|Pos:8|Wide:Y
|Text|Text:"2"|Font:User1|Scale:102|Pos:8|Wide:Y
|Text|Text:"3"|Font:User1|Scale:103|Pos:8|Wide:Y
|Text|Text:"4"|Font:User1|Scale:104|Pos:8|Wide:Y
|Text|Text:"5"|Font:User1|Scale:105|Pos:8|Wide:Y
|Text|Text:"6"|Font:User1|Scale:106|Pos:8|Wide:Y
|Text|Text:"7"|Font:User2|Pos:8|Wide:Y
!NoteWorthyComposer-End
Registered user since 1996

 

Re: Changing the Font Size

Reply #4
I was thinking along the same lines as Rick. What seems more useful to me isn't fractional font sizes, but percentage scaling, as we already have for text objects. That should be a relatively easy addition to the dialog box for lyric configuration. Perhaps we'll see it during this beta cycle.