I will post show the code below of what I have done so far, I have commented what I would like to do, but I just cannot seem to figure out how to do it.
Code: Select all
//Variables that will be used.
global username, password1, password2, email, gender, dob
on mouseUp
get_user_data
display_result
end mouseUp
on get_user_data
ask "What is your name?"
put it into username
ask "Please enter a password you would like to use."
put it into password1
ask "Please re-enter the same password so we can verify it"
if password1 = password2
then //jump to part in this scirpt
else answer "The passwords you entered did not match, please try again." then
//jump back up to asking for password
end get_user_data