Code: Select all
put "`~!@#$%^&*()_-+=}{][|\<,>.?/" into tList175
if any char of tList175 is not in the text of field "RegisterPassword" then
answer "Please add a special character to your Password", "eg.`~!@#$%^&*()_-+=}{][|\<,>.?/"
put false into tPassCheck -- This means the password does not contain special characters
else
put true into tPassCheck
Code: Select all
on mouseUp
put "`~!@#$%^&*()_-+=}{][|\<,>.?/" into tList175
--if any char of tList175 is not in t1 then
if field "HELLO" contains any char of tList175 then
put it into t2
answer t2
else
answer "NOPE"
end if
end mouseUp