Hi!   For example:   1. MainForm.Script: var IDLE_TIMEOUT = 60; //seconds var _idleSecondsCounter = 0; document.onclick = function() {     _idleSecondsCounter = 0; }; document.onmousemove = function() {     _idleSecondsCounter = 0; }; document.onkeypress = function() {     _idleSecondsCounter = 0; }; window.setInterval(CheckIdleTime, 1000); function CheckIdleTime() {     _idleSecondsCounter++;     var oPanel = document.getElementById("SecondsUntilExpire");     if (oPanel)         oPanel.i
    • Like
    1