Answered
I'm trying to find a way to have an if statement be case insensitive.
if (xfa.event.newText =="AF")
I would like to have the user input recognize AF,af,Af,aF
Is there a flag or option to do this? Could you include the syntax as I am a beginner as well?
Thanks
Larry
if (xfa.event.newText.toUpperCase() == "AF")