Forum Discussion
ScottWeghorst-5
7 years agoCommunity Member
Inactivity Timeout
We have a new course requirement (for compliance courses) and its that the user is logged out after 6 minutes of inactivity. The LMS we are using will not accommodate this and we also need to have t...
SBP_Inc
Community Member
Adding a custom trigger that executes javascript on each slide would work. The script would look something like this code. Note, scripting support needs to be available for this code to work. The log out code is customized; for example I use window.open("logout.html") and create the logout.html file.
setTimeout(function(){ /* your logout code */ }, 1000 * 60 * 6 /* six minutes in milliseconds */);
ScottWeghorst-5
7 years agoCommunity Member
Brian,
Thank you. Greatly appreciated!