| If you are using angelfont, you need a font with a size of about 50 px to be readable. If you don't mind qualityloss or like the pixel look, you can use the matrix commands.
 
 
 
Import mojo
Function Main:Int()
New MyApp()
Return 0
End
Class MyApp Extends App
	Method OnCreate:Int()
		SetUpdateRate(60)
		Return 0
	End Method
		
	Method OnUpdate:Int()
		Return 0
	End Method
	
	Method OnRender:Int()
		Cls()
		If not TouchDown(0)
			DrawText("Example normal (press mousebutton for the big version)", 100, 100)
		Else
			PushMatrix() 'Save the normal matrix.
			Translate(100, 100) ' move the origin to 100,100
			Scale(4.0, 4.0) ' scale everything you draw from now on by 4.
			DrawText("Example big", 0, 0)
			PopMatrix() 'Set back to the normal matrix.
		EndIf
		Return 0
	End Method
End
 
 |