You are not authorized to post comments.

Creating an interactive multiple-choice quiz in Adobe Flash CS4

By Sambrena Software, Adobe Flash Add a new comment

Want to create an interactive drop-down multiple-choice quiz in Adobe Flash? This tutorial shows you how.

Step 1 - Create a new document
a. Choose File > New.
b. In the New Document dialog box, selcet Flash File (ActionScript 2.0) and then Click OK.

Step 2 - Document settings
Right-click on the stage, select Document Properties. The Document Properties dialog box 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.

Adobe flash - document properties

Step 3 - Import image to the stage
Choose File > Import > Import to Stage, and then select the image you want. You also could click Ctrl+R to import image.

Step 4 - Add the multiple choice question to the Stage
a. Select the Text tool (T).
b. In the Property inspector (Window > Properties), select Static Text type to specify the type of text field, and then input the question " What was Michael's first song to air on MTV? ". You also could set the font size, family and color of the text.

Step 5 - Add ComboBox component
a. Select Window > Components.

Adobe flash component

b. Double-click ComboBox in the Components panel.
c. Select the component on the Stage, and name the instance name as box in the properties panel.

Adobe flash properties panel

Step 6 - Add answer options
a. Select Window > Component Inspector. On the Component Inspector, click data, then the Value dialog box appears.

adobe flash data

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.

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.

Step 7 - Add submit button
a. Select Window > Common Libraries > Buttons, then the Libraries buttons dialog pop up.
b. Choose a button and drag it to stage.

c. Double-click the button, and then rename the button as Submit. You also could set the size of the button at the Properties panel.

Step 8 - Insert a keyframe and delete the elements on the frame

Step 9 - At keyframe 2, insert a dynamic text box
a. Select the Text tool (T).
b. In the Property inspector (Window > Properties), select Dynamic Text type.
c. Draw a rectangular text box, this is the feedback area when quiz-takers choose the right or wrong answer.
d. Select the rectangular text box, and input jg to the Variable box at the Properties panel.

Step 10 - At At keyframe 2, add Back button
Just follow the same steps at step 8 to add button rename the button as Back.

Step 11 - Open the Action panel and add scripts
a. Add scripts to Back button. Click the Back button, input the following scripts:
on (release) {
gotoAndStop(1);
jg = ""; }

b. Add scripts to Submit button.Click the Submit button, input the following scripts:
on (press) {
if (box.getValue() == "billie jean") {
jg = "Sorry, wrong answer! Please select again!";
}
if (box.getValue() == "bad") {
jg = " Sorry, wrong answer! Please select again!";
}
if (box.getValue() == "the way you make me feel") {
jg = " Sorry, wrong answer! Please select again!";
}
if (box.getValue() == "thriller") {
jg = "Congratulations! Triller is Michael's first song to air on MTV";
}
gotoAndStop(2);
}
c. Add scripts on frame 1. Click frame 1, input the following scritps:
stop();

Step 12 - After these steps, the question is created. You could follow these steps to create more multiple choice questions

There are also 3rd party quiz makers, like Wondershare QuizCreator that can make the job easier.

ITworld LIVE

SoftwareWhite Papers & Webcasts

White Paper

Activities Streams Base An Integrated Social Layer

The enterprise social software market is exploding thanks to converging trends of consumerization, cloud, and mobile. In this must-read report, "The Forrester Wave: Activities Streams, Q2 2012", Forrester Research Inc. evaluated five social software vendors with core strengths in the stream based on the overall strength of vendors' current offerings, a clear product strategy, and vendor market presence. In a detailed look at the space, Forrester named Yammer as a leader.

White Paper

ESG Lab Review: HP 3PAR Peer Motion Software

This ESG Lab review sponsored by HP + Intel documents hands-on testing of HP 3PAR Peer Motion Software's distributed volume.Intel and the Intel logo are trademarks of Intel Corporation in the U.S. and/or other countries.

White Paper

ESG Lab Review: HP 3PAR Peer Motion Software

This ESG Lab review documents hands-on testing of HP 3PAR Peer Motion Software's distributed volume management with a focus on federated workload balancing, asset management, and thin provisioning.Intel and the Intel logo are trademarks of Intel Corporation in the U.S. and/or other countries.

White Paper

Deliver Cost-Effective Business Continuity with Extreme Capacity

IBM DB2 provides application cluster transparency technology that equips organizations running OLTP applications with the ability to deliver high availability and continuous uptime for transactional data, plus the flexibility and capacity they need to remain competitive.

White Paper

What Developers Want: The End of Application Redeploys

Eliminate application restarts in Java with JRebel! JRebel is a JVM plugin that eliminates application redeploys from the Java development cycle, a process that takes over 10 minutes of coding time away from developers each working hour, according to a recent survey. Just code, refresh and see everything instantly.

See more White Papers | Webcasts

Ask a question

Ask a Question