Skip to main content
Inspiring
January 30, 2014
Answered

Can an image appear during review?

  • January 30, 2014
  • 1 reply
  • 1022 views

I would like to have an image appear only during the review of the matching game. . . i want to place a symbol legend so that the user knows what the green hand, red hand, check marks mean.  Is this possible?

I'm using Captivate 6. thanks for your help!

    This topic has been closed for replies.
    Correct answer Lilybiri

    Are you talking about the Matching Question slide, I suppose so.

    Which version of 6, please?

    Anyway, none of the three versions of 6 has yet the system variable cpInReviewMode. You'll have to create your own user variable, will label it 'v_review' to track that. You don't tell if you allow multiple attempts on Quiz level? The idea is that this user var has an initial value of 0 and will be toggled to 1 when the last Quiz attempt is done. This is possible by creating a conditional advanced action, triggered on entering the Score slide, something like:

       IF cpQuizInfoAttempts is equal to n      (n being number of Quiz Attempts)

          Assign v_review with 1
         Continue

      ELSE

         Continue

    Create your image (or text container) on the question slide, that you want to show up during Review and make it hidden in the Properties panel. Beware: the objects on a question slide are always on top of the stack, put that image where it is not beneath a quiz object. And for the On Enter action of that slide create another conditional advanced action:

      IF v_review is equal to 1

        Show image

        Continue

      ELSE

        Continue

    Lilybiri

    1 reply

    Lilybiri
    LilybiriCorrect answer
    Legend
    January 30, 2014

    Are you talking about the Matching Question slide, I suppose so.

    Which version of 6, please?

    Anyway, none of the three versions of 6 has yet the system variable cpInReviewMode. You'll have to create your own user variable, will label it 'v_review' to track that. You don't tell if you allow multiple attempts on Quiz level? The idea is that this user var has an initial value of 0 and will be toggled to 1 when the last Quiz attempt is done. This is possible by creating a conditional advanced action, triggered on entering the Score slide, something like:

       IF cpQuizInfoAttempts is equal to n      (n being number of Quiz Attempts)

          Assign v_review with 1
         Continue

      ELSE

         Continue

    Create your image (or text container) on the question slide, that you want to show up during Review and make it hidden in the Properties panel. Beware: the objects on a question slide are always on top of the stack, put that image where it is not beneath a quiz object. And for the On Enter action of that slide create another conditional advanced action:

      IF v_review is equal to 1

        Show image

        Continue

      ELSE

        Continue

    Lilybiri

    Zoey2005Author
    Inspiring
    January 30, 2014

    i have version 6.0.2.240

    I give the user three chances . . .

    To make the image hidden I uncheck Visible in output?

    Thanks Lilybiri!

    Lilybiri
    Legend
    January 30, 2014

    Yes, uncheck Visible in Output, that makes it invisible to start with.

    Three attempts on Quiz level (in Quiz Preferences)? Then you'll have to replace the 'n' in my description by 3. The system variable is incremented whenever an attempt starts, for the second attempt it becomes 2 when the first question slide is entered.