[ACTIONSCRIPT]: quick question
i have this sort of quiz thing with multiple choise.
when you click one of the 3 choices i have a code:
Code:
resultaat1 = "juist";
meaning result = "correct"; but in dutch.
now to do something later on with it, i need to check the awsners of all my questions so i have this on the top frame:
Quote:
function bereken(){
if(resultaat1 == "juist" && resultaat2 == "juist"){
do something
}
}
is this correct ? should i use && or || ?
anyway all i know is, it's not working for me :p