Copy link to clipboard
Copied
We're having a major problem of having our Captivate 9 elearning scorm files close the Saba app when it closes our elearning after the user has completed the training. We have the captivate scorm file set to close after completing. Saba requested we modify the following in the utilities file inside the scorm zip file:
Hello Jerry,
as we know browsers are not as consistent as we would like them to be. While Firefox and Chrome doesn't close top window when you use inline, IE closes the browser when win.top.close() is used.
I have a workaround for you, I tested it in IE and Firefox. It closes the player but not the browser when used in IE. Instead of using win.top.close() please try DoFinish()
In your Utilities.js
Please put the following ( I commented out your previous code)
{
var win = window.top.open("","_self");
//win.top.close();
DoFinish();
}
This hasn't solved the problem and was wondering if anyone else has this problem and has figured out a fix? Thanks
Have something to add?