Skip to main content
Inspiring
January 22, 2016
Question

Multiple Hotspot SCORM Support

  • January 22, 2016
  • 1 reply
  • 493 views

I'm in the process of creating a simulation quiz where the user can take multiple paths to get a correct answer.

I can hit the "Include in Quiz" button on an invisible button, however with multiple buttons Captivate would incorrectly add unnecessary items to the quiz (Incorrect quiz results).

I've looked at the doing something with advanced actions but there does not appear to be an option to send a correct quiz response or Include in Quiz option using what is available.

Any help would be appreciated.

Thanks.

Stan Keathly

This topic has been closed for replies.

1 reply

Lilybiri
Legend
January 22, 2016

Unless you want to include JS, the only way I found is described in this article:

Report Custom Questions - part 2 - Captivate blog

The idea is not to attach the score to the parallel correct actions but to have one out of two Next buttons show up after submit:

  • if the action performed was correct, show a Next button with a score
  • if the action was not correct, show a Next button that has no score.
skeathlyAuthor
Inspiring
January 25, 2016

Interesting that you can't trigger correct response via an Advanced Action, seems like that would be extremely useful.

Sadly, In my case the Next button would likely not work since the correct responses occur on multiple slides.

If I went the JS route I'm guessing I'd need to add a SCORM call once a correct response is clicked - something like this?

SCORM_objAPI.objLMS.SetScore(questionValue,100,0);

SCORM_objAPI.LMSSetValue('cmi.core.lesson_status', 'passed');

SCORM_objAPI.LMSCommit('');

I'm thinking using a SCORM call like this would NOT show up in the closing quiz slide results with the other results.

Lilybiri
Legend
January 25, 2016

What do you mean? You can have as many Next buttons as you need on each slide where you want a score? Or do I misunderstand? In that case, please explain more in details.