Results slide showing all question pool results not just the ones completed.

I have several question pools which have the option to be taken independently or separately.
If the user does not take all seven of the modules then the quiz results slide at the end is incorrect as it will report all of the questions not just the ones attempted.
I have tried the Branch aware option in the quiz results option but that did not worth.
It this an easy fix or does it require me to add a variable count for each correct answer.
Many thanks
Rick

Branch aware should be just fine for that case, why do you tell it is not working? Branch Aware Quiz - Captivate blog
When you say 'score slide is not reporting correctly', I had no such problems.
You could create a custom score slide indeed, using variables, but what if you have to report as a SCORM? Only possibility in that case is Branch aware.

Similar Messages

  • Where can I find a list of all available add-ons, not just the ones I already have?

    It is incredibly frustrating to go through hundreds (thousands?) of addons, even if they are broken down in sub-categories. I understand that new ones are being added regularly, but surely a list in some format might be available every month or so?
    Thank you for your efforts.
    Aurel Guillemette

    ''aurel2015 [[#question-1055162|said]]''
    <blockquote>
    It is incredibly frustrating to go through hundreds (thousands?) of addons, even if they are broken down in sub-categories. I understand that new ones are being added regularly, but surely a list in some format might be available every month or so?
    Thank you for your efforts.
    Aurel Guillemette
    </blockquote>
    a list of only the new additions DOESN'T solve the problem, this would mean that I would have to do a very LONG search of the entire listings, THEN do a regular search of the new additions. It makes me wonder if the creators of the system, or the creators of the addons don't want to be noticed and chosen?

  • My iPad email is showing all emails in my "important" not just the ones I put there.  How do I make this stop?

    My iPad email is showing all emails in my "important" not just the ones I put there.  How do I make this stop?

    Its problem saving.
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/en-US/kb/how-to-fix-preferences-wont-save

  • Dialogue tick boxes un-hiding all fields, not just the ones where value has changed to true

    I am hoping someone can help me make what I want to happen, happen if certain check boxes are ticked withing the dialogue box
    right now I can see on the console print that the tick box turns the value from false to true but the OK button is also un-hiding all my fields rather than just the ones where the value has turned to true. What am I missing here
    //Create a Dialogue box for staff to state how many of the account owners are in branch in order for the names to show in the signing section
    var Signors =
        result:"cancel",
        DoDialog: function(){return app.execDialog(this);},
        bChk2:false,
        bChk3:false,
        bChk4:false,
        bChk5:false,
        initialize: function(dialog)
            var dlgInit =
                    "Chk2": this.bChk2,
                    "Chk3": this.bChk3,
                    "Chk4": this.bChk4,
            dialog.load(dlgInit);
        commit: function(dialog)
            var oRslt = dialog.store();
            this.bChk2 = oRslt["Chk2"];
            this.bChk3 = oRslt["Chk3"];
            this.bChk4 = oRslt["Chk4"];
        description:
            name: "Signors",
            elements:
                    type: "view",
                    elements:
                            type: "view",
                            char_height: 10,
                            elements:
                                    type: "static_text",
                                    item_id: "stat",
                                    name: "Who is here to sign:",
                                    char_width: 15,
                                    alignment: "align_fill",
                                    font: "dialog",
                                    type: "view",
                                    char_width: 8,
                                    char_height: 8,
                                    align_children: "align_top",
                                    elements:
                                            type: "view",
                                            char_width: 8,
                                            char_height: 8,
                                            elements:
                                                    type: "check_box",
                                                    item_id: "Chk2",
                                                    name: "Primary Applicant",
                                                    type: "check_box",
                                                    item_id: "Chk3",
                                                    name: "Associate 1",
                                                    type: "check_box",
                                                    item_id: "Chk4",
                                                    name: "Associate 2",
                            type: "ok_cancel",
    // did the value change when ticked - lets check
    Signors.bChk2 = false;
    Signors.bChk3 = false;
    Signors.bChk4 = false;
    if("ok" == Signors.DoDialog())
        if (Signors.bChk2 = true)
    getField("Signor1").hidden = false;
    getField("Staff1").hidden = false;
    getField("Date1").hidden = false;
    getField("Date2").hidden = false;
    if (Signors.bChk3 = true)
    getField("Signor2").hidden = false;
    getField("Staff2").hidden = false;
    getField("Date3").hidden = false;
    getField("Date4").hidden = false;
    if (Signors.bChk4 = true)
    getField("Signor3").hidden = false;
    getField("Staff3").hidden = false;
    getField("Date5").hidden = false;
    getField("Date6").hidden = false;
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    //console.println shows if bChk.. is true or false
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    //Yeah, confirmed values have changed, now show fields based on staff input
    //was primary applicant ticked
    doWhatIWant: function(results) {
    if (results [Signors.bChk2] = true)
    getField("Signor1").hidden = false;
    getField("Staff1").hidden = false;
    getField("Date1").hidden = false;
    getField("Date2").hidden = false;
    //was Associate 1 ticked
    if (results [Signors.bChk3] = true)
    getField("Signor2").hidden = false;
    getField("Staff2").hidden = false;
    getField("Date3").hidden = false;
    getField("Date4").hidden = false;
    //was Associate 2 ticked
    if (Signors.bChk4 = true)
    getField("Signor3").hidden = false;
    if (Signors.bChk4 = true)  
    ("Staff3").hidden = false;
    if (Signors.bChk4 = true)
    ("Date5").hidden = false;
    if (Signors.bChk4 = true)
    ("Date6").hidden = false;

    You're missing some curly brackets, using the incorrect equality operator, and using the long deprecated field.hidden property. Try this:
    if ("ok" == Signors.DoDialog()) {
        if (Signors.bChk2) {
            getField("Signor1").display = display.visible;
            getField("Staff1").display = display.visible;
            getField("Date1").display = display.visible;
            getField("Date2").display = display.visible;
        if (Signors.bChk3) {
            getField("Signor2").display = display.visible;
            getField("Staff2").display = display.visible;
            getField("Date3").display = display.visible;
            getField("Date4").display = display.visible;
        if (Signors.bChk4) {
            getField("Signor3").display = display.visible;
            getField("Staff3").display = display.visible;
            getField("Date5").display = display.visible;
            getField("Date6").display = display.visible;
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    I don't know if that will deal with all of the problems, but it's a good start.

  • HT1296 My I-Phone has music on it that was synced from an I-Tunes library from a previous computer (which is no longer in use) AND purchases from the I-Tunes store.  I would now like to transfer ALL of that music (not just the purchases from the I-Tunes s

    My I-Phone has music on it that was synced from an I-Tunes library from a previous computer (which is no longer in use) AND purchases from the I-Tunes store.  I would now like to transfer ALL of that music (not just the purchases from the I-Tunes store) into the I-Tunes library that I've established on a new computer.
    Can that be done, and how (I've attempted without any success)?
    Any assistance would be GREATLY appreciated!!

    Contact iTunes support and explain your situation to them.  They may let you redownload it at no cost.
    http://www.apple.com/support/itunes/contact.html
    If they don't, I'm afraid you'll have to purchase it again.  Sorry.
    B-rock

  • CAN I ENLARGE THE SIZE OF ALL TRACKS AND NOT JUST THE ONE TRACK AT A TIME

    I would like to enlarge the tracks on the top half of the mix screen and not just the one track I'm working on. I find that most times I'm working in 2 or 3 tracks only and it would be great if I could enlarge the size of those to work with rather than the thin tracks they appear as. I realize if I click on one that it will appear larger below to edit but can I have all the tracks recorded appear larger?
    [email protected]
    Ross

    NO

  • After I edited my contact list on my iphone I set up the icloud account.  Now all of my old contacts have been added to the edited ones.  If I delete the icould will I lose all of my contacts or just the ones brought in by icloud?

    After I edited my contact list on my iphone I set up the icloud account.  Now all of my old contacts have been added to the edited ones.  If I delete the icould will I lose all of my contacts or just the ones brought in by icloud?

    You cannot delete an Apple ID, you can just stop using it. If your photos are still on your phone now, then I suggest you do back them up. Transfer them from the phone into your iPhoto Library. iCloud only backs up your Camera Roll automatically. But the Camera Roll only contains new photos that were taken but not yet transferred using iTunes.

  • Profile Manager deleted all of my files - not just the profile. Any tips on what happened and how to resolve?

    I created a profile with Profile Manager. It dumped a lot of files into the directory that I selected. At that point I wanted to delete the profile and the associated files. When I selected the Delete Profile and Delete Files option it delete all files and folders in the directory - not just the profile files. It offered no warning that it was going to delete more than the profile files. Why did it do this and is there a way to recover the missing files? OS = Windows 7.

    You should never select a folder to be used as profile folder that already has files in it.<br />
    You should always choose a new and empty folder because you can use the Profile Manager to take up an existing profile by choosing the location.<br />
    Removing the profile and opting to delete the files will remove all the files in that folder and remove the folder as well, so be cautious with doing that.

  • Why does my back arrow close out the whole site and not just the one page?

    I just replaced my old MacbookPro with a new one.  The one difference that is driving me crazy is that the back arrow (button) closes the whole site, not just the page that I am on.  Is there a way to change this.  My old computer just sent me back to the previous page.  Thanks in advance!
    Cindy

    Red buttons, back buttons, I guess specifics matter.
    Glad you figured it out.

  • How do I view all my movies, not just the ones I have downloaded

    I have a few movies I downloaded off the Itunes store but I cant seem to find them on my itunes movie  list. All that is listed are the movies I have downloaded to the hard drive and not  the ones I have in the cloud. THe movies show up on my other devices. 

    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • Use pages from other templates...not just the one you chose.

    Is there a way to choose a page from another template besides the one I started with. For example if I choose the "School Report" template, but want to also use a page from the "Lesson Plan" template, how can I do this. If you click add new page, it only gives you the initial template pages. I tried opening a new template and copying and pasting the page I wanted, but it does not work.

    My guess is that it's because the objects are floating ones.
    If you switch them as inline one, you will be able to copy the page, sometimes after inserting section breaks.
    Yvan KOENIG (from FRANCE mardi 10 février 2009 21:19:34)

  • When I send an email message, my Mail shows two messages outgoing instead of just the one I am sending.  What is going on?

    When I send an email message, my Mail shows two messages outgoing instead of just one. 
    What is going on?  Is it possible some "spyware" has crept in?

    There is an email address on my website that automatically forwards to my "regular" email address, but this problem predates setting up that website.  My primary email is a bellsouth account (AT&T) which switched to a Yahoo mail-supported service....so based on your comments, perhaps that is why the activity is looking weird.

  • How do I get my music on my iPhone to play all my songs and not just repeat one song?

    How do I get the music on my iPhone 4S to play all of my songs instead of just repeating 1 song?

    You have Repeat turned on.  While playing music, tap the screen so that you see the scrubber bar showing the time.  See that icon on the left side?  That's Repeat.  Tap it until it is white to turn it OFF.

  • How can I get a digital WDT that includes all samples, not just the one for the current time step...?

    See block labeled ''digital data'' in my attachment for reference. Currently, only the digital data point for the current time step can be seen (it is deleted before the next one appears). However, I would like it display all the samples in the table like in the example found at this link under ''Digital Waveform Control'':
    http://zone.ni.com/reference/en-XX/help/371361H-01/lvconcepts/fp_controls_indicators/ 
    Many thanks for any suggestions! I am new to Labview, so I appreciate your help.
    Solved!
    Go to Solution.
    Attachments:
    myproject.vi ‏220 KB

    Hey westerman111,
    If you're looking to produce have your display include the solution information from previous solver steps, you will need to buffer the previous data. The way to implement this in a Control Design & Simulation Loop is using the Memory.vi found under Control Design & Simulation > Simulation > Utilities > Memory.vi. It will allow you to save previous information generated in the simulation environment for letter solution steps.
    I've attached an example that should get you started in using the Memory.vi.
    I would also make sure that what you're looking to accomplish is suitable for the Control & Simulation Loop. I know you mentioned you were new to LabVIEW so I wanted to make sure you were heading off in the right direction. Is there a particular reason why you are using the Control & Simulation Loop instead of a standard While or For Loop? The Control Design & Simulation loop is unique in that it calculates the solution of a dynamic system at a prescribed time step and ODE solver. It also provides the tools to interact with the model you are solving during execution. However, if you are simply looking to perform data acquisition and measurements (instead of dynamic model simulation) I would recommend using standard LabVIEW functions.
    Here are some useful references for getting start with both LabVIEW and the Control Design and Simulation Module.
    Tutorial: Getting Started with Simulation (Control Design and Simulation Module)
    http://zone.ni.com/reference/en-XX/help/371894G-01/lvsimhowto/sim_h_gs/
    Getting Started with LabVIEW
    http://digital.ni.com/manuals.nsf/websearch/ba2fb433a7940e7a862579d40070cc2c
    Tim A.
    National Instruments
    Attachments:
    myproject_edit.vi ‏249 KB

  • Sending Calendar Appointment from Macbook to my wife's PC with Outlook 2013 and it sends a whole calendar and not just the one appointment.

    I have a Macbook Pro Late 2013, running OS X 10 Yosemite 10.10.1 and my wife has a PC with Windows 7. I use calendar that comes with my Macbook and she uses Outlook 2013 calendar. When I email from Mail on my Macbook an appointment event and my wife opens the email with the appointment, it wants to add a whole new calendar for this one event, why is this? I just want to send her a single appointment not a whole calendar.
    I tried to see if Apple Calendar on my Macbook has any options to help with this issue and I can't see anything that will help.
    Should I check out the Outlook 2013 on my wife computer to see what options if any that I need to change to help with this problem?

    closing in favour of https://support.mozilla.org/en-US/questions/1024353

Maybe you are looking for

  • How to get the date for the first monday of each month

    Dear Members, How to get the date for the first monday of each month. I have written the following code SELECT decode (to_char(trunc(sysdate+30 ,'MM'),'DAY'),'MONDAY ',trunc(sysdate+30 ,'MM'),NEXT_DAY(trunc(sysdate+30 ,'MM'), 'MON')) FROM DUAL But it

  • My iMac doesn't recognise my camera Sony DCR-PC330E

    Hello, PC user for years, I decided 3 weeks ago to buy an Imac 27" on AppleStore (Mac OS X 10.6.7) I've got a camera Sony DCR-PC330E. I've bought this cable in order to connect my cam on the FireWire port of the iMac. When I connect the cam with it,

  • Function module for logical file path and name

    Hello all, I am wondering is there any function module available to translate a logical file path to a physical file path and a logical file name to a physical file name? Thanks a lot! Regards, Anyi

  • Splitter-Joiner for the Mac?

    I need to do a quick hack job on an existing MPEG file. I'd rather not convert it to an avi then back MPEG. In the PC world, there are several programs available that will split MPEG files without decoding them, but so far I haven't found anything fo

  • App V 5.0 Package size getting reduced

    After creating AppV package when i edit the package to delete the junk file / junk registry, the package size is getting reduced. For E.g. My AppV package is having 200 files and 30 registry keys with size of 260 MB. When I edit the package -> delete