Hello,
I need to create a button on a web page that will perform the same action as the time out - clear the cache, close all windows and open a start page. Something like a log-out button.
Is this possible, and if it is how to create it ?
Thanks!
How to initiate reset from the web page?
Moderators: Tyler, Scott, PWB v2 Moderator
Enable the Dynamic External Java Commands, and specify a keyword for Java Exit.
[Java]
EnableExternalJava=True
JavaExit=ExitNow
Then use the new Java command to exit PWB.
See following for example:
http://www.teamsoftwaresolutions.com/beta/external.htm
--Scott
[Java]
EnableExternalJava=True
JavaExit=ExitNow
Then use the new Java command to exit PWB.
Code: Select all
function OnClickExit()
{
window.external.ExitNow
}
http://www.teamsoftwaresolutions.com/beta/external.htm
--Scott