I am trying to get some training material to run within an LMS (learning management system). This material is produced with "Articulate " software which takes PowerPoint files and converts them to a Flash presentation.
In the presentation is an "exit" button which exits the Articulate presentation and I need it to go to the next page in the LMS.
After much experimentation I added the JavaScript function: parent.ReturnTo DOTS(); into a text file called flashcommand.js which is the "general fscommand handler for ALL output formats". DOTS is the name of our LMS.
The exact code is:
case "ART_CloseAndEx it":
if (!g_bLMS)
{
parent.ReturnTo DOTS();
}
break;
Here is the problem: This function works fine on some of our PCs but not others! Any idea why that might happen? We have checked the version of Java on the PCs and it appears to be the same.
Cheers
JB
In the presentation is an "exit" button which exits the Articulate presentation and I need it to go to the next page in the LMS.
After much experimentation I added the JavaScript function: parent.ReturnTo DOTS(); into a text file called flashcommand.js which is the "general fscommand handler for ALL output formats". DOTS is the name of our LMS.
The exact code is:
case "ART_CloseAndEx it":
if (!g_bLMS)
{
parent.ReturnTo DOTS();
}
break;
Here is the problem: This function works fine on some of our PCs but not others! Any idea why that might happen? We have checked the version of Java on the PCs and it appears to be the same.
Cheers
JB
Comment