Hi, I was wondering if someone could help me with this?
I’ve created a quiz with 50 questions that is linked to a score page that the user can access at anytime to see which questions they have right or wrong.
this score page has 50 ticks for when the user gets the question correct.
what is need help with is trying to get an array to check if the question was correct and if so turn to tick to _alpha = 100;
once each question has been answer correctly a _global var is passed and the if statement picks it up
if (_global.quesion1 == 100){
_root.score.question1tick._alpha = 100;
}
at the minute I have it working with 50 seperate if statements which isnt a problem but I was wondering if someone knew a better way?