Answered
I've created a textfield that asks the user to enter his/her email address. Then, I have a second textfield that asks the user to verify the email address entered in the first textfield. Would someone happen to have a script, or an idea on how I can verify that what the user enters in the second textfield (verify email address) matches what was entered in the first? Any suggestions would be greatly appreciated. Thank you.
if (Email1.rawValue != Email2.rawValue)
{
app.alert("The email address does not correspond with the first email address");
};