Multiple Choice Quiz Score

Hi all

This is my first post here, so apologies if I break the unwritten rules, or say something ridiculous, please bare with me.

So, I created a quiz of multiple choice in my multimedia project using Flash CS5 and wanted to know how (or if) I can integrate a scoring system for the existing quiz.

I created the quiz using the timeline and layers. For each question, there are three layers;

Layer 1 - Question w / four possible answers (only one is correct)

Layer 2 - correct answer

Layer 3 - incorrect answer

I use buttons to navigate through the timeline.

What I want to achieve is, at the end of the quiz, a score to generate based on the questions they got right.

I hope I've included everything you need.

Thanks for reading and possible assistance.

Create an action layer that extends along the timeline and frame 1 create an outcome variable.  As you go with the quiz, addition/subtraction value to this variable to true or false answers.  Until this layer extends until the variable is available to be changed, that in the end will be equal no matter what either believe it has accrued.

Tags: Adobe Animate

Similar Questions

  • Problem with Multiple Choice Quiz

    I tried several times to insert a multiple choice quiz success in my slides. The problem is that when I try to take the quiz (for a preview), I have to click several times and wait several boxes pop up coming (correct, click anywhere; incorrect, etc.). All these boxes pop up show before he let me go to the next slide. Anyone know what I need to change?

    Are you found using the preview feature in presenter or switch to slide show view (F5) in PPT? Looks like you're watching just PPT presentation, who must play through all the animations on the slide.

    You see the same questions if you publish the presentation on site and view the published version?

  • Multiple choice quiz slides - long delay when you click on the radio button

    Using Captivate 5.5 and slides of quiz of multiple choices, when previewing the project, sometimes there is a delay after clicking on a choice. The delay is sometimes so long that the learner may feel like they are not able to select a radio button option. Does anyone know a way to speed up the appearance of the dot that appears when a learner clicks on a radio button?

    Hi Jay,.

    I would have asked to see the chronology. In a blog I explains the features of the glide of the Question and think that you can't find the answer here:

    Question Question slides

    Short answer: on the timeline, you'll see a suspension point, which is used twice for the slides in question (see the two-step process in blog). Default setting is to have only one break point at 1, 5secs for a default slide duration of 3secs. The actions on the success and after the last attempt (see properties Quiz, accordion Action) are both set to "continue". This means that after the second stage when you expect to proceed immediately to the next slide, the reading head is just to continue until the end of the slide (length by default = 1.5secs). Wondering if you perhaps make longer editing.

    What is possible: drag the point of suspension on the Timeline, close to the end of the chronology of the question slide. Or set the action to 'Go ├a next page' instead of continue.

    Not sure if it will help because I do not see the timeline.

    Lilybiri

  • Adding more than four levels of failure in a multiple choice quiz (5 Cp)

    Hi-

    I am currently using Captivate 5. In a quiz of multiple choice with five possible answers and only one good answer, I am only able to select up to three levels of failure. This means that if the student is wrong four times (and selects each of the four incorrect answers before finally choosing the right pair), he or she will not be served a failure with the fourth wrong answer message. Is there a remedy for this situation?

    I would like to know if I was unclear, or if you could use more information.

    Thank you!

    wcramblit

    Several slides question and answer do not have the option of advanced responses.  Yet true/false questions do not have it.  It's only for the Multiple choice questions.

    You can save a feature request for this.  Every vote helps little.

  • strange error in a multiple choice quiz

    Hey - it's strange. I get no error statement, BUT the third option button is a wrong answer BUT not always - pretty darn weird.

    qno var = 0;

    var rnd1.

    var rnd2.

    Tick.Visible = false;

    Cross.Visible = false;

    var right_answers = 0;

    var wrong_answers = 0;

    Grammar.Visible = false;

    Grammar.addEventListener (MouseEvent.CLICK, GrammarAction);

    function GrammarAction(eventObject:MouseEvent) {}

    Grammar.visible = false;

    }

    function change_question() {}

    if {(tick.visible)

    right_answers ++;

    }

    if {(cross.visible)

    wrong_answers ++;

    }

    if {(qno == questions.length)

    gotoAndPlay (2);

    } else {

    tick.visible = false;

    cross.visible = false;

    rnd1 = Math.ceil (Math.random () * 4); Randomize the answers

    rnd2 = Math.ceil (Math.random () * questions.length)-1; Randomize questions

    q.text = issues [rnd2];

    if (questions [rnd2] == "x") {}

    change_question();

    }

    questions [rnd2] = 'x '.

    enable_disable (1);

    if (rnd1 == 1) {}

    opt1.text = answers [rnd2] [0];

    opt2.text = answers [rnd2] [1];

    opt3.text = answers [rnd2] [2];

    opt4.text = answers [rnd2] [3];

    }

    if (rnd1 == 2) {}

    opt1.text = answers [rnd2] [2];

    opt2.text = answers [rnd2] [0];

    opt3.text = answers [rnd2] [1];

    opt4.text = answers [rnd2] [3];

    }

    if (rnd1 == 3) {}

    opt1.text = answers [rnd2] [1];

    opt2.text = answers [rnd2] [2];

    opt3.text = answers [rnd2] [0];

    opt4.text = answers [rnd2] [3];

    }

    if (rnd1 == 4) {}

    opt1.text = answers [rnd2] [1];

    opt2.text = answers [rnd2] [2];

    opt3.text = answers [rnd2] [0];

    opt4.text = answers [rnd2] [3];

    }

    }

    }

    function enable_disable (a) {}

    if (a==0) {

    shade1.mouseEnabled = false;

    shade2.mouseEnabled = false;

    shade3.mouseEnabled = false;

    shade4.mouseEnabled = false;

    }

    if (a==1) {

    shade1.mouseEnabled = true;

    shade2.mouseEnabled = true;

    shade3.mouseEnabled = true;

    shade4.mouseEnabled = true;

    }

    }

    change_question();

    next_b.addEventListener (MouseEvent.CLICK, ButtonAction1);

    function ButtonAction1(eventObject:MouseEvent) {}

    qno++;

    change_question();

    }

    shade1.addEventListener (MouseEvent.CLICK, ButtonAction2);

    shade2.addEventListener (MouseEvent.CLICK, ButtonAction3);

    shade3.addEventListener (MouseEvent.CLICK, ButtonAction4);

    shade4.addEventListener (MouseEvent.CLICK, ButtonAction5);

    function ButtonAction2(eventObject:MouseEvent) {}

    enable_disable (0);

    if (rnd1 == 1) {}

    tick.visible = true;

    tick.y = shade1.y;

    } else {

    cross.visible = true;

    cross.y = shade1.y;

    Grammar.visible = true;

    trace (rnd1);

    }

    }

    function ButtonAction3(eventObject:MouseEvent) {}

    enable_disable (0);

    if (rnd1 == 2) {}

    tick.visible = true;

    tick.y = shade2.y;

    { } else {}

    cross.visible = true;

    cross.y = shade2.y;

    Grammar.visible = true;

    trace (rnd1);

    }

    }

    function ButtonAction4(eventObject:MouseEvent) {}

    enable_disable (0);

    if (rnd1 == 3) {}

    tick.visible = true;

    tick.y = shade3.y;

    } else {

    cross.visible = true;

    cross.y = shade3.y;

    Grammar.visible = true;

    trace (rnd1);

    }

    }

    function ButtonAction5(eventObject:MouseEvent) {}

    enable_disable (0);

    if (rnd1 == 4) {}

    tick.visible = true;

    tick.y = shade4.y;

    } else {

    cross.visible = true;

    cross.y = shade4.y;

    Grammar.visible = true;

    trace (rnd1);

    }

    }

    Stop();

    Hello

    Your rnd1... Try this...

    trace (Math.ceil (Math.Random () * 3) + 1);

    Best regards

    Peter

  • Can I add subtitles to my multiple choice question in Captivate?

    I have a question multiple choice quiz that plays a sound file when the user selects the correct answer. Because the audio file is defined using a ' success' action, it is not placed on the timeline. Is there a way to add captioning in audio file even when it does not exist in the timeline?

    Screen Shot 2014-12-15 at 11.15.35 AM.png

    Audio slide can easily turn into CC CC should be synchronized with the audio, and this is not possible in this case since you have no idea "when" the user will submit the answer. Way to go is to create a container of text (legend or form) with the text that you want to appear as CC) and use a tip (or shared if you're on CP7/8) who will play not only audio but also displays the text container.

  • Multiple choice questions and quiz Manager

    This a question simple, but for some reason I can't fix it. In the quiz Manager, took me seven options for the multiple choice answer. However, only 5 appear on the screen, don't know where the other two went.

    If anyone has experienced this? How can I fiz it?


    Thank you!!!

    I answered my own question. The film size was not large enough. I did the full screen of canvas then changed the movie in smaller size.

  • Slide quiz - question Multiple choice problem

    Hello

    I am on Captivate 7 on Windows 7.

    A small question about the multiple choice question type 7 of Captivate. I would like to if you answer correctly, you jump on a blade of some, and if you answer correctly, you jump to another slide. The part of the correct answer of it works fine, but when I do not answer correctly it doesn't. Indeed, I do jump to the slide, I want to, but when I come back to the question, the options are grayed out and I can't try the question again. If I change the attempts I can retry the question but I do not jump to the other slide before which I want.

    So when the contestant answer correctly I would that he accesses a page that says "you have answered correctly, click here to learn more about the subject." The participant then jump to a slide explaining the domain issue and after that, the participant gets to try the question again. This part does not work for me. I jump to the slide, I want to, but can not try the question again or I can retry the issue but not go to slide I want before.

    I hope you understand what I mean.

    Any ideas?

    Kind regards

    Patrik

    Google for more information about a function later and the Captivate 6 called remediation.  There are some Youtube videos about it online.

    Basically you gives access to a slide after failing to a question and then have the default action for a button on the slide to jump you the same question for another free attempt.

  • Generation of quiz multiple choice of automated text or excel file.

    Is there a way to automatically generate questions multiple-choice an excel file or a text file, instead of manually create and enter data for each question?

    A custom widget would be able to manipulate several slides to do this, or are they limited to a single slide?

    Click on the link below. Captivate 7 has an ability to import.

    Click here to see

  • Partial multiple-choice Questions with random pool

    Hi, I am using Cp9.

    I have a Quiz with multiple-choice using partial credit and it works fine. But if I put these questions into a pool and use random Question slides to assign issues, partial partition option is no longer available.

    Thus, questions are always fully marked. Does partial rating with random questions in a pool?

    Thank you.

    Yep, according to Captivate manual, "unable to set partial scores for choice questions multiple pools in question.»

    What a pity.

  • Taking the multiple-choice question

    Hello

    I wish I had a standard multiple choice question. However, when I select the type 'class', the learner is not able to return to the issue later and change the answer and submit again.

    I need to be more "free-play" rather than a locked assessment.

    I tried the version of 'Investigation' of the questions multiple choice. However, he deletes comments "correct" and "incorrect."  He proposes that the popup 'incomplete '.

    Is anyway to have the choice multiple type "graduate" (including the "correct" and "incorrect" reactions after hitting Submit), but allow to the learner to go back and redo the answer and resubmit?

    Thank you!

    In a Captivate quiz, you authorize several attempts at the quiz question level as well as at the level of the quiz.  However, Captivate designers felt that if your username you have the correct question while they wouldn't need to do it again. So the underlying concept behind several attempts is really that they are several UNSUCCESSFUL attempts.  Ditto for the level of trivia.  You can define several attempts to quiz, giving you the opportunity to have a Retake Quiz button on the results page of the Quiz that erases all the scores and directs the user to the first object scored in the project.  However, if your user passes the test, this button does not appear.

    If you want more flexibility, you will probably have to create your own quiz questions using interactive objects such as large areas of click, Smart forms, buttons and text entry boxes.  Then you can pretty much make it work as you want.

  • Ranking multiple choice of multiple responses

    Hello! I am trying to create a quiz in Captivate 4, but I'm running into a bit of trouble. I am using multiple - answer multiple choice questions, but I want to rank in a granular way, instead of completely. So far, if a user forgets one answer or just checking one of them which is incorrect, the whole issue is counted wrong. I would like to be able to give the user of 10 points for each answer to the question (and possibly-10 points for each answer additional "bad").

    Is it possible to change the ranking of these issues other than writing my own question widget?

    Thank you! Tim

    Hello

    With question slides by default partial credit is not possible. However, since you are using CP4, you can build your own question slides, using legends, clickboxes (or buttons) and calculate the score on the use of variables and advanced actions. The other workaround is to create your own widget Question indeed.

    Lilybiri

  • MouseOver color in multiple choice questions?

    How can I change the color of mouseover in multiple choice questions?

    color.JPG

    There is no solution to do it for the content of the SWF file (other than having a custom widget built).

    If you post on HTML5 then the CpExtra widget allows you to do this:

    Behaviour quiz | Infosemantics Pty Ltd

  • Captivate9 multiple choice questions

    How do you change the default 2 responses for multiple choice 9 Captivate question slides?

    Look in the properties of Quiz Panel, you can change the number of responses,

    also if you have several correct answers etc.

  • Survey using multiple-choice questions

    Hello

    I'm trying to get the answer to a poll, I am using multiple choice questions and each answer numbering as well as cpQuizInfoAnswerChoice = a number. I wanto then add this number to get a total score. The crash of the idea that dependign on the score of hat they get to take them to another slide.

    I have taken a quick glance at this guide here: http://blog.lilybiri.com/graded-survey

    It helped me a little, but what I need to do, is add the numbesr of a series of 10 questions.

    So if the user gets a score of 1, then 3, then 3, then 2, and so I would add the score for questions.

    Can someone please help, sorry I'm new to advanced actions, and I'm not sure what I have to write to make it work.

    Thanks a lot for any help

    I use version 6 of captivate.

    It makes no sense to add 0 to the first statement, you do not v_dummy at all, replace the first two statements by one:

    Expression v_teacher = v_teacher + cpQuizInfoAnswerChoice

    Bit easier...

Maybe you are looking for