In this tut, you will be learning how to make a multiple choice quiz game. It has 15 steps, but it is easy.
1. Open Flash. (Make sure it is AS 2.0)
2. Make 12 keyframes for a 10 question quiz. Put stop(); in all 12 keyframes.
3. Make a start menu. Like this:
[SWF="http://www.imageaddicts.net/uploads/Main_Menu.swf height=400 width=550"]http://www.imageaddicts.net/uploads/Main_Menu.swf[/SWF]
4. Convert the text play into a symbol. Make sure it is a button. Name it Play.
5. Copy and paste this code on the play button:
on(release){gotoAndPlay(2);}
6. Go to frame two and make a question like "What is the capital of Iowa?" Like this:
[SWF="http://www.imageaddicts.net/uploads/Main_Menu4d99a.swf height=400 width=550"]http://www.imageaddicts.net/uploads/Main_Menu4d99a.swf[/SWF]
7. Add four circles and put answers next to them. Like this:
[SWF="http://www.imageaddicts.net/uploads/Main_Menu64b52.swf height=400 width=550"]http://www.imageaddicts.net/uploads/Main_Menu64b52.swf[/SWF]
8. Convert all four circles to symbols. Make sure they are buttons.
9. Copy and paste this code in all three wrong answer circles:
on(release){gotoAndPlay(12);}
10. In the right answer circle copy and paste this code:
on(release){gotoAndPlay(3);}
Repeat these steps to make more questions! Except change the number in the code above to 4, then 5, then 6, then 7, then 8, then 9, then 10, then 11 for every question you make.
11. Go to frame 11 and put Winner! and the type replay. Like this:
[SWF="http://www.imageaddicts.net/uploads/Main_Menu02f9e.swf height=400 width=550"]http://www.imageaddicts.net/uploads/Main_Menu02f9e.swf[/SWF]
12. Convert replay into a symbol (button) and copy and paste this code in replay:
on(release){gotoAndPlay(2);}
13. Go to frame 12 and put Loser! and type Back to 1. Like this:
[SWF="http://www.imageaddicts.net/uploads/Main_Menucc028.swf height=400 width=550"]http://www.imageaddicts.net/uploads/Main_Menucc028.swf[/SWF]
14. Convert Back to 1. to a symbol (button) and copy and paste this code into it:
on(release){gotoAndPlay(2);}
15. Save as "Test", Export, and then your complete! Here is the finished product (It is one I made awhile ago and doesn't have an opening screen.I added that to spice things up.):
[SWF="http://www.imageaddicts.net/uploads/Capital_Test.swf height=300width=550"]http://www.imageaddicts.net/uploads/Capital_Test.swf[/SWF]
Thanks for reading! It took me 1 hour to make. Hope it helps!:Happy: :Smile: