You can force the input to be all lowercase even if the user enters Uppercase letters. They won't even notice but it will make your life easier when you use variables. Here is how: You create the "Submit BUTTON" or whatever that pulls the read variable action. The text field where the user enters the information is called "input" in this example. What you get is called final and that is the variable that you manipulate instead of input. Add this code to your instance:
On (Release)
Set Variable: "c" = "1"
Set Variable: "final" = ""
Loop While (c<=Length (input))
Set Variable: "temp" = Substring (input,c,1)
Set Variable: "temp" = Ord (temp)
If ((temp>64) and (temp<91))
Set Variable: "temp" = temp+32
End If
Set Variable: "temp" = Chr (temp)
Set Variable: "c" = c+1
Set Variable: "final" = final & temp
End Loop
End On
It just reads the ascii number and if its is an upper case, it changes it to the lowercase
Adios
Ferhelping.
[sig]<p>Fernando Regueiro<br><a href=mailto:ferhelping@yahoo.com>ferhelping@yahoo.com</a><br><a href= > </a><br> [/sig]