Skip to main content
Participating Frequently
March 31, 2017
Answered

How do I change "continued from where you stop last time?"

  • March 31, 2017
  • 1 reply
  • 683 views

Hi,

I have been looking to change the popup message that comes if someone refresh course in the middle or exit and comeback.

I want to customise that message, is it possible to customise it?

I was checking forum and there is thread of same question at,

How do I change the "Continue from where you stopped last time?" window

but thats 3 years old. Let me know if there is any option now available.

thanks

This topic has been closed for replies.
Correct answer TLCMediaDesign

You can change the title of the message box and the text in HTML5. Haven't checked SWF since we never use it anymore.

You need to add this JavaScript:

cp.model.data.rtDialog.rtWarningTitle = "Your new title";

cp.model.data.tocProperties.cnfmsg="Continue message";

You need to put it in the index.html, under this function:

cpXHRJSLoader.js(lJSFiles,function()

{

cp.model.data.rtDialog.rtWarningTitle = "Your new title";

cp.model.data.tocProperties.cnfmsg="Continue message";

1 reply

TLCMediaDesign
TLCMediaDesignCorrect answer
Inspiring
March 31, 2017

You can change the title of the message box and the text in HTML5. Haven't checked SWF since we never use it anymore.

You need to add this JavaScript:

cp.model.data.rtDialog.rtWarningTitle = "Your new title";

cp.model.data.tocProperties.cnfmsg="Continue message";

You need to put it in the index.html, under this function:

cpXHRJSLoader.js(lJSFiles,function()

{

cp.model.data.rtDialog.rtWarningTitle = "Your new title";

cp.model.data.tocProperties.cnfmsg="Continue message";

Participating Frequently
March 31, 2017

Hi TLC Media Design,

Thanks it works on updating text. Is there any way to update style of that box too? I mean color, box style etc?

Thanks

TLCMediaDesign
Inspiring
March 31, 2017

It's built with a bunch of objects and prototypes, would be time consuming to track how to change the properties before it is built.