Setvirtualresolution(640,480)
SetPrintSize(20)
ResetTimer()
text$="This Text Can Be Converted To Lower Case"
low$=Lower(text$)
Repeat
Print (text$)
Print ("")
//use this method if you want to reuse the lowercase version
Print (low$)
//use this method if you just want to display in lowercase
Print (Lower(text$))
Sync()
Until Timer()>15
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 Lower Case" low$=Lower(text$) Repeat Print (text$) Print ("") //use this method if you want to reuse the lowercase version Print (low$) //use this method if you just want to display in lowercase Print (Lower(text$)) Sync() Until Timer()>15