Quiz with 3 score dependent pass/fail text

Hi there, and thanks for taking time to check out this post.
Im creating a quiz for a customer, and they want 3 different texts after quiz depending on the score.
Example: score under 10: blablablabla score 10-30: blablablabla score 30+: pass, blablabla
Is this possible? Because I can only find the option for setting text for pass or fail, nothing score based.

Here is an old article, with a video tutorial in which I create a conditional advanced action with multiple decisions. It was created for older versions of CP, if you are on CP7, maybe I would do it differently.
http://kb2.adobe.com/community/publishing/858/cpsid_85847.html
More specifically for your question, check this blog post:
http://blog.lilybiri.com/question-question-slides-in-captivate
Lilybiri

Similar Messages

  • SCO Mastery Score vs Pass/Fail  Options

    Hi,
    Could someone explain to me the deference between setting a
    the SCO Mastery Score at say 80% and setting the pass/fail option
    to 80%?
    It seems in content we have created in the past that SCO
    mastery score is essential in stopping content going to completion
    and to transcript while the pass/fail setting doesn't act in this
    way. So this leads to the question, what is the point of the
    pass/fail setting?
    Any advice would be greatly appreciated as always.
    Ryan

    Ryan, from what I have experianced with this, the pass/fail
    option determines the score that Captivate uses to decide if it
    should display pass of fail slides, or the message on the results
    slide. the SCO Mastery Score tells your LMS what to use for pass or
    fail.
    Dave.

  • Tracking Pass/Fail on LMS

    I am trying to track pass/fail on a Captivate project and I
    am having difficulties with the LMS. It is tracking as completed
    after just the first slide, before even taking the quiz. I have my
    quiz settings set to report "Quiz results only", Pass/Fail, Report
    to LMS as Percent, Reporting level is "Report Score", the Pass/Fail
    options are set to 75%.
    NOTE: I have allowed the user 2 attempts to pass. Could this
    be what's giving me trouble?

    Look at the Project > Advanced Interaction panel and see
    if you have
    score values setup throughout your lesson as you should.
    It sounds like perhaps you have a low number of scored
    interactions and
    that 75% is being met as soon as they answer the first
    question
    correctly? Compare the Advanced Interaction results to your
    Quiz
    Preferences > Pass/Fail options and see what shakes out...
    Erik
    BriarPatch1 wrote:
    > I am trying to track pass/fail on a Captivate project
    and I am having
    > difficulties with the LMS. It is tracking as completed
    after just the first
    > slide, before even taking the quiz. I have my quiz
    settings set to report
    > "Quiz results only", Pass/Fail, Report to LMS as
    Percent, Reporting level is
    > "Report Score", the Pass/Fail options are set to 75%.
    >
    > NOTE: I have allowed the user 2 attempts to pass. Could
    this be what's giving
    > me trouble?
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - eLearning
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    Authorware Tips!

  • Count the Pass/ Fail in a DAQ reading testing ?

    I want to write the while loop to read the DAQ signal. Each time, the DAQ input signal is compared with the spec. limit. The signal that is within the limit will be recorded as " Pass " while the signal out of spec. will be recorded as " Fail ". At the end of the testing ( I break the program), the testing result will be displayed on the testing panel.
    I believe my question is similar to the programming of " A=A+1 ". Can anybody help me to resolve the problem ?

    Tian,
    Are you looking for just the number of passed and number failed measurements or a record of each individual test. If you are only concerned with the number of passed/failed tests then use a shift register. Right-click on the border of the loop and choose Add Shift Register. Then use a case structure. If it passed the test (true case) then increment the value. If it did not pass the test (false case) then just wire the value straight through the case structure. To get the number that failed simply subtract the number that passed from the iteration count.

  • Pass/Fail issue with Quiz and Click Buttons

    Got a complicated one for ya!
    I have a project that has about 100 quiz questions.  I want to add slides with an image for backgrownd, a voice over and a "Click Button" to be used like a Simulation.  If the "Click Button" is not clicked on, I want the slide to act like a Quiz and be marked as wrong.
    At the end of the Quiz I want the Pass/Fail function to be: If Pass: "Continue" then if Fail "Jump to Slide". This Failed Slide would jump to the last slide; the end of the project with a "Thank you".  If Passed, the project continues to display more information on other slides.
    The tests I have done the Pass/Fail seems to not be working.  If failed, the project continues just like the Passed even though the "Pass/Fail" options are marked correctly.
    What do you think?

    Also check the options under Quiz > Settings > Required.  It could be that you have it set to something other than Optional which might be restricting things.

  • Having an issue with passing the text of a link to a session variable.

    I am having an issue with passing the text from a link to a session variable. I am adding this html as a literal for each item in the list that i have populated with a query.
    List<Literal> lit = new List<Literal>();
    for (int i = 0; i < posts.Count; i+=4)
    Literal someLit = new Literal();
    someLit.Text=
    @"<div class='row'>" +
    "<div class='col-md-12'>" +
    "<div class='panel'>" +
    " <div class='panel-body'>" +
    " <!--/stories-->" +
    " <div class='row'> " +
    " <br>" +
    "<div class='col-md-2 col-sm-3 text-center' id='javascript'> <h3>" +
    " <a href='#' runat='server' onserverclick='UserProfile_Click'>" + posts[i + 3] + " </a>" +
    "</h3>" +
    " </div>" +
    " <div class='col-md-10 col-sm-9'>" +
    "<h3><a href='Thread.aspx' runat='server' onserverclick='MyFuncion_Click'> " + posts[i] + " </a></h3>" +
    " <div class='row'>" +
    " <div class='col-xs-9'> " +
    posts[i + 1] +
    " </div>" +
    "<div class='col-xs-3'></div>" +
    posts[i + 2] +
    " </div>" +
    "<br><br>" +
    " </div>" +
    " </div>" +
    " <!--/stories-->" +
    " </div>" +
    " </div>" +
    " </div><!--/col-12-->" +
    " </div>" +
    "</div>";
    lit.Add(someLit);
    for(int i=0; i<lit.Count; i++)
    this.Controls.Add(lit[i]);
    I use one of the list positions as the text for a link in two different spots. For now, lets only talk about the line:
    <a href='#' runat='server' onserverclick='UserProfile_Click'>" + posts[i + 3] + " </a>
    Since I am generating these controls at pageLoad, I can't make them <asp:Linkbutton>s. And since they are anchor elements, I don't have access to an onCommand attribute or onservercommand attribute.
    All I want to do is access the content from inside the specific link tags that I generate on link click and set it as a session variable. That's what I would like my UserProfile_Click function to do. I cant commandargs it in like i can with a linkbutton's
    OnCommnad attribute, however.
    My fear is that the onserverclick attribute resolves so something else on pageLoad normally and since I am generating it the way I am similar to the way a <asp:linkButton> resolves to a generated JavaScript.
    Any help?

    @Brunellus
    For questions related to ASP.NET use the ASP.NET forum http://forums.asp.net     
    You should get more, better and faster answers on the other forum.  Thanks, ahead of time.
    Best Regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I copy test plan WITH ITS RESULTS (PASS/FAIL) to other project in MTM??

    How can I copy test plan WITH ITS RESULTS (PASS/FAIL) to other project in MTM??

    Hi odedn,
    Thank you for posting in MSDN forum.
    Based on your issue, you mean that you want to copy the test plan with test results from the current team project
    to other team project, am I right?
    If yes, as far as I know that when we copy test plan with test results to other team proejcts. It is default that
    there just will not copy the test plan with test results (pass/fail) to other team project in MTM.
    You can refer the following MSDN document’s
    what gets cloned, it explained that which objects are copied from the source test plan to the destination test plan.
    Reference:
    http://msdn.microsoft.com/en-us/library/hh543843.aspx
    If you still want to this feature, I suggest you can
    submit this feature request:
    http://visualstudio.uservoice.com/forums/121579-visual-studio. The Visual Studio product team is listening to user voice there. You can send your idea there and people can vote. If
    you submit this suggestion, I hope you could post that link here, I will help you vote it.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need help for Flash quiz with score and timer

    Greetings, I need to urgently create a flash
    game with 10 questions, 3 answers per question. At the end of the
    quiz I need to get the time the quiz was completed for, what answers the player answered correctly and the time its completed into a database, + a couple of fields like name and phone that the user fills also needed to be added into db with the score and time. I need it by the end of tomorrow and I do realise i dont have the knowledge to make it, So if there is anyone that wishes to help or trade services I can give you back the favour by creating some html/css/web design content for you. Thanks in advance and please excuse me for my terrible english.

    download flash cs6 and use it to publish your ad or expand flash cc's publishing capabilites.  if you have a flash cc subscription you can download and use flash cs6 after logging into your cc acount.
    here's how to expand publishing capabilites of flash cc: http://forums.adobe.com/message/5511080#5511080#5511080

  • Captivate 5.5 Quiz Preferences Pass/Fail Actions

    Is there a good explanation anywhere of the Pass/Fail actions in Captivate, when one would want to use an action and which combinations of actions can or should be used?
    No matter what I choose for actions, for both passing and failing grade, Disable, Enable, Increment, and Deincrement are grayed out. If they are always grayed out, what are they used for?
    I looked this up in the Adobe Help menu, but as often happens, the information is too vague and high level in the Help menu for any real understanding.

    Hi Jay,
    I always execute an advanced actions for Pass/Fal actions, that will give you all possible statements (except Increment... because they are never available in advanced actions, one of the feature requests I have already entered several times). In this blog post I tried to explain the functionalities of question slides and the score slide, and those Pass/Fail actions are included in the blog post:
    Question Question Slides in Captivate
    Lilybiri

  • Trouble with the pass/fail test

    I started having this trouble just recently and I can't figure out the problem. Just all of a sudden (without me changing anything anywhere apparently), whenever I call a pass/fail test and if the test fails, the sequence execution immediately goes to the <End Group> step. I want the execution to proceed with the next step regardless of a pass or a fail. I have rechecked the run options repeatedly and there's nothing in there that might be causing this. Also, if a pass/fail step fails and I am running on single pass, even the report does not get generated.
    I know it can be really hard for someone out there to tell me what the problem is. I am posting this message here just to see if people have any general comments/suggestions on what might be going on (perhaps this is a common problem which someone has run into before). The comments/suggestions might help me debug the problem.
    Thanks
    Anuj

    Hi Anuj,
    Do you have other step type in the same sequence or just Pass/Fail type?
    What adapter type are you using, LabVIEW, CVI, etc...
    Does it happen in the just one sequence or any sequence?
    What versions are you using?
    Posting an example would help.
    Regard
    Ray Farmer
    Regards
    Ray Farmer

  • Failed exam 70-511 with 686 score. I was confident of through this exam in the 3rd attempt.

    Hi ,
    Greetings,
    I Failed exam 70-511 with 686 score. I was confident of through this exam in the 3rd attempt. But why I was failed? Can I revisit the evaluation method? I cant attempt one more time for this small margin failure. Please advise.
    PS: I am an HP employee having licensed Visual studio 2010 s/w
    I have 4Years experience in .NET and Windows Application development with VC++ and C#
    WPF experience of 6months
    Request someone to advise plsss

    I am going to have to agree with you in that there is something wrong with this exam. I just took it today and I failed with a score a little below 700. I have taken so far more than 80 MCP exams, so I am experienced enough to be able to tell most
    of the time how well I am going to do in the final score based on how confident I am on the answers that I am giving. In this exam, I was convinced that most of my answers were correct, so I was expecting a high score, possibly close to 900. So I
    was very surprised at the final failing grade. I am left with the impression that there must be some anomaly in the way that this exam is scored, when compared with other MCP exams.
    Albert,When did you answer my question. I was waiting for more than 2 weeks to see any reply. but How your reply shows Nov 14 ,on the date I didn't get any reply actually .?

  • SCORM - Simple Quiz - Pass/Fail Only

    Flash CS4
    AS2
    Good Afternoon,
    I've created a simple multiple choice quiz in Flash.
    I was wondering if anyone could point me to some resources for writing a simple SCORM wrapper, and the accompanying AS2 code.  This is only going to report a pass/fail to the LMS - that's all - nothing more at this point.  I'm hoping there should be a simple tut on this, as I said, it's pretty straight forward.
    Thank you!
    Actus

    I have a tutorial here:
    http://pipwerks.com/2008/04/27/how-to-add-basic-scorm-code-to-a-flash-movie/
    It uses a custom (and free) SCORM ActionScript class and JavaScript wrapper so you don't need to write your own.
    The tutorial uses SCORM 2004, but the JavaScript wrapper and ActionScript classes are version-neutral (works for SCORM 2004 and 1.2). There are two versions of the ActionScript class available: one for AS2 and one for AS3.
    You can download the wrapper files here:
    http://pipwerks.com/downloads/
    - philip

  • Sequence call with Pass/Fail Test always returns Passed result

    In TestStand 2.0, I use Sequence Adapter with Pass/Fail Test step to call a subsequence, I always receive a Passed result, even as I force fail a step in the subsequence and enabled the Step Failure Causes Sequence Failure option.
    Attachments:
    Example1.seq ‏17 KB

    Tan -
    The status expression for the Pass/Fail step type does not look to see if the status has been previously set by the code module in this case the sequence call.
    Step.DataSource != "Step.Result.PassFail" ?
    Step.Result.PassFail = Evaluate(Step.DataSource) :
    False, Step.Result.PassFail ? "Passed" : "Failed"
    It just set it to Passed or Failed even if the status is already "Failed".
    You could either,
    1) Change the Pass/Fail expression to the following for the step,
    Step.Result.Status == "Done"? Step.Result.PassFail : False
    or
    2) Use two steps, a Sequence Call and a Pass/Fail that uses the None Adapter. The Pass/Fail could operate on the previous step if necessary.
    Scott Richardson - NI"
    Scott Richardson
    National Instruments

  • Need help with pass/fail expression​.

    I've got an array of strings parameter called Parameters.CAN_Switch_Channel_Name[0] (equal to a string) which gets passed into a subsequence.  During run time when this subsequence gets called, a new parameter gets created which gets named the string which is passed in through Parameters.CAN_Switch_Channel_Name[0].  So for instance if Parameters.CAN_Switch_Channel_Name[0] is equal to CC_VS_Spd.CC_Set_Switch, then a parameter will get created at run time called: Parameters.CC_VS_Spd.CC_Set_Switch.  I want to create a pass/fail expression to check the new parameter.  I am not sure how to build the expression.  I tried:
    Parameters."Parameters.CAN_Switch_Channel_Name[0]"​  This didn't work!
    Parameters.(Parameters.CAN_Switch_Channel_Name[0])​  This didn't work either!
    I need a way of pulling out the value in Parameters.CAN_Switch_Channel_Name[0] and appending it to Parameters. to reference the parameter created at run time.
    Any ideas?

    Hi,
    I read this a few times now, and just when I think I got ......
    In your SubSequence you have a parameter which is called CAN_Switch_Channel_Name[] which is an array of strings.
    Now do you wish to change the Name of this string array from CAN_Switch_Channel_Name to CC_VS_Spd.CC_Set_Switch or is it that the contains of the array is set to eg
    CAN_Switch_Channel_Name[0] = "CAN_Switch_Channel_Name to CC_VS_Spd.CC_Set_Switch"
    and is this done in the Sequence or before the sequence ist called.
    Maybe a small example of what you are trying to achive, even if its not working may help.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Restarting a systemd.service with a dependency job failed.

    Hello.
    Let's say I have foo.service containing that:
    [Unit]
    Description=Is executed only if bar.service success
    Requires=bar.service
    After=bar.service
    [Service]
    Type=simple
    TimeoutSec=6
    Restart=on-failure
    ExecStart=/usr/bin/touch /tmp/test
    And i have bar.service containing that:
    [Unit]
    Description=Test in foo.tld is reachable
    [Service]
    Type=oneshot
    ExecStart=/usr/bin/ping -c1 foo.tld
    [Install]
    WantedBy=multi-user.target
    If the ping fails in bar.service, then I'll get that when I try to start foo.service: « A dependency job for foo.service failed. See 'journalctl -xn' for details. »
    How can I make foo.service check every n seconds if its dependency jobs are fullfilled/successfull instead of just failing and stopping like it currently does ?
    I'm searching for a "Restart" option that would apply if the dependency check fails. I'm not sure if this is possible.
    Thank you in advance for your answers.

    Maybe you're looking for RequiresOverrideable? From the man page of systemd.unit
    RequiresOverridable=
    Similar to Requires=. Dependencies listed in RequiresOverridable= which cannot be fulfilled or fail to start are ignored if the startup was explicitly requested by the user. If the start-up was
    pulled in indirectly by some dependency or automatic start-up of units that is not requested by the user, this dependency must be fulfilled and otherwise the transaction fails. Hence, this option
    may be used to configure dependencies that are normally honored unless the user explicitly starts up the unit, in which case whether they failed or not is irrelevant.

Maybe you are looking for

  • Condtional formatting on Grand Total in OBIEE 11.1.1.6.7

    Hi, We have upgraded a report from 10g to 11g and the report has pivot table which has conditional formatting set on the Grand Total level and is resulting in the following error in OBIEE11g. "DXE compiler error. No table 'GTGT' found in DXE. Source

  • Best practice for initializing objects in a JSF backing bean?

    Hi, What is the best practice for initializing some objects in the JSF to-page backing bean before the to-page is displayed for the first time? The initialization would vary and depend upon a command link in the from-page. Regards, Al Malin

  • Adobe Premiere Elements 10. Is it sensible to upgrade my memory to 32 Gb?

    I have the following configuration (bought in September 2011). Asus P8Z68 DELUXE, Z68 chipset Intel Core i7 2600K 3.4 Ghz 8Mb Kingston Crucial SSD M4 128 Gb Asus GeForce GTX560 Ti DirectCU II TOP 1GB 2xDVI WD 2Tb sata 600 (black edition). Windows 7 p

  • Lightroom 4 email problem

    Looking for help with problem with trying to email a photo from lightroom 4.  I have validated the email address in the manager.  Testing by trying to send one photo via "export" with a preset as per info on a you tube video from reliable source of p

  • Send video to MAC user

    I am trying to send my video through Dropbox to a friend with a MAC Pro.  What file type shall I use?