
-----------------------------------
12345678
Fri Jan 16, 2009 3:28 am

text
-----------------------------------
How do you maek the text font bigger or smaller,

-----------------------------------
syntax_error
Fri Jan 16, 2009 3:53 am

RE:text
-----------------------------------
Font.Draw

-----------------------------------
12345678
Fri Jan 16, 2009 3:57 am

RE:text
-----------------------------------
Font.Draw (20,25,20,25, 6)
put""
put "                           1234564"

it says  argument is the wrong type

what am i doing wrong

-----------------------------------
12345678
Fri Jan 16, 2009 4:46 am

RE:text
-----------------------------------
i found the mistakes guys thanks

-----------------------------------
copthesaint
Fri Jan 16, 2009 10:05 am

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
