Setvirtualresolution(640,480)
SetPrintSize(20)
ResetTimer()
text$="This text can be converted to upper case"
up$=Upper(text$)
Repeat
Print (text$)
Print ("")
//use this method if you want to reuse the uppercase version
Print (up$)
//use this method if you just want to display in uppercase
Print (Upper(text$))
Sync()
Until Timer()>15
End
Help make AGK better by submitting an example for this command! (All examples are subject to approval)
Setvirtualresolution(640,480) SetPrintSize(20) ResetTimer() text$="This text can be converted to upper case" up$=Upper(text$) Repeat Print (text$) Print ("") //use this method if you want to reuse the uppercase version Print (up$) //use this method if you just want to display in uppercase Print (Upper(text$)) Sync() Until Timer()>15 End