Flash quiz game
Hi
I'm making a flash quiz game like instructed in this tutorial. http://www.tu-world.com/flash/flash_tutorial_08.php
After anwsering, it goes to the next frame, really simple. How is it possible that a anwser would be 50% correct?
Write actionscript for every button:
on (release){
gotoAndPlay("02");
}
For RIGHT answer write:
on (release){
gotoAndPlay("02");
score++;
}
Last frame AS percent=score/4*100 + "%";
Best regards
Ekri
