<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Training &#38; E-Learning Zone for Quizzes &#187; multiple-choice quiz</title>
	<atom:link href="http://www.quiz-creator.com/blog/tag/multiple-choice-quiz/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quiz-creator.com/blog</link>
	<description>Welcome to our Training &#38; E-Learning Zone, where you will find lots of information about training and E-Learning, along with tips &#38; tricks, customers and insights into what&#039;s going on here.</description>
	<lastBuildDate>Fri, 30 Dec 2011 07:11:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PowerPoint for Educators: How to Make Multiple-choice Quizzes via VBA</title>
		<link>http://www.quiz-creator.com/blog/2009/08/how-to-make-multiple-choice-quizzes-with-powerpoint/</link>
		<comments>http://www.quiz-creator.com/blog/2009/08/how-to-make-multiple-choice-quizzes-with-powerpoint/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 13:45:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[make multiple-choice quiz via PowerPoint]]></category>
		<category><![CDATA[make multiple-choice quizzes]]></category>
		<category><![CDATA[make quiz from PowerPoint]]></category>
		<category><![CDATA[multiple-choice quiz]]></category>
		<category><![CDATA[PowerPoint quiz]]></category>
		<category><![CDATA[quizzes]]></category>

		<guid isPermaLink="false">http://www.quiz-creator.com/blog/?p=117</guid>
		<description><![CDATA[PowerPoint is a multimedia courseware to create multimedia courses to enhance the classroom experience. Also, it is a great assessment tool to create quizzes. The VBA (Visual Basic for Applications) feature in PowerPoint gives educators an accessible way to easily create interactive multimedia quizzes. Here I will teach you how to create multiple-choice quizzes with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fhow-to-make-multiple-choice-quizzes-with-powerpoint%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fhow-to-make-multiple-choice-quizzes-with-powerpoint%2F" height="61" width="51" title="PowerPoint for Educators: How to Make Multiple choice Quizzes via VBA" alt=" PowerPoint for Educators: How to Make Multiple choice Quizzes via VBA" /></a></div><p>PowerPoint is a multimedia courseware to create multimedia courses to enhance the classroom experience. Also, it is a great assessment tool to create quizzes. The VBA (Visual Basic for Applications) feature in PowerPoint gives educators an accessible way to easily create interactive multimedia quizzes. Here I will teach you <strong>how to create multiple-choice quizzes with VBA in PowerPoint</strong> with step-by-step illustrations.</p>
<p>Supposing you want to create a quiz with 10 multiple-choice questions and only one correct answer for each question. Take PowerPoint 2007 for example, here are the details.</p>
<h3>Step 1 &#8211; New a blank presentation</h3>
<h3>Step 2 &#8211; Customize feedback to each question with macro</h3>
<p><span id="more-117"></span></p>
<p>You may be confused with the first step because the first step in all of the related quiz tutorials online is creating questions and answers. In order to simplify the steps to create multiple-choice quizzes, in this tutorial, I bring forward the feedback customization.<br />
<strong>1. Set security options</strong><br />
a. Before you can run VBA code, you need to set PowerPoint&#8217;s security options to permit macros to run.<br />
b. Click the Office button -&gt; PowerPoint options.<br />
c. On the left of the PowerPoint Options dialog box, Click Trust Center, then click Trust Center Settings on right.</p>
<p><img src="http://farm3.static.flickr.com/2571/3851710309_f11ac1f2f9.jpg" alt="Disable all macros with notification" title="PowerPoint for Educators: How to Make Multiple choice Quizzes via VBA" /></p>
<p>d. Click Macro Settings on the left of the dialog then choose Disable all macros with notification.</p>
<p><strong>2. Start the VBA Editor</strong><br />
Please press Alt+F11 to start the VBA Editor.</p>
<p><strong>3. Customize feedback to wrong answer and right answers</strong><br />
a. In the VBA editor, Choose Insert -&gt; Module, and then insert a code module for feedback to wrong&amp;right answers.<br />
b. Customize feedback to wrong answers:<br />
In the big blank space on the right, type the following 3 lines:</p>
<p><code>Sub Wrong()<br />
MsgBox ("Sorry, that's not right. Please try again.")<br />
End Sub</code></p>
<p>Customize feedback to right answers:<br />
<code>Sub Right()<br />
MsgBox ("That's right! You are so smart!")<br />
SlideShowWindows(1).View.Next<br />
End Sub</code></p>
<p>This code for right answer is similar to the wrong answer, except for its &#8220;SlideShowWindows&#8221; line, which advances the quiz-taker to the next slide.</p>
<p><img src="http://farm4.static.flickr.com/3513/3851710311_63da6c16ff.jpg" alt="Run macro" title="PowerPoint for Educators: How to Make Multiple choice Quizzes via VBA" /></p>
<p><strong>4. Return to PowerPoint from the VBA Editor</strong><br />
Please press Alt+F11 to return to PowerPoint. Leave the Visual Basic Editor open in the background. In PowerPoint, save the presentation, this will save the new macros as well.</p>
<h3>Step 3 &#8211; Create questions and answers</h3>
<p><strong>1. Create question slides</strong><br />
Within PowerPoint, start a new slide using the Title Only slide layout. Type the first question in the title-text placeholder.</p>
<p><strong>2. Add multiple-choice answers</strong><br />
a. From the Insert menu, click Autoshapes -&gt; Action Buttons. Then choose the blank action button.<br />
b. Resize and position the button on the slide.<br />
c. Right click on the button, choose Add Text from the subsequent menu, and type the first answer. Now select the button, copy and paste the button for the remaining answers you&#8217;ll need on the slide.</p>
<p><strong>3. Add macro to answers</strong><br />
a. Right click on the button, select Hyperlink. The Action Settings dialog box will appear.<br />
b. Choose the Mouse Click tab, and from the &#8220;Action on click&#8221; area, check the &#8220;Run macro&#8221; radio button and select &#8220;Wrong&#8221; macro from the drop-down list. Click OK. Repeat the same setting to other remaining answers.</p>
<p><img src="http://farm3.static.flickr.com/2585/3851710313_f0ddb6e5df_m.jpg" alt="VBA code" title="PowerPoint for Educators: How to Make Multiple choice Quizzes via VBA" /></p>
<p><strong>4. Duplicate the slide to as many as 10 slides</strong><br />
a. Duplicate the slide and substituent the questions and answers to other questions.<br />
b. Repeat this step 3 to the right answers for each question, and select &#8220;Right&#8221; macro from the drop-down list.</p>
<h3>Step 4 &#8211; Save the quiz presentation</h3>
<p>Press F5 to preview the quiz presentation and save it to PPSX format. Now everything is ok, you create a quiz PowerPoint slideshow successfully.</p>
<p>Besides creating quiz with VBA via PowerPoint, you also can make more interactive Flash quizzes for your PowerPoint presentation with 3rd party Flah quiz maker that can generate stand-alone Flash quiz. <strong><a href="http://www.quiz-creator.com/quiz-maker/">QuizCreator</a></strong> is such a Flash quiz maker to help educators create multimedia Flash quizzes for teaching.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fhow-to-make-multiple-choice-quizzes-with-powerpoint%2F&amp;linkname=PowerPoint%20for%20Educators%3A%20How%20to%20Make%20Multiple-choice%20Quizzes%20via%20VBA"><img src="http://www.quiz-creator.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.quiz-creator.com/blog/2009/08/how-to-make-multiple-choice-quizzes-with-powerpoint/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How to Make Multiple Choice Quizzes</title>
		<link>http://www.quiz-creator.com/blog/2009/08/how-to-make-multiple-choice-quiz/</link>
		<comments>http://www.quiz-creator.com/blog/2009/08/how-to-make-multiple-choice-quiz/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:50:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[make multiple-choice quiz]]></category>
		<category><![CDATA[make quizzes]]></category>
		<category><![CDATA[multiple-choice quiz]]></category>

		<guid isPermaLink="false">http://www.quiz-creator.com/blog/?p=84</guid>
		<description><![CDATA[Multiple Choice quiz requires users to select the single correct choice among a set of possible choices. It is an easy way to implement quick assessment on learning performance. When making a multiple choice quiz you need to prepare the questions and answer options. To make the quiz a formative learning experience, you also need [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fhow-to-make-multiple-choice-quiz%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fhow-to-make-multiple-choice-quiz%2F" height="61" width="51" title="How to Make Multiple Choice Quizzes" alt=" How to Make Multiple Choice Quizzes" /></a></div><p><strong>Multiple Choice quiz</strong> requires users to select the single correct choice among a set of possible choices. It is an easy way to implement quick assessment on learning performance. When <strong>making a multiple choice quiz</strong> you need to prepare the questions and answer options. To make the quiz a formative learning experience, you also need to customize feedbacks on each answer to give more additional information for the question.</p>
<p>This tutorial explains how to make a multiple choice quiz and grade automatically with  <strong><a href="http://www.quiz-creator.com/quiz-maker/">Flash Quiz Maker</a></strong>. Please Make sure that <strong><a href="http://www.quiz-creator.com/quiz-maker/">QuizCreator</a></strong> is installed on your computer.</p>
<p><span id="more-84"></span></p>
<h3>Add Multiple Choice question to quiz</h3>
<ol>
<li>Click Questions button in QuizCreator.</li>
<li>Select Multiple Choice. Then the question dialog pop up.</li>
<li>Enter your question in the Enter the Question field. You could insert equation, image and hyperlink to the question. If you want to format the question text, please click the corresponding button which is similar to office.</li>
<li>Enter the answer choices for the question in the Enter the Choice field. If you want to add more than 4 choices, please click &#8220;+&#8221; to add more than 6 choices. You also could click &#8220;-&#8221; to delete the useless choice.</li>
<p><img src="http://www.quiz-creator.com/images/blog/add-multiple-choice-questions.jpg" alt="add or delet options for multiple choice quiz" title="How to Make Multiple Choice Quizzes" /></p>
<li>Click the box in the Correct column next to the correct choice for this question.</li>
<li>Click save button to save the question.</li>
</ol>
<h3>Set question results feedback</h3>
<p>It is important to offer feedback to the learners. You could customize the personalized question feedback based on the right or wrong choice. There are two feedback types for question, you could specify the feedback type according to your requirement.</p>
<ol>
<li>At the question dialog, click Properties.</li>
<li>In the Feedback area, please click the drop-down menu to select the feedback type (By Question or By Answer).</li>
<li>By Question, allows you to provide feedback on each of question after user anwering the question. While, By Answer, allows you to provide overall feedback after user selecting an answer choice.</li>
<p><img src="http://www.quiz-creator.com/images/blog/set-feedback.jpg" alt="set feedback for multiple choice question" title="How to Make Multiple Choice Quizzes" /></p>
<li>When you select the By Answer feedback, you should enter the specified feedback info for each anwer choice to the Feedback field next to the choice column.</li>
<p><img src="http://www.quiz-creator.com/images/blog/customize-feedback.jpg" alt="customize feedback -multiple choice question" title="How to Make Multiple Choice Quizzes" /></ol>
<h3>Set automatically quiz marking and track result for free</h3>
<p>QuizCreator allows you track quiz results for free via E-mail or <strong><a href="http://www.quiz-creator.com/online-quiz-maker/">QuizCreator Online</a></strong>.</p>
<p>If you want to get the quiz results through E-mail, please go to Publish -&gt; Publish on My Computer, and tick &#8220;Send results to the specified e-mail address&#8221;.</p>
<p>If you want to track the quiz results free online, please publish the quiz for QMS.</p>
<p>Now, everything is ok, you could following the steps above to create more multipe questions and make an interactive multiple choice quiz with ease.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fhow-to-make-multiple-choice-quiz%2F&amp;linkname=How%20to%20Make%20Multiple%20Choice%20Quizzes"><img src="http://www.quiz-creator.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.quiz-creator.com/blog/2009/08/how-to-make-multiple-choice-quiz/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Making Multiple Choice Quizzes Efficiently with Quiz Makers</title>
		<link>http://www.quiz-creator.com/blog/2009/08/make-multiple-choice-quiz-efficiently-quiz-makers/</link>
		<comments>http://www.quiz-creator.com/blog/2009/08/make-multiple-choice-quiz-efficiently-quiz-makers/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 12:25:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Learning]]></category>
		<category><![CDATA[make multiple-choice quiz]]></category>
		<category><![CDATA[multiple-choice quiz]]></category>
		<category><![CDATA[quiz makers]]></category>
		<category><![CDATA[quizzes]]></category>

		<guid isPermaLink="false">http://www.quiz-creator.com/blog/?p=45</guid>
		<description><![CDATA[Multiple choice is a form of assessment in which test-takers are supposed to select the &#8220;best&#8221; answer/answers among a set of options. It plays an important role in educational testing and could be the most widely used question type on examinations nowadays.
There are many advantages to multiple choice quiz. If item writers are well trained [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fmake-multiple-choice-quiz-efficiently-quiz-makers%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fmake-multiple-choice-quiz-efficiently-quiz-makers%2F" height="61" width="51" title="Making Multiple Choice Quizzes Efficiently with Quiz Makers" alt=" Making Multiple Choice Quizzes Efficiently with Quiz Makers" /></a></div><p><strong>Multiple choice is a form of assessment</strong> in which test-takers are supposed to select the &#8220;best&#8221; answer/answers among a set of options. It plays an important role in educational testing and could be the most widely used question type on examinations nowadays.</p>
<p><strong>There are many advantages to multiple choice quiz</strong>. If item writers are well trained and items are quality assured, it can be a very effective assessment technique. As multiple choice quiz is a good assessment tool, there are many strategies for writing multiple-choice test items online to test makers; &#8220;How to take a multiple choice test successfully&#8221; is also a hot discussion all the time to test-takers. Here, I will discuss the utilization of quiz makers to assist educators to make multiple choice quiz efficiently. <span id="more-45"></span></p>
<p><img src="http://farm3.static.flickr.com/2564/3679681739_7d7ef5e3e5.jpg" alt="3679681739 7d7ef5e3e5 Making Multiple Choice Quizzes Efficiently with Quiz Makers" width="546" height="180" title="Making Multiple Choice Quizzes Efficiently with Quiz Makers" /><br />
<strong>Why multiple choice quiz maker? </strong>In traditional paper-based test, making a different test on the same topic for each of your classes is impossible unless you retype everything again, LOL. At the same time, randomize the order of the questions and options is time-wasting and trivial, especially when the quiz includes many questions. There are many limitations with manual paper-based test. However, with multiple choice quiz maker you can do all these tasks very easily. It is wise to have such multiple choice quiz makers at your fingertips.</p>
<p><strong>Which quiz maker fits you best? </strong>No definite answers. It depends on test&#8217;s form and specified features you required. When we refer to the quiz maker to create multiple choice test, there are two forms. One is online test, the other is printable paper test. It will be a good quiz maker for multiple choice if it supports both forms. Talking of specified features, shuffling questions and answers yet selecting question at random would be ideal to save time and low the cheating risk. Next, I will explain why these factors should be considered when you select the quiz maker to make multiple choice test.</p>
<p><strong>Test created can be used for online testing</strong></p>
<p>Online testing is necessary for implementing eLearning, especially in this Web 2.0 era. It will lower much training expenditures in long term. You don&#8217;t have to cost so much time to mark examination papers, online testing makes marking automatic. So the ability to allow users to create a quiz for online testing is vital for choosing a quiz tool.</p>
<p><strong>Test created can be generated to print for paper test</strong></p>
<p>Online testing isn&#8217;t always effectual if there is no Internet available. Besides, online testing doesn&#8217;t do a good job for subjective item test. Many certification tests also adopt this test form(paper-based test). So, paper-based test feature should also be consider in test tool selection.</p>
<p><strong>Randomize and shuffle questions and answers allowed</strong></p>
<p>Reducing the chance of cheating and time is the obvious advantages for randomizing and shuffling questions and answers. For making paper test, you could make a different test on the same topic for each of your classes. It will be big time-saving. For online testing, shuffling choices out of question bank makes test different each time when one test-taker attempts the quiz. So this makes it a little harder for students to copy from each other, and this also makes the print impossible, a good way to reduce the chance of cheating.</p>
<p>In addition, reusability is another consideration when you pick out a multiple choice quiz maker. Therefore, when you want to select the right quiz maker from numerous quiz tools, you could take these above aspects into consideration. Of course, the most important element is  meeting your needs. This tutorial  will show you how to use <a href="http://www.quiz-creator.com/quiz-maker/">QuizCreator</a> to <a href="http://www.quiz-creator.com/blog/2009/08/how-to-make-multiple-choice-quiz/#110">make multimedia multiple choice quizzes</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F08%2Fmake-multiple-choice-quiz-efficiently-quiz-makers%2F&amp;linkname=Making%20Multiple%20Choice%20Quizzes%20Efficiently%20with%20Quiz%20Makers"><img src="http://www.quiz-creator.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.quiz-creator.com/blog/2009/08/make-multiple-choice-quiz-efficiently-quiz-makers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Interactive Multiple-choice Quiz in Adobe Flash CS4</title>
		<link>http://www.quiz-creator.com/blog/2009/07/how-to-create-interactive-multiple-choice-quiz-in-adobe-flash/</link>
		<comments>http://www.quiz-creator.com/blog/2009/07/how-to-create-interactive-multiple-choice-quiz-in-adobe-flash/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 14:44:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[create quizzes in Flash]]></category>
		<category><![CDATA[Flash quizzes]]></category>
		<category><![CDATA[make Flash quizzes in Flash]]></category>
		<category><![CDATA[make multiple-choice quiz]]></category>
		<category><![CDATA[multiple-choice quiz]]></category>
		<category><![CDATA[quizzes]]></category>

		<guid isPermaLink="false">http://www.quiz-creator.com/blog/?p=9</guid>
		<description><![CDATA[QuizCreator supplies an easy way to create interactive Flash quiz for users, Adobe Flash also lets users make interactive Flash quizzes too. This tutorial will guide you how to create interactive drop-down multiple-choice quiz. It is just a sample of the workflow you&#8217;ll use while authoring in Adobe Flash CS4. You can view the Flash [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F07%2Fhow-to-create-interactive-multiple-choice-quiz-in-adobe-flash%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F07%2Fhow-to-create-interactive-multiple-choice-quiz-in-adobe-flash%2F" height="61" width="51" title="How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" alt=" How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" /></a></div><p><a href="http://www.quiz-creator.com/quiz-maker/">QuizCreator </a>supplies an easy way to create interactive Flash quiz for users, Adobe Flash also lets users make interactive Flash quizzes too. This tutorial will guide you how to create interactive drop-down multiple-choice quiz. It is just a sample of the workflow you&#8217;ll use while authoring in Adobe Flash CS4. You can view the Flash quiz created by Adobe Flash below.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="align" value="middle" /><param name="src" value="http://www.quiz-creator.com/images/blog/multiple-choice.swf" /><param name="quality" value="high" /><embed type="application/x-shockwave-flash" width="480" height="360" src="http://www.quiz-creator.com/images/blog/multiple-choice.swf" quality="high" align="middle"></embed></object></p>
<p><strong>Step 1 &#8211; Create a new document</strong><br />
a. Choose File &gt; New.<br />
b. In the New Document dialog box, selcet Flash File (ActionScript 2.0) and then Click OK.<br />
<span id="more-9"></span></p>
<p><strong>Step 2 &#8211; Document settings</strong><br />
Right-click on the stage, selcet Document Properties, then the Document Properties dialog box appears. It displays the current Stage size setting as 550 × 400 pixels, and the Background color swatch is set to white. You can change the size and color of the Stage as you want.</p>
<p><img src="http://www.quiz-creator.com/images/blog/document-properties.jpg" alt="Adobe Flash - document properties" title="How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" /></p>
<p><strong>Step 3 &#8211; Import image to the stage</strong><br />
Choose File &gt; Import &gt; Import to Stage, and then select the image you want. You also could click Ctrl+R to import image.</p>
<p><strong>Step 4 &#8211; Add the multiple choice question to the Stage</strong><br />
a. Select the Text tool (T).<br />
b. In the Property inspector (Window &gt; Properties), select Static Text type to specify the type of text field, and then input the question &#8221; What was Michael&#8217;s first song to air on MTV? &#8220;. You also could set the font size, family and color of the text.</p>
<p><strong>Step 5 &#8211; Add ComboBox component</strong><br />
a. Select Window &gt; Components.</p>
<p><img src="http://www.quiz-creator.com/images/blog/combobox.jpg" alt="Adobe Flash component" title="How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" /></p>
<p>b. Double-click ComboBox in the Components panel.<br />
c. Select the component on the Stage, and name the instance name as box in the properties panel.</p>
<p><img src="http://www.quiz-creator.com/images/blog/name-box.jpg" alt="Adobe Flash properties panel" title="How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" /></p>
<p><strong>Step 6 &#8211; Add answer options</strong><br />
a. Select Window &gt; Component Inspector. On the Component Inspector, click data, then the Value dialog box appears.</p>
<p><img src="http://www.quiz-creator.com/images/blog/data.jpg" alt="Adobe Flash data" title="How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" /></p>
<p>b. Click + to add answer options, and then replace the defaultValue as answer options, here the options are: thriller, billie jean, bad and the way you make me feel. After that, click OK.</p>
<p>c. On the Component Inspector, click labels, then the Value dialog box appears. Please following the same steps above to add the values by adding the + button.</p>
<p><strong>Step 7 &#8211; Add submit button</strong><br />
a. Select Window &gt; Common Libraries &gt; Buttons, then the Libraries buttons dialog pop up.<br />
b. Choose a button and drag it to stage.</p>
<p><img src="http://www.quiz-creator.com/images/blog/button.jpg" alt="add submit button for quiz" title="How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" /></p>
<p>c. Double-click the button, and then rename the button as Submit. You also could set the size of the button at the Propertites panel.</p>
<p><strong>Step 8 &#8211; Insert a keyframe and delete the elements on the frame</strong></p>
<p><strong>Step 9 &#8211; At keyframe 2, insert a dynamic text box</strong><br />
a. Select the Text tool (T).<br />
b. In the Property inspector (Window &gt; Properties), select Dynamic Text type.<br />
c. Draw a rectangular text box, this is the feedback area when quiz-takers choose the right or wrong answer.<br />
d. Select the rectangular text box, and input jg to the Variable box at the Properties panel.</p>
<p><img src="http://www.quiz-creator.com/images/blog/variable.jpg" alt="Flash quiz - variable defintion" title="How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" /></p>
<p><strong>Step 10 &#8211; At At keyframe 2, add Back button</strong><br />
Just following the same steps at step 8 to add button rename the button as Back.</p>
<p><strong>Step 11 &#8211; Open the Action panel and add scripts</strong><br />
a. Add scripts to Back button.Click the Back button, input the following scripts:<br />
on (release) {<br />
gotoAndStop(1);<br />
jg = &#8220;&#8221;; }</p>
<p><img src="http://www.quiz-creator.com/images/blog/script.jpg" alt="Flash quiz - adding Scripts" title="How to Create Interactive Multiple choice Quiz in Adobe Flash CS4" /></p>
<p>b. Add scripts to Submit button.Click the Submit button, input the following scripts:<br />
on (press) {<br />
if (box.getValue() == &#8220;billie jean&#8221;) {<br />
jg = &#8220;Sorry, wrong answer! Please select again!&#8221;;<br />
}<br />
if (box.getValue() == &#8220;bad&#8221;) {<br />
jg = &#8221; Sorry, wrong answer! Please select again!&#8221;;<br />
}<br />
if (box.getValue() == &#8220;the way you make me feel&#8221;) {<br />
jg = &#8221; Sorry, wrong answer! Please select again!&#8221;;<br />
}<br />
if (box.getValue() == &#8220;thriller&#8221;) {<br />
jg = &#8220;Congratulations! Triller is Michael&#8217;s first song to air on MTV&#8221;;<br />
}<br />
gotoAndStop(2);<br />
}<br />
c. Add scripts on frame 1. Click frame 1, input the following scritps:<br />
stop();</p>
<p><strong>Step 12 &#8211; After these steps, the question is created. You could follow these steps to create more multiple choice questions</strong></p>
<p>If these steps are too complicate to you, you can choose Wondershare <a href="http://www.quiz-creator.com/quiz-maker/">QuizCreator</a> to help you, it is a good Flash quiz maker that helps everyone create multiple Flash quiz without programming skills.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.quiz-creator.com%2Fblog%2F2009%2F07%2Fhow-to-create-interactive-multiple-choice-quiz-in-adobe-flash%2F&amp;linkname=How%20to%20Create%20Interactive%20Multiple-choice%20Quiz%20in%20Adobe%20Flash%20CS4"><img src="http://www.quiz-creator.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.quiz-creator.com/blog/2009/07/how-to-create-interactive-multiple-choice-quiz-in-adobe-flash/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

