Here's an 8 character tip. To stop popup windows hiding behind the main page if left open. Edit actiniccore.js and look for
Add .focus() before the closing ;
E.g.
Code:
window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable';
E.g.
Code:
window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable').focus();
Comment