Result required is whether or not a character is upper case or lower case.
A field for input, a button and field for output.
Code: Select all
on mouseUp
put field "FI" into tW
if tW="A" or tW="B" or tW="C" then ----etc
put "U" into fld "FO"
else
if tW="a" or tW="b" or tW="c" then ------etc
put "L" into field "FO"
end if
end if
end mouseUp
But I'm just curious to know why this doesn't work. Does anyone know please?