Formatting the Quiz Review Area

Is there a way to re-format the font, background, size or any
other appearance aspects in the quiz review area? I know how to
change the messages presented in this area via the Quiz Manager,
but need help with changing the font size, etc.
Speedy reply appreciated - as this is the last touch to a
project due tomorrow. Thanks!

Hi pewinggrim and welcome to our community
Unfortunately, there is very little you can do with this.
Pretty much what you see is what you get. Aside from the text, you
can't really control formatting.
Sorry... Rick

Similar Messages

  • Using the Quiz Review functionality in Captivate 5

    I’d like to have a more robust question review in the Captivate 5 quiz I have.
    In previous versions of Captivate I could create a quiz, then in the quiz settings click the “Allow user to review quiz” to allow for more robust question review information.
    I would then, in each question, double-click (or get properties) for each individual question review area and craft a response. Generally pointing the student to the lesson and slides they need to review in order to get the correct answer for the question.
    Can you do this in Captivate 5? All I can see/access is the global review area response which affects all question review areas equally.
    Thank you,
    TPK

    Hi Lilybiri,
    Thank you for your response. Here is what I meant when I referred to "loop back"....
    It might be better phrased by saying that in Captivate 3 I could use the "go to slide" behavior to "jump to" the same slide I am on. This basically reloads the slide. So, if  (in Captivate 3) I am on slide 6 (which is a multiple choice question) and I am in the Advanced answer menu and I select "jump to slide" I might see:
    slide 1
    slide 2
    slide 3
    slide 4
    slide 5
    slide 6
    slide 7
    slide 8
    And, if I want to, I can select the slide I am on (in this example, slide 6). From the student point of view, when they select this wrong answer, then click to advance, slide 6 reloads.
    In Captivate 5, when I select Advanced answer and use "jump to slide", this is what I see:
    slide 1
    slide 2
    slide 3
    slide 4
    slide 5
    slide 7
    slide 8
    There is no option to "jump to" the slide that I am on (in this case, slide 6). (It looks like in Advanced Actions I might be able to pull this trick off, but I am uncertain as to how to use the controls and haven't the time to do a lot of tests.)
    You are correct about the work flow. It is difficult for me to change my work flow habits. It seems to take me longer to set the slide items and their characteristics, but I do see the potential in Captivate 5 and overall I like the stability and functionality. Adapting to the (very) different workflow while producing content for a demanding department is a challenge. I'll get used to it over time.
    Thank you for your response and the linked information.
    TPK

  • I'm an artist with a number of CDs in the itunes store and most of the customer reviews are missing or hidden.  Anyone have a solution?

    I'm an artist with a number of CDs in the itunes store and most of the customer reviews and ratings are missing or hidden.  I know there have been reviews posted but I can't see them on my computer in the itunes store.  Anyone have a solution?

    You aren't being left in any lurch. Your hardware is obsolete, and the software world has moved on. If you have a qualm about the matter then discuss it with the software's developers. Apple is not responsible for software they do not develop. This is technology, and you will just need to get used to it.

  • Is there a way to format the way dates are displayed?

    ive got a query that returns dates. Currently, the code is:
    SELECT uptd.delivery_month delivery_time
    FROM USER_pwr_term_data uptd
    WHERE uptd.eff_date='07/JUN/02'
    the data in the database is listed in the format of 07/01/2002 and cannot be changed.
    the output from the query is coming out as 2002-07-01 0:00:00
    i am looking for the output date to be simply Jul-02 or something to this effect.
    Thanks,
    Jared

    In the group by and order by clauses, you need to use whatever to_char format that you want to group by and order by. For example, if you want to order by the year, then the numerical month, then use to_char and 'YYYY-MM'.
    If you want to display the column in the select clause in a different format than what you group by and order by, then you need to wrap an additional to_date around the format that you used for group by and order by, to convert it back to a date format, and another to_char around that, to convert it to the format you want to display it in. For example, if you want to display it like Jul-02, where 02 represents the year 2002, then use to_char and 'Mon-YY', wrapped around the to_date, wrapped around the format you used in the group by and order by clauses.
    Please see the example below. Also, notice that how the date is displayed by default, is dependent upon the nls_date_format. Also, notice that every value of eff_date that I entered is the same, despite the fact that I entered it in various formats, because I used to_date.
    SQL> ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD'
      2  /
    Session altered.
    SQL> SELECT SYSDATE FROM DUAL
      2  /
    SYSDATE
    2002-06-24
    SQL> CREATE TABLE user_pwr_term_data
      2    (delivery_month DATE,
      3     eff_date       DATE)
      4  /
    Table created.
    SQL> INSERT INTO user_pwr_term_data
      2  VALUES (SYSDATE, TO_DATE ('06/07/2002', 'MM/DD/YYYY'))
      3  /
    1 row created.
    SQL> INSERT INTO user_pwr_term_data
      2  VALUES (SYSDATE + 30, TO_DATE ('07/JUN/2002', 'DD/MON/YYYY'))
      3  /
    1 row created.
    SQL> INSERT INTO user_pwr_term_data
      2  VALUES (SYSDATE - 30, TO_DATE ('07/Jun/2002', 'DD/Mon/YYYY'))
      3  /
    1 row created.
    SQL> INSERT INTO user_pwr_term_data
      2  VALUES (SYSDATE + 31, TO_DATE ('06/07/2002', 'MM/DD/YYYY'))
      3  /
    1 row created.
    SQL> INSERT INTO user_pwr_term_data
      2  VALUES (SYSDATE - 31, TO_DATE ('06/07/2002', 'MM/DD/YYYY'))
      3  /
    1 row created.
    SQL> COMMIT
      2  /
    Commit complete.
    SQL> SELECT * FROM user_pwr_term_data
      2  /
    DELIVERY_M EFF_DATE
    2002-06-24 2002-06-07
    2002-07-24 2002-06-07
    2002-05-25 2002-06-07
    2002-07-25 2002-06-07
    2002-05-24 2002-06-07
    SQL> SELECT      TO_CHAR (TO_DATE
      2                  (TO_CHAR (uptd.delivery_month, 'YYYY-MM'),
      3                'YYYY-MM'), 'Mon-YY') AS delivery_time,
      4              COUNT (*) AS total -- or other group function
      5  FROM        user_pwr_term_data uptd
      6  WHERE       uptd.eff_date = TO_DATE ('07/JUN/2002', 'DD/MON/YYYY')
      7  GROUP BY TO_CHAR (uptd.delivery_month, 'YYYY-MM')
      8  ORDER BY TO_CHAR (uptd.delivery_month, 'YYYY-MM')
      9  /
    DELIVE      TOTAL
    May-02          2
    Jun-02          1
    Jul-02          2

  • Have Adobe Captivate 6 (not interested in upgrading)- Struggling to publish a simulation in a format that QMP can pickup - QMP needs a qml file. previous versions had no problem all had tick boxes for QMP in the Quiz - Reporting Settings but this version

    Have Adobe Captivate 6 (not interested in upgrading)- Struggling to publish a simulation in a format that QMP can pickup - QMP needs a qml file. previous versions had no problem all had tick boxes for QMP in the Quiz - Reporting Settings but this version does not have. If i publish to Flash QMP does not see the file.

    Re:
    The quiz review button is inconsistent - sometimes it shows the ticks and crosses other times it doesn't - did you find a solution? I'd dearly like to be able to tidy up the ticks!
    Thanks
    Sharon

  • Adobe Captivate 6 problem with Review area text on Quiz results page

    Hi,
    I am using Adobe Captivate 6 and I have a test at the end of my project with the built in 'Quiz results page' at the end.
    However, the standard 'review area' provided always seems to play up for me. I have changed the 'quiz results messages' through the preferences and changed the font of the review area, but everytime I play my project the message displayed is in a different font that I did not set and the size is so large that the sentence goes off the screen. It has done this on numerous projects.
    I have changed the font of the review area and it shows up on my normal view, but everytime I preview the project or publish it, the font changes back to a strange default.
    Does anyone know how I can fix this?
    Thank you.

    Hannah,
    That is a very well-known bug in the last Captivate versions... if you screen these forums you'll find multiple threads complaining about it. Some fonts will work, I think Calibri works (not all styles however) and all the other fonts revert to Times New Roman. I'm a bit puzzled that you call it a 'strange default'.
    Lilybiri

  • Captivate 5.5 Review message no longer wraps in Review area caption box

    Has anyone else experienced this issue? I logged it as a bug when someone else in my company reported the same issue to me. I searched for it on the Internet and didn't get any hits. We tested to see if it was just for converted projects from 4 to 5.5 or for new ones as well. It's not working for new ones. This problem did not exist in version 5.
    Basically the text won't wrap so the text displays completely across the screen (no matter what size the Review Area caption size is), cutting off the text at both ends for longer feedback messages.
    Workaround: You can work around this issue by forcing a carriage return in your feedback messages by pressing Enter at an appropriate place in the message. You'll probably have to fool around with that a bit to determine the best place.

    So, here is my workaround:
    On the Quiz Review slide, I created two captions, one for passing, and one for failing.  I set both of them to be hidden.  I then created a conditional Advanced Action called ExamCaption and set one expression to show the Pass Caption if cpQuizInfoPointsscored was above or at my passmark, and set another expression to show the Fail Caption if cpQuizInfoPointsscored was below my pass mark.  I also set each expression to hide the other non applicable caption for good measure.
    I set the On Enter action to ExamCaption for this slide.
    Reading Lilybiri's blog, I also replaced the Captivate Pass/Failure captions with just a space for each, so that nothing is shown.
    Only problem is, the captions fade out after 3 seconds, the duration of the slide, despite being set to No Transition.  I therefore increased the length of the slide to 60 seconds.  If anyone has a better workaround, please let me know.
    Hope that helps!

  • My course is stuck in the quiz section...

    I'm using captivate 8 and all the settings are set so the user can retake the quiz upon failure and review.
    When I play the course, the first part allows full navigation, but when I get to the quiz it gets stuck.  I cannot move forward or back and I cannot answer the questions (grayed out).  I have removed and re-uploaded, but still does not work. Please help

    Thank you for your help.  The quiz settings are the same ones I always use (normally without issue).  The required option is to answer all, I do not have branch aware checked--what does that do?  I didn't change any of the master slides, they are all simple multiple choice questions. 
    I set the playbar to disappear during the quiz, which might be a quick fix, as the issue started when the user used the back and forward buttons.-- still not sure why that matters (since the settings allow for retakes.
    If you have any further info or clarification I'll appreciate it

  • Percent in Review area

    Hi! I've made a project that only contains question slides.
    The last slide is the one with the results. What I want to do is to
    print the percentage of the correct answers in the review area at
    the bottom of the last slide. I know I can get the percentage, but
    I want to print it in a text at the review area, something like:
    "Your score was only xy%" when the student failed. thnx in
    advance!

    So, here is my workaround:
    On the Quiz Review slide, I created two captions, one for passing, and one for failing.  I set both of them to be hidden.  I then created a conditional Advanced Action called ExamCaption and set one expression to show the Pass Caption if cpQuizInfoPointsscored was above or at my passmark, and set another expression to show the Fail Caption if cpQuizInfoPointsscored was below my pass mark.  I also set each expression to hide the other non applicable caption for good measure.
    I set the On Enter action to ExamCaption for this slide.
    Reading Lilybiri's blog, I also replaced the Captivate Pass/Failure captions with just a space for each, so that nothing is shown.
    Only problem is, the captions fade out after 3 seconds, the duration of the slide, despite being set to No Transition.  I therefore increased the length of the slide to 60 seconds.  If anyone has a better workaround, please let me know.
    Hope that helps!

  • Editing Quiz Review

    Can anyone help? Once a quiz has been run you have the option tor eview your answers. When going through the review any incorrect answers are displayed in black boxes. Is there a way these black boxes can be removed as it really does not look very nice. Also there are 3 buttons during the quiz review but the Clear and Submit do nothing and as such are redundant. Can these buttons be removed? thanks for any advice/help

    Hi there
    Unfortunately there isn't much you can do aside from logging a feature request to ask for a change in a future version.
    Some things are possible to change by exporting the Captivate to Flash. But I'm not sure these survive the trip. I don't use Flash, so can't really speak to that.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How can I translate the quiz page number?

    Hello out there,
    We are working with Captivate 6.0.1.240.
    Our project has a series of quiz questions.
    The quiz questions are page-numbered (e.g. "question 3 of 8") by our Captivate default language German.
    How can I change the language of this numbering, e.g. into French? Can I edit the default text or change the
    layout to "3/8"?
    After importing the translation document all texts were changed to French, but not these quiz numbers.
    What can we do?
    Thanx
    Alex

    A bug that has finally disappeared in 7, now you can localise the language, it has been added to the Quiz labels. But that doesn't help you of course. For 6 and earlier versions I once wrote this blog post:
    http://blog.lilybiri.com/customized-progress-indicator
    Lilybiri

  • Captivate 5 quiz review not showing correct answers when loaded to LMS

    Hello All. I would really appreciate some help please. Despite the quiz review working correctly when published, i.e. both 'your answer' and 'the correct answer' captions appear in the review, on loading to LMS the review caption does not show the 'the correct answer is' , but instead 'you did not answer this question completely'.
    Any ideas why this should be the case? I've attached screen shots of my quiz preferences for completenes.
    Many thanks in advance.
    Janey

    Do the same modules evidence this behaviour when published and played outside the LMS, e.g. from a web server or on your hard drive?
    If not, it's possible that some setting in the LMS is over-riding what happens at playback.  You could try checking the box under LMS Customisation for Never Send Resume Data and see if that seems to make any difference.  If the LMS is maintaining a record of some previous attempt at the same module then turning off Resume Data might show that up.

  • Submit button disappears when returning to the quiz slide

    Hi everyone,
    We just upgraded from Captivate 4.0 to 5.5. I'm learning 5.5 differences from 4.0 and have one that I can't figure out.
    On the quiz slides, if the learner moves back and forward within the quiz slides, the quiz buttons are fine. However, if they click Back on the 1st quiz slide, then go forward to the quiz slide the submit button flashes briefly then disappears for that slide and all the other quiz slides. I can't find a setting to fix this.
    Any suggestions or thoughts would be appreciated. Thank you.

    Sounds like a quiz scope issue.  If you click back on the first quiz slide that would take you to the slide BEFORE the first quiz slide which is technically outside the quiz scope.  This usually results in Captivate locking the quiz.
    I haven't personally seen this button disappearing act but you can test whether quiz scope is the likely culprit by adding a scored click box to the first slide of the project, which will then extend the quiz scope out to that slide.  If this prevents your quiz slide buttons from disappearing, we know where the issue comes from.  That may mean you have still found a bug that needs to be fixed though.

  • Review area for Sequence quiz

    I am having trouble with the sequence quiz review box. I have
    8 questions to be put in correct order - if the questions are
    answered incorrectly, there is insufficient space in the review box
    to display the correct order. Does anyone have a solution for this
    problem?

    Sorry Christine, for letting this thread slip through the
    cracks. Many posts get too many (differing) answers, but somehow
    this one fell off everyones radar.
    Okay, yes, *size* can mean either the physical size in
    pixels, or the number of slides in the project. In you case, I was
    referring to the pixel size because i was wondering if you had made
    a mini-movie which did not have room enough to display the answer
    during review. By the way, 790x555 is a very good size to work
    with.
    But you have probably indicated the right answer for
    yourself. Your correct answer(s) are wordy, and I am sure that is
    your problem. Have you tried, in editing the Question-slide, to
    grab and drag the *area* for the review answers? It can be
    manipulated, but only to a degree. That is one of the reasons I
    seldom use any question format that requires lengthy typing to
    complete the answer.
    There is not necessarily a maximum number of characters
    acceptable, but there is only so much room to display, or *review*
    those answers.
    Have a great day. I will try to pay better attention next
    time. LOL!
    Larry

  • Size and position of the review area

    hi all,
    at the end of a quiz, i get the quiz result with score and
    review area with text indicating whether i pass or fail the quiz.
    For some reason, when i make the review area box smaller, the
    text doesen't wrap with the box. In addition, i also bold the text
    but captivate doesn't reflect that after i published.
    any ideas?
    thanks
    JT

    Hi all
    We shouldn't forget to report this to Adobe as a bug.
    Click
    here to view the WishForm/Bug Reporting Form
    Cheers... Rick

Maybe you are looking for

  • Is there a way to play ios games on mac

    is there a way to play ios games on mac

  • InDesign CS3 - Default Black color issue

    Default Black color converted as Spot color in Indesign CS3. I'm using default color "Black" in InDesign CS3. While creating PS from InDesign CS3 and convert it as PDF using Distiller 7 & 8, it would have changed as "Spot Color Black" instead of colo

  • G62 primary battery replacement

    Every time I turn on my G62 laptop, I get a message stating that my primary (internal) battery is very low and needs to be replaced. I've done the test and it definitely needs to be changed. I'm having trouble figuring out which battery I'm supposed

  • Passing username and password in JInitiator

    Is there any way to pass my username and password in embed or object tag so that I don't have to type it when I am connected to the oracle application.

  • 3.X Data Source Creation in BI-7.0 environment

    Hello All. Kindly suggest how can we create 3.X version datasources in 7.0 environment. Thank You in Advance