(AGK version: 108.13)
Submitted: 2013-06-17 14:56:53
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)
Login to post an example of your own.