Showing bespoke feedback when user reviews the quiz

I've created a quiz with question pools and random question slides and also enabled the user to review the quiz when they've finished.  When they review, I want information to be shown about each question - not necessarily if they got it right or wrong - just some general notes about that particular question.  I'm sure I saw a video where Dr Pooja showed pictures on certain questions when the user reviewed the quiz.  Would I need to do this using advanced actions?  I'm using V6.0.1  Thanks

Are you sure Pooja was not using Drag&Drop or normal questions, not random questions? It is pretty easy for both of them. But once you are talking about question pools and random question slides: how will you define what the picture needs to be, since you don't know which slide will be selected (you can use advanced actions on the random slide).
Lilybiri

Similar Messages

  • Replay module from the first slide when user failed the quiz.

    Hi, I m using SCORM 1.2 settings for my project and i uploaded it on moodle , i want to replay the module from first slide when user failed the quiz. which settings i use? please help me with the same.

    When reporting to LMS it is the LMS that takes care of bookmarking, wondering if this is possible within Captivate itself? I don't know Moodle, but did you check the settings there?

  • Show Confirmaiton Dialog when user closes the browser

    Hello All,
    Can we show a confirmation dialog when user chooses to close the browser in which applet is running? I know that it can be done using javascript. Can it be done using java code?
    Please suggest.
    Thank you.

    teejrama wrote:
    ..Can we show a confirmation dialog when user chooses to close the browser in which applet is running?.. You can pop a JOptionPane in the applet's destroy() method, but that will not do any good, since the browser is not asking the applet for advice on whether it is closing, it is telling the applet it is closing.
    ..I know that it can be done using javascript... Can it? How?
    If so, that would be another good reason to disable JS.
    ..Please suggest.I suggest you presume the end-user is smart enough to know when they want to close their own browser, and not interfere in that process.
    Thank you.No worries.

  • Reviewing the quiz

    Hi all,
    I'm in need of some help again.
    I have created a quiz with an 80% pass mark for my learners.
    This is no problem and it all works fine.
    Some feedback I have received through testing is that the learners would like to know the correct answer to the questions they got wrong, ordinarily not a problem, however.....
    If my learners get <80% they do the quiz again (by hiding the Continue button beneath the Retake Quiz button)
    If they get >80% then they have passed the quiz and the continue button appears so they can go to the next chapter.
    This is where the issue appears as the learners have stated they would like to know the answers to the questions they got wrong.
    I've tried changing the quiz properties so that they have 3 chances to complete the quiz before reviewing it, but I cannot stop the review button from appearing on the first failed attempt, giving them the answers rather than forcing them to have another go as both the "Review Quiz" and the "Retake Quiz" button appear.
    Is there a way of stopping the Review Quiz button from appearing until I want it to?
    I look forward to your answers as my deadline is fast approaching!

    I suggest you hide the Review Quiz button underneath the Retake Quiz button, not under the Continue button.
    Once the user hits the Review Quiz button, they won't have the option afterwards to do a Retake Quiz until they relaunch the lesson again.
    So by giving the user 3 attempts at the quiz, each time they fail, they'll only see the Retake Quiz button if it's sitting on top of the Review Quiz button. After their third failed attempt, or after their first Successful attempt (whichever comes first) they'll see the Review Quiz button.
    I agree that learners should not be given the opportunity to just review the quiz, find out the answers, and then retake the quiz straight away again.  But essentially, even with the precautions mentioned above, that's pretty much what they are doing if they Review the quiz and then relaunch the lesson.
    For more sophisticated options to control user attempts, you may need to use an LMS.

  • Send e-mail when someone takes the quiz

    I have my quiz set up so results are posted into my internal server so I can use quiz analyzer to access the results. Is there a way I can receive an email when someone takes the quiz so I don't have to check the quiz analyzer to see who took the test ?

    Captivate does allow you to trigger an email via Advanced Actions.  However, this at best will only open a new email in the user's email client with some default Subject text and your email address.  You're still reliant on the user manually sending this email.  This makes it inherently unreliable.
    To achieve an automated email, you would need to have access to web programming skills to create a server-side page that sent an email when called.  The Captivate course participant would then have no awareness of the email.

  • I am looking for a specific photo in my event folder, it does not show up, yet when I use the search feature, the photo is there.  Why doesn't it show up in the folder?

    I am looking for a specific photo in my event folder, it does not show up, yet when I use the search feature the picture is there.  Why doesn't it show up in the folder?

    What system and iPhoto version are you running?
    If your're using iPhoto 9 or later  Command (right) - click on the photo in the search window and select Show Event in the Contextual menu. 
    That will take you to the event where the photo is.
    OT

  • In base component when user change the serial number we need to set date time in Extra attribute filed

    HI Team,
    In ibase component when user change the serial number we need to set date time in Extra attribute filed..if we click edit ,User change serial number after save we need to set date time in  Extra Attribute 4 field .
    Component - PRDGENSET
    In this component there is no attributes,so where we need to implement and how to implement please help.
    Thanks
    kalpana

    Hi Abi,
    Thanks for your reply..see i debugged..i have put break point in method SET_S_STRUCT method if press enter in serial number ,debuggeris triggered..in SET_S_STRUCT method value getting serial number..so how to write the logic here...
    In GET_S_STRUCT method iam getting all attributes  but serial number is not filled..So could you please help here what to do..
    in set_S_STRCUT method value iam gettin serial number...in collection wrapper iam geting zrealtions if i open attributes_ref -if i pass Attribute value in run time its getting displayed.so how to write the logic based on serial  number please help some coding.
    Thanks
    kalpana

  • Problems when user enter the field

    I have problem when user enter the field, but it cannot retrieve from the table. Below is my program, help me to check is it correct or not, THANKS
    <input type="text" name="po_num<%=i%>" style="width:100%;text-align:left;" onChnage="chkPOexist(<%=i%>)">
    Function chkPOexist(i){
    if documen.all.po_num.value == null {
    alert ("PO cannot be null");
    else {
    po_num = new String;
    po_num = eval(document.po_num[i].value)
    alert(po_num);
    <% System.out.println("PP " +po_num);
    sql_query = "SELECT po_num"+
    " FROM pomast"+
    " WHERE po_num '"+po_num+"' ";
                        try{
                        rset = db.execSQL(sql_query);
                        catch(SQLException e) {
                        System.err.println("Error in query");
                        while(rset.next()== true){
    po_num = rset.getString("po_num");
    %>
    </select value="<%=po_num%>"><%=po_num%></select>
                        <%}%>

    You seem to have some confusion between java and javascript, and when they run.
    Java code runs only on the server, and produces an HTML page.
    Javascript code runs on the client.
    The two can not communicate. Specific to your example you seem to think that the java code will be executed by your onChange event.
    This is not the case.
    In order to run java code again you have make a request by submitting the form, or clicking on a link.
    Cheers,
    evnafets

  • Photo Stream issue.  Photo Stream shows 263 photos when viewed on the iMac, 289 when viewed on the iPad and 327 when viewed on the iPhone.  How can this be?

    Photo Stream issue.  Photo Stream shows 263 photos when viewed on the iMac, 289 when viewed on the iPad and 327 when viewed on the iPhone.  How can this be?  Tried shut down on all devices, reboot and the results are the same.

    Photo Stream issue.  Photo Stream shows 263 photos when viewed on the iMac, 289 when viewed on the iPad and 327 when viewed on the iPhone.  How can this be?  Tried shut down on all devices, reboot and the results are the same.

  • I have an ipod nano 5th generation. the problem with it's that it doesn't show in itunes when connected to the laptop and it switches on on its own and songs start playing the battery gets consumed too fast after full charge. what is the actual problem?

    i have an ipod nano 5th generation. the problem with it's that it doesn't show in itunes when connected to the laptop and it switches on on its own and songs start playing the battery gets consumed too fast after full charge. what is the actual problem?

    What have you tried so far in terms of troubleshooting this issue?  Are you plugging the iPod into a high powered USB 2.0 port on the back of your PC? Have you tried a different USB cable?
    What happens if you try to reset the device with it still connected to the PC?
    How to reset iPod
    Has this iPod ever worked on this PC or is this the first time you have time you have tried connecting it?
    Have you carefully worked through each and every single suggestion in this Apple support document?
    iPod not recognized in 'My Computer' and in iTunes for Windows
    B-rock

  • Can I keep the CC value when user click the REPLY TO button in outlook?

    Hi all,
    I have set the CC value when I send email out. But when user reply the received email, the CC value will be displayed in the TO field. If anyone knows how can I keep the CC value unchanged when user reply the received email?
    Thanks very much.

    It depends entirely on the mailer they're using, you have no control over it.

  • How to make session invalid when user refresh the page?

    How to make session invalid when user refresh the page?

    I have a <form> in a JSP file that has another JSP file as an action.
    I have main.jsp that has <form> with action.jsp file as an action.
    Now when I submit the <form>, request forwarded to action.jsp and it will take the action. But this file is taking so long, hence user refresh the page again and again, hence duplicate request processing is occuring.
    I want to prevent this.

  • How can we make the Retake Quiz button only appear when user reenters the course?

    In a Captivate 8 Quiz, we need to force the user to close the course (so attempts are captured by the LMS) from the Quiz Results page. The Retake Quiz button cannot show at this time. However, when the learner reenters the course from the LMS, the bookmarking brings the user to the Results page again. We need a Retake Quiz button to only show when the user reenters the course, not on Quiz completion. Disabling the bookmarking disables the reporting of attempts. Does anyone know a way to make that happen or a workaround?

    Have a look at my blog post:
    http://blog.lilybiri.com/review-only-incorrect-slides-captivate-6
    Lilybiri

  • How to show the data in table format when user click the Graph

    Hi,
    I have a graph in my report. If user click the graph is there a way to show
    the data behind it?
    Thanks.
    Regards,
    Jun

    Hi All,
    Any idea how to do this?
    Thanks.
    Jun

  • CP4: slide stuck if user skips the quiz

    Hi,
    Wondering if anyone could shed some light on where I'm going wrong here. I've got a CP4 project with some instructional slides at the beginning followed by few question slides.
    Although these question slides are the "graded" type, I wanted to give the user the ability to retry the questions as much as they like, because they are to be a practice of what they've learnt rather than assess.  To achieve this I've set each question slide with "inifinite attempts" option, also set infinite attempts for the quiz preference - "if failing grade" option - so that the learner can revisit the information slides and retry the questions.  I've also set the quiz requirement setting as "Optional - the user can skip this quiz" so that users can just browse through the questions without trying them. The "show score at end of quiz" option is disabled (screenshot) because I don't want to show a score as these questions aren't suppose to be assessed.
    After the question slides I've got an information slide (let's call it slide 'F1') with just "back" and "next" buttons.  The back button goes to the previous question slide and the "Next" button is set to go to the next (let's call it the 'Final slide') slide, which also has a back button.  Simples....well that's what I thought.
    When testing this project in action, I noticed a small navigation issue.  If I skip through all the questions (by pressing the Skip button) and get to slide F1, the next button takes me through to the final slide on the first attempt.  Then I clicked the "Back" button on the final slide to come back to slide F1, and now when I click on the next button on slide A1.... the next button is not working. I can't get back to the final slide!
    This doesn't happen if the user actually tries the questions.  Even if they get all the questions wrong (or correct) this issue doesn't happen. It only happens if the user skips all the questions.
    It does sound like something I've got wrong on quiz preferences, but I can't figure out what because I've got the "Optional - the user can skip this quiz" option selected.  I even created a whole new sample project from scratch (with standard buttons, question slides, etc) yet this issue is still happening.  I also tried the preview mode, publishing with LMS reporting (SCORM 2004 and SCORM 1.2), publishing without reporting, etc, but the issue is stilll there.
    Any ideas of what I'm doing wrong here - will be much appreciated. Also let me know if it'll help having a look at the sample project with this issue.  I'll arrange some way to send the project to you.
    Many thanks

    Hi RodWard,
    Thanks for your reply
    The main reason why I didn't go for the survey type questions, because I wanted to use the instant feedback captions available on graded questions (if correct or if wrong) to give more information to the users when they try a question.  On Survey type questions you don't get that option by default.  Is there a way that you know of that I can get these kind of feedback captions on survey type questions?
    That 'quiz scope' you mentioned on your reply - I think that is the cause of this issue.  Shame that it is still looking for completion of the quiz, while the option "Optional - the user can skip this quiz" is selected.
    It looks like the best way to workaround this is to create my own question slides with click boxes, buttons and advanced actions (rather than using the default question slides).
    Thanks again for your reply RodWard - much appreciated.

Maybe you are looking for