# Need help with a flash quiz

**URL:** https://forum.kirupa.com/t/need-help-with-a-flash-quiz/128500
**Category:** Uncategorized
**Created:** [November 13, 2004, 3:08am UTC](https://forum.kirupa.com/t/need-help-with-a-flash-quiz/128500 "2004-11-13T03:08:58Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![chu\_chin](https://avatars.discourse-cdn.com/v4/letter/c/e9a140/32.png) [@chu\_chin](https://forum.kirupa.com/u/chu_chin)
#### Post date: [November 13, 2004, 3:08am UTC](https://forum.kirupa.com/t/need-help-with-a-flash-quiz/128500/1 "2004-11-13T03:08:58Z")

</div>

Hi everybody:  
I’m a scripting newbie stuck with this flash quiz. The sequence goes somewhat like this. A question has a true or false answer; if they choose true, it goes to q2; if they choose false, it goes to q3 …etc. At the end, depending on the route, it lead to different results.

## Here’s how I started…

qcheck = 0;  
yes = 0;  
no = 0;

function startQuiz(){  
no = 0;  
if (qcheck == 0) {  
question.text = “Find Out your body type.”;  
placeholder.loadMovie("");  
}else {  
if (qcheck == 1) {  
question.text = “Do you immediately sit down after you ate?”;  
placeholder.loadMovie(“mc1”);  
if (yes == 1){  
qcheck=  
}else if (…){

}  
}

God bless anyone who can help me.
