Computer Science Canada

Changing Font and Font size for entire program

Author:  matt_mcn [ Thu Nov 18, 2004 11:43 am ]
Post subject:  Changing Font and Font size for entire program

I was wondering what the command is to set a Font, Font style and Font size for all the text in my turing program from beginning to end. thansk

Author:  cool dude [ Thu Nov 18, 2004 1:34 pm ]
Post subject: 

this is how to do it.

code:

% Declare variables
var fontsize : int  % declares the name of the font

% Declare font
fontsize := Font.New ("Calisto MT:30") % change the size by changing the 30 to whatever size u want
Font.Draw ("changing the size of the font", 50, 270, fontsize, 10)
View.Update % updates the screen


: