home *** CD-ROM | disk | FTP | other *** search
- on makelowercase checkthisword
- repeat with g = 1 to the number of chars in checkthisword
- if (charToNum(char g of checkthisword) > 64) and (charToNum(char g of checkthisword) < 91) then
- set currentasciivalue to charToNum(char g of checkthisword)
- set currentasciivalue to currentasciivalue + 32
- put numToChar(currentasciivalue) into char g of checkthisword
- end if
- end repeat
- return checkthisword
- end
-