Thread: Calendar
View Single Post
2. The font sizes are set in the "preferences" at the top of the script:

Code:
property kTitleTextSize : 24
property kHeaderTextSize : 18
property kNormalTextSize : 12
To change the font used in the cells, add font:"your font name here", to the text:{} syntax, throughout the script. E.g.
Code:
text:{font:"Gill Sans", size:kHeaderTextSize, alignment:right, text:myDayCounter + 1 as string}

Last edited by JKT; 2007-02-24 at 03:43 PM..