text
Author |
Message |
12345678
|
Posted: Fri Jan 16, 2009 3:28 am Post subject: text |
|
|
How do you maek the text font bigger or smaller, |
|
|
|
|
|
Sponsor Sponsor
|
|
|
syntax_error
|
Posted: Fri Jan 16, 2009 3:53 am Post subject: RE:text |
|
|
Font.Draw |
|
|
|
|
|
12345678
|
Posted: 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 |
|
|
|
|
|
12345678
|
Posted: Fri Jan 16, 2009 4:46 am Post subject: RE:text |
|
|
i found the mistakes guys thanks |
|
|
|
|
|
copthesaint
|
Posted: 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 |
|
|
|
|
|
|
|