Restrict Quiz Attempts with Resume Off?

I have a short quiz in Captivate 2. I have a business need to
allow absolutely only two attempts at the quiz.
When I first published as SCORM and put it on my company's
SCORM 1.2 LMS it would allow me to launch the quiz only once, no
matter what my settings in the Quiz Manager. So I followed the
advice in the TechNote (
http://www.adobe.com/go/53c956ea)
on disabling the resume feature.
Now when I load the quiz back up to my LMS it's great -- I
can take the quiz more than once! Problem is, I can take it as many
times as I like! I can not restrict it to only two tries.
I have tried hours of different settings in the tool itself,
meaning I've tried just about every setting possible in the Quiz
Manager, and I've searched the forums here for (literally) hours.
I've also tried playing around with the javascript in the .htm file
but no luck yet.
Anybody also have this problem and got it figured out? Thanks
in advance for any help you can lend!

If you want to have the user returned to the slide where they left off, turn ON Self-paced Learning.  Do NOT enable Reporting if you are NOT using an LMS.  Enabling reporting has no purpose unless there is going to be some way to capture the results, and having it on will automatically disable Self-paced Learning.
If you are NOT using an LMS or other report capture mechanism then NO the Captivate file will have no way to save results from previous questions answered.
Look at the SaveAndLoadData widgets (Google for it).  They may provide a possible solution.  But you'll need to be using quite a lot of variables and Advanced Actions to capture the scoring and save it out to the user's PC as variables.

Similar Messages

  • When I started my Mac the screen was white with the Apple logo and power motion icon running.  I attempted to turn off Mac then a message stating "Debugger called:  Button SCI . Also "Waiting for remote debugger connection."  What is my next step?

    When I started my Mac the screen was white with the Apple logo and power motion icon running.  I attempted to turn off Mac then a message stating "Debugger called:  <Button SCI>. Also "Waiting for remote debugger connection."  What is my next step?

    Hi , and a warm welcome to the forums!
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    If 10.7.0 or later...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    And sorry to report that OSX is more Widows like than ever, but….
    If that doesn't help Reinstall the OS.

  • Note: Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time

    Dear all,
    sorry for opening another thread on this.
    I think I have a performance issue with workflows attached to document sets in SharePoint. And I say “I think” because people keep telling me that this is the way it just is.
    The user creates a new document set, which triggers a workflow in which the user has to confirm/review/approve a series of tasks. The time it takes from clicking the OK button on those task form to the workflow status moving to the next step is about 4 seconds.
    And visiting that status page within those 4 seconds brings up the infamous “Note: Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time.” message.
    Hitting Refresh in the browser after those 4 seconds will make the new workflow status appear and the red text go away.
    Is that normal? Is that the performance that everyone else is seeing as well?
    I struggle to see why simply moving a workflow from one task to another should take that on a machine that isn’t doing anything else at the time.
    (1)   
    I have a standalone (non-clustered) SharePoint box, 4 CPUs, 8 GB of memory, more than half of that available, acting as application server and wfe; only the database is on different box.
    (2)   
    The CPU only goes up to 18 or 19%, so CPU does not seem to be the bottleneck. Half the RAM is also still free.
    (3)   
    The workflow is designed with Nintex, and has about 9 flexi and review tasks – the last 2 of them in a loop iterating over typically 3 or 4 items.
    (4)   
    Looking at the logs it looks like the processing in Nintex only takes about 1 second – I don’t know where the other 3 seconds are going.
    (5)   
    There is nothing obvious in the logs.
    (6)   
    We’ve looked at all the “theoretical” improvements around throttling and batch sizes etc. – none of them appeared make any difference. And the workflow is so small that it looks like my tasks gets executed straight away. The problem appears
    to be that the execution takes too long(?) and therefore has not finished by the time the page get redrawn.
    (7)   
    I am running perfmon and I can e.g. see one(!) workflow being loaded into memory – as expected as I am the only user.
    (8)   
    I am seeing a total of 3(?) SQL queries being executed(?). I get the Bytes Sent/sec spiking at 25K, and Bytes received at 18K. But is this good or bad or a bottleneck?
    Where do I take it from here?
    I have been told that “[…] most customers have no issue with this as they are used to the way SP operates and it can be slow at times.” Is it really that bad?
    If it is worth watching more performance counters then I’d need to know what to compare them to.
    Is there something else I am missing?
    Thanks
    Martin

    Hi,
    Before considering an additional hardware try to change following configurations for workflow:
    Increase Throttle Size
    Increase Batch Size
    Time Out
    Workflow Timer Interval
    AutoCleanUpDays
    Increase Throttle Size
    The Workflow throttle setting controls how many Workflows can be processing at any one time on the entire server farm. By increasing the throttle it will allow the number of Workflows execution or can be initiated at a time.
    Use below PowerShell command to get the current Throttle Size:
    Get-SPFarmConfig | Select WorkflowPostponeThreshold
    Use below PowerShell command to set new Throttle Size:
    Set-SPFarmConfig -WorkflowPostponeThreshold 100
    Increase Batch Size
    This is the size that determines number of events processed for a single Workflow instance. Default value is 100, but it can be range from 1 to any number.
    Use below PowerShell command to get the current Batch Size:
    Get-SPFarmConfig | Select WorkflowBatchSize
    Use below PowerShell command to set new Batch Size:
    Set-SPFarmConfig -WorkflowBatchSize 200
    Time Out
    This decides the time out of the Workflow event. The default value is 5 and can be any integer. The time is in minute.
    Use below STSADM command to get the current Time Out value:
    stsadm -o getproperty -pn workflow-eventdelivery-timeout
    Use below STSADM command to get the current Time Out value:
    stsadm -o setproperty -pn workflow-eventdelivery-timeout -pv “15″
    Workflow Timer Interval
    This setting is applicable at Web Application level and not the farm level. The workflow timer interval specifies how often the workflow SPTimer job fires to process pending workflow tasks. This interval also represents the granularity of delay timers within
    your workflow. If a timer is set to delay for one minute, but the interval timer fires only every five minutes, the workflow delays for five minutes, not one minute.
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o getproperty -pn job-workflow -url <Web Application Url>
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o setproperty -pn job-workflow -pv “Every 10 minutes between 0 and 30″ -url <Web Application Url>
    Here is the url for reference :
    http://praveenkasireddy.wordpress.com/2013/06/14/workflow-due-to-heavy-load-the-latest-workflow-operation-has-been-queued-it-will-attempt-to-resume-at-a-later-time/

  • Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time.

    I have SharePoint 2010 Enterprise running SP1. Configuration is one SharePoint server in the farm and a SQL 2008 R2 database for the backend. Our user environment is 80 users with very little load on the SharePoint server. I have the workflow timer
    set to 1 minute.
    I have a SPD workflow that starts manually on a form library. Whenever I publish a new version of the workflow, the next time I start the workflow it takes the full minute to finish. If I click on the workflow status before it finishes, I see the message
    "Due to heavy load, the latest workflow operation has been queued. It will
    attempt to resume at a later time.". After the minute completes the workflow finishes.
    Here's the weird thing, the next time I start the workflow, it runs in a couple of seconds - almost instantly. I've tried up to 15 times after the inital publishing and everything seems to work fine on initiation.
    Well, that would be fine for me, however, I intermintantly get this heavy load message during task processes that are running inside the workflow. It's probably less than 5% of the time. It's really frustrating though so I appreciate some help. I'm look
    online and haven't found anything that describes my situation.
    Thank you in advance!

    Hi,
    Before considering an additional hardware try to change following configurations for workflow:
    Increase Throttle Size
    Increase Batch Size
    Time Out
    Workflow Timer Interval
    AutoCleanUpDays
    Increase Throttle Size
    The Workflow throttle setting controls how many Workflows can be processing at any one time on the entire server farm. By increasing the throttle it will allow the number of Workflows execution or can be initiated at a time.
    Use below PowerShell command to get the current Throttle Size:
    Get-SPFarmConfig |
    Select WorkflowPostponeThreshold
    Use below PowerShell command to set new Throttle Size:
    Set-SPFarmConfig -WorkflowPostponeThreshold
    100
    Increase Batch Size
    This is the size that determines number of events processed for a single Workflow instance. Default value is 100, but it can be range from 1 to any number.
    Use below PowerShell command to get the current Batch Size:
    Get-SPFarmConfig |
    Select WorkflowBatchSize
    Use below PowerShell command to set new Batch Size:
    Set-SPFarmConfig -WorkflowBatchSize
    200
    Time Out
    This decides the time out of the Workflow event. The default value is 5 and can be any integer. The time is in minute.
    Use below STSADM command to get the current Time Out value:
    stsadm -o getproperty -pn workflow-eventdelivery-timeout
    Use below STSADM command to get the current Time Out value:
    stsadm -o setproperty -pn workflow-eventdelivery-timeout -pv “15″
    Workflow Timer Interval
    This setting is applicable at Web Application level and not the farm level. The workflow timer interval specifies how often the workflow SPTimer job fires to process pending workflow tasks. This interval also represents the granularity of delay timers within
    your workflow. If a timer is set to delay for one minute, but the interval timer fires only every five minutes, the workflow delays for five minutes, not one minute.
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o getproperty -pn job-workflow -url <Web Application Url>
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o setproperty -pn job-workflow -pv “Every 10 minutes between 0 and 30″ -url <Web Application Url>
    Here is the url for reference :
    http://praveenkasireddy.wordpress.com/2013/06/14/workflow-due-to-heavy-load-the-latest-workflow-operation-has-been-queued-it-will-attempt-to-resume-at-a-later-time/

  • Boot Camp on MBP internal drive (disk1), attempts to boot off CD bay drive (disk0).

    Hi. I have an early 2011 MBP running the latest version of Mavericks with two internal SSDs. The HD bay has a 1TB (disk1) and the CD bay has a 512MB (disk0). Boot Camp is installed on the 1TB. When I boot up the system and hold down the Option key, I see Windows as a boot option. If I select it, however, it starts to boot and then goes immediately to a black screen with a white underline cursor blinking in the upper left. It remains like this until I reboot.
    After spending a lot of time looking into the cause of this problem, I've come to the conclusion that the system is confused by the drive in the CD bay and is attempting to boot from it before it attempts to boot off the drive in the HD bay. I installed Boot Camp originally by using Boot Camp Assistant to partition the drive and then using WinClone to copy over a previous Boot Camp partition. I'm pretty rusre that as a result, one of the following two things is happening:
    Whatever setting Boot Camp Assistant made to tell the Windows install DVD to boot first is still in effect and Boot Camp is attempting to boot from the CD bay.
    The Boot Camp partition is set from the previous drive it was on to boot from disk0, which is now being assigned to the drive in the CD bay.
    To test these theories, I've unplugged the drive in the CD bay and rebooted, at which point Boot Camp boots perfectly off the drive in the HD bay.
    The drive in the CD bay is set to a single HFS+ partition. I've looked at the GPT and MBR on both drives and they seem fine (the Boot Camp partition is bootable). Does anyone have any idea what I'm missing here?
    Thanks in advance.
    Craig

    Still having issues, any suggestions would probably be helpful.

  • IP address restrictions not working with bea weblogic plugin

    We want to implement IP address restrictions via the Sun Java One Web Server admin tool for our application. We are using the Sun Java One Web Server to proxy requests via the Bea Weblogic plugin. However, we cannot get IP address restrictions to work because of the leading asterisk in the following NSAPI entry for PPATH of obj.conf :
    <Object name="weblogic" ppath="*/cmcsr/*"> Service fn="wl_proxy" WebLogicCluster="10.156.20.11:9010,\
    10.156.20.12:9010,10.156.20.13:9010" DynamicServerList="OFF"
    </Object>
    Has anyone gotten IP restrictions to work with the bea Weblogic NSAPI plugin?

    I'm not sure what you're asking, but each Service directive should be on its own line. It is an error to have both a <Client> tag and Service directive on a single line.

  • How to set wireless printer at ad Hoc mode in CP1025nw with auto-off is off?? ie never auto-off!!

    How to set wireless printer at ad Hoc mode in CP1025nw with auto-off is off?? ie  never auto-off!!
    Thank you very much for your help if any!!
    This question was solved.
    View Solution.

    Quite a few questions there, Sends, but I will do what I can to answer them. 
    I would first recommend buying a router, even if it is one that you won't connect to the internet and network this with your other PCs and the printer. This will give you the best functionality and results for what you are attempting to do. 
    Additionally, the Auto Off feature of the printer can be disabled, and is not affected by the connection type. You can usually go through the Setup Menu and select Tools to change the options there on the energy saving features. 
    Lastly, the auto off feature on your computer is a Windows question, but an easy one to answer. If you are on a laptop you can right-click on the battery in the service tray (bottom right hand corner) and change the energy conservation settings. 
    You might be better off installing the printer through the USB cord and alternating that based on when you are using it, but that would be optimal only if you are printing only a few documents on an irregular basis. A networked connection is the easiest to manage over several computers, honesty, but you do have some requirements for that connection and limitations as well.
    I hope this information is useful! 

  • Changing number of quiz attempts

    We have a Security Awareness training exercise that is set to fail after 3 quiz attempts.
    At that point, we look to the individual’s manager to coach them one-on-one and then re-attempt the quiz.
    Problem being, the quiz will not allow them to retake because the max number of attempts was reached.
    I was looking at perhaps adding a hidden button that would decrement the attempts by 1; however, I have been unsuccessful.  The advanced actions option does not allow you to change this variable.
    We also look at changing this variable at the LMS level through our Administrator however that option is not available and would be time consuming if it was.
    So, in a nut shell, we are looking to provide additional attempts but only with specific 'managerial' permissions.
    Ideas?  Thoughts?
     

    Brent,
    Yes, that's the only place. Empty rows in tables or drop down lists, are not supported by ADF range bindings out of the box. Therefore, we have written wrapper classes (hence the jhsTableBindings key) to be able to get new rows in poplists and tables. The B refers to "Bottom". In range bindings for poplists, you will see the _1T suffix, meaning 1 new row at the top.
    See also section "Wrapping the ADF Table Binding" on page 5-23 of the developers guide.
    Steven Davelaar,
    JHeadstart Team.

  • Quiz variables show wrong result on multiple quiz attempts

    Hi everbody
    cp4: I have a quiz with certificate at the end of my project. On the certificate the result is shown with the help of the variable cpInfoPercentage. The user has a maximum of 3 attempts to pass the quiz. Now, when he needs more than one attempt, the variable shows the sum of the results from each attempt. The same is true for the variable cpQuizInfoPointssored.
    Has anyone made the same experience and knows a way arount it?
    Thanks for your help.
    Petra

    I'm just bumping this up because I am having a similar problem. cpInfoPercentage variable is not resetting on multiple quiz attempts, even though quiz results screen is showing correct score and pass/fail message. Is there a way to reset this variable, or some other workaround?  THanks.

  • Attempt to power off COMPUTER failed

    When I try to shutdown my T60 Thinkpad (2623-D3U) using the Start | Turn Off Computer | Turn Off sequence, it does NOT shutdown until I run through the sequence a second time.
    I'm running Win XP Pro sp3 and all the critical and recommended updates are installed.
    When I check the Event Viewer System Log, I do find a Source:USER32 Event ID: 1073 Warning indicating:
    'The attempt to power off <COMPUTER> failed.', but related explanation.
    I don't want to jump all over Microsoft (just yet), but I don't remember having this problem prior to sp3.
    I've seen threads for the T61s with similar issues, but no solutions. Much older threads seem to point to Roxio.
    Any suggestions about where to start checking?

    When I try to shutdown my T60 Thinkpad (2623-D3U) using the Start | Turn Off Computer | Turn Off sequence, it does NOT shutdown until I run through the sequence a second time.
    I'm running Win XP Pro sp3 and all the critical and recommended updates are installed.
    When I check the Event Viewer System Log, I do find a Source:USER32 Event ID: 1073 Warning indicating:
    'The attempt to power off <COMPUTER> failed.', but related explanation.
    I don't want to jump all over Microsoft (just yet), but I don't remember having this problem prior to sp3.
    I've seen threads for the T61s with similar issues, but no solutions. Much older threads seem to point to Roxio.
    Any suggestions about where to start checking?

  • How to solve: Attempt to resume ApplicationContext ...

    Hi,
    I have a working application under jdev 11.1.1.1.0.
    I upgraded to jdev 11.1.1.2.0.
    Now I get the following error:
    "Attempt to resume ApplicationContext when current context contains state"
    Knowing that if i run it on the older version from jdev it works perfectly.
    I am using the explorer template in my JSF Pages.
    Any hints on how to solve this issue.
    Regards
    Emile BITAR

    In fact , it's very strange, if i turn the power off and then on , and when i press the power button on the face of the computer, it's not booting it's just starting the initialisation sequence and then shut down immediatly when it reaches the Boot attempt ( always the same error) but i can"t restart it immediatly i have to cut the power and then replug it in order to start the computer...

  • E4200v2 on .37 firmware bricked by setting new port address with DNS off

    I hooked up my E4200v2 with the intention of replacing another router, with DNS off. While everything else was disconnected, I used a wired interface to change its address to 192.168.0.1 on the first setup page.  As soon as I pressed "Save Settings", the darned thing turned off all of its ethernet ports and lay dead.  I performed a 30on-30off-30on reset, but the darned thing wouldn't wake up.  I let it sit for a half hour and tried again, with no luck.   I tried again an hour later, and suddenly the Cisco light began to blink. I quickly hooked up my PC to the wired local port, and set my PC's wired interface statically to the new subnet. No luck. Then I tried the original subnet. No luck.  Then suddenly the ports went dead again, never to return to life, despite patient waiting followed by another attempt to 30on-30off-30on reset.  What gives?  Is there some fatal firmware flaw?  Has no one out there done this before?  This router is only about 4 months old.  Is there another reset mode?  It's like the settings poisoned it.  The Cisco light is on solid, but no recovery.

    Puppa wrote:
    I hooked up my E4200v2 with the intention of replacing another router, with DNS off. While everything else was disconnected, I used a wired interface to change its address to 192.168.0.1 on the first setup page.  As soon as I pressed "Save Settings", the darned thing turned off all of its ethernet ports and lay dead.  I performed a 30on-30off-30on reset, but the darned thing wouldn't wake up.  I let it sit for a half hour and tried again, with no luck.   I tried again an hour later, and suddenly the Cisco light began to blink. I quickly hooked up my PC to the wired local port, and set my PC's wired interface statically to the new subnet. No luck. Then I tried the original subnet. No luck.  Then suddenly the ports went dead again, never to return to life, despite patient waiting followed by another attempt to 30on-30off-30on reset.  What gives?  Is there some fatal firmware flaw?  Has no one out there done this before?  This router is only about 4 months old.  Is there another reset mode?  It's like the settings poisoned it.  The Cisco light is on solid, but no recovery.
    You can hard reset the router. Try isolating it using a loop back test or use another Ethernet cable if necessary. If LAN status says, media disconnected then I think you can call tech support for replacement.

  • Red Bull TV just showed up on all of our Apple TVs with updates off.

    Even with Autoupdate turned off and restrictions enabled, Apple Pushed a new app to the Apple TVs. Did I miss a setting that would disable app updates? I have a dozen of these things around our shop floor with restrictions enabled and now we are finding out that unrestricted apps can randomly show up, requiring us to visit each one and enable restrictions. We turned everything off and just use them for airplay. This is a trial run, I don't want to put 50 of these things out there to find out randomly I am going to have to run around fixing updates. 
    Any thoughts?

    New services don't require an update, which is why having auto update turned off didn't help you.
    If you have any suggestions that you think might enhance the Apple TV you can send Apple your feedback here 

  • I'm useing lvwutil32.dll and am getting a "Error 10" (New I/O attempted with old I/O in progress), help :-(

    Like my question says, I'm trying to use a buntch of vi's I had gotten about 3 years ago. They work with windows and managing them, along with other standard PC events. I have no problem with the implementation of these vi's into any of my diagrams nor while running the application where my IDE is installed. However, when I try to compile it, I get the "Error 10 occurred at C:\Program File\...\user.lib\lvwutil32.dll". It states 2 possible causes: 1) LabVIEW: Duplicate path & 2) NI-488: New I/O attempted with old I/O in progress".

    It has to do with the way you have your build file constructed. The source and destination can't be the same because the application builder attempts to copy the dll into the build directory-which causes the error.
    To fix the problem, create a directory containing the dlls you will be using in the build. Specify the dlls in this directory as the source file. Next, after adding all the dlls to the project, click on the "Custom Destinations..." button and for each of the dlls you've added, specify the "Windows System Directory" as the destination WITH NO RELATIVE PATH.
    The build should now work...
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • My purchases show partially downloaded. When I attempt to resume the download I recieve an error message " an unknown error occurred -50" Itunes has charged for the download and sent a reciept however the shows wont play?

    My Purchases show partially downloaded. When I attempt to resume the download I recieve an error message: "an unknown error occurred -50". I tunes has charged for the download and sent a reciept however the shows wont play?

    I had the same problem so (assuming under the Purchased items in the Store you have a song stuck at 'Downloading'):
    I went to Music, then Artists.
    From there I chose the album.
    The song that failed to download had the cloud symbol next to it.
    I clicked the cloud symbol and the song completed the download for me.
    (Please note this was in iTunes for Windows - I expect it to be similar in iTunes for Apple)
    Message was edited by: UbergeekRFC - parenthetical note added
    Message was edited by: UbergeekRFC - added note about song stuck as downloading

Maybe you are looking for

  • "segmentation fault" after JNI_CreateJavaVM

    Who knows how to do with it?I have look through all the material that i can find,but the questions still remain.My platform is linux redhat 7.3,J2sdk 1.4.1 many thanks!

  • MacBook Pro will not reboot after Security update or boot from disc

    I recently downloaded the latest security update and instead of immediately restarting I chose to shut down the system. The next day I booted up and ran into a problem with the start up stalling on the gray screen with the Apple logo and the spinning

  • I need help fixing my facebook chat

    While in a app I can not open a new chat conversation. When I do it takes me to a non working message page (funmessages.net) and kicks me out of the game. I tried different accounts different browsers. My PC should be clean and updated. I am running

  • Impact of change of field Country of origin in material master

    HI EXPERTS, what is the impact of change of field Country of origin in material master(Foreign trade data ) on sales order ,delivery and invoice ? also will it impact the existing document if we had changed the country of origin in material master? A

  • How can I get my icloud videos not to show on my iphone

    Before I downloaded the new iOS 7.02 on my iPhone 4s, only the videos I actually downloaded on my phone would show. Now all of the videos I have on icloud show. How do I get only the videos that I specifically put on my phone to show? I only want to