Thanks BLiZZaRD, but for the past few days I've struggled to understand and get my head around the link you posted but I will continue to keep trying.
However, through trial and error I've come about another way of doing my 'three' items list (multiline) input field (I used 3 separate single line input boxes) and then all to be checked by the submit button whether they're correct or not. I just happened to try '&&' in my code to see what it would do...
Code:
tick_mc._x = 274.5;
tick_mc._y = 142.5;
tick_mc._visible = false;
cross_mc._x = 274.5;
cross_mc._y = 142.5;
cross_mc._visible = false;
//
stop();
//
submit_btn.onRelease = function() {
if
(wordinput1_txt.text == "Blue" && wordinput2_txt.text == "Chair" && wordinput3_txt.text == "Two")
{
tick_mc._visible = true;
cross_mc._visible = false;
}else{
tick_mc._visible = false;
cross_mc._visible = true;
}
};
It may seem bit of a fudge but it works... and will do for now.
Bookmarks