Computer Science Canada

text

Author:  12345678 [ Fri Jan 16, 2009 3:28 am ]
Post subject:  text

How do you maek the text font bigger or smaller,

Author:  syntax_error [ Fri Jan 16, 2009 3:53 am ]
Post subject:  RE:text

Font.Draw

Author:  12345678 [ Fri Jan 16, 2009 3:57 am ]
Post subject:  RE:text

Font.Draw (20,25,20,25, 6)
put""
put " 1234564"

it says argument is the wrong type

what am i doing wrong

Author:  12345678 [ Fri Jan 16, 2009 4:46 am ]
Post subject:  RE:text

i found the mistakes guys thanks

Author:  copthesaint [ Fri Jan 16, 2009 10:05 am ]
Post subject:  Re: text

First off you can't just use font.draw without declairing the font it's self

Here is an example

var fnt1 := Font.New ("Ariel:12x7")
loop
Font.Draw ("Hello", maxx div 3, maxy div 4 * 3, fnt1, black)
View.Update
delay (10)
cls
end loop


: