Skip to main content
Known Participant
February 15, 2016
Answered

cannot get RecordFillInInteraction to sent text to SCORMCloud

  • February 15, 2016
  • 1 reply
  • 288 views

I have a text boc on a Captivate screen "Text_Entry_Box_8"

Upon Success Action I call an Advanced Action which executes the following Javascript in parent window.

(function(){

var txtBox= window.cpAPIInterface.getVariableValue("Text_Entry_Box_8");

RecordFillInInteraction('99915', txtBox,1,  'CorrectResponse', 'StrDescription', 100, 10,");

})();

I have tried various combination of the above, but still cannot get it to work. The Rustici support suggest that Captivate is not making the call.

    This topic has been closed for replies.
    Correct answer TLCMediaDesign

    SCORM 1.2

    SCORM_RecordFillInInteraction(strID, strResponse, blnCorrect, strCorrectResponse, strDescription, intWeighting, intLatency, strLearningObjectiveID, dtmTime)

    SCORM 2004

    SCORM2004_RecordFillInInteraction(strID, strResponse, blnCorrect, strCorrectResponse, strDescription, intWeighting, intLatency, strLearningObjectiveID, dtmTime)

    1 reply

    TLCMediaDesign
    TLCMediaDesignCorrect answer
    Inspiring
    February 16, 2016

    SCORM 1.2

    SCORM_RecordFillInInteraction(strID, strResponse, blnCorrect, strCorrectResponse, strDescription, intWeighting, intLatency, strLearningObjectiveID, dtmTime)

    SCORM 2004

    SCORM2004_RecordFillInInteraction(strID, strResponse, blnCorrect, strCorrectResponse, strDescription, intWeighting, intLatency, strLearningObjectiveID, dtmTime)

    PYiatrouAuthor
    Known Participant
    February 19, 2016

    Thanks - amended the test call to:

    SCORM2004_RecordFillInInteraction('99991', 'strResponse', true, 'strCorrectResponse', 'strDescription', 100, 10, '');

    it now works!!

    TLCMediaDesign
    Inspiring
    February 19, 2016

    Great, could you mark as correct please.