Question
Compare two word
I need to compare two word in two different text.
I use the "if" condition, for exemple:
if (MytextA == MytextB)
{
trace("==");
}
else
{
trace("!=");
}
But I suppose == and !== is a wrong method for text and my purpose.
Can you help me?
Thank you.
