Copy link to clipboard
Copied
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
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";
Copy link to clipboard
Copied
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";
Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
Ok.. thank you very much for your help