Hi.
When using the application link and choosing the “Open in another window”, my Chart application opens in a separate browser window, which is great.
But how can I tell the browser window top open full screen from the application link within Scriptcase?
See my settings below and how it opens the Chart application.
Thanks a lot for your help.
[SOLVED]
Add the following code into your “OnScriptInit” event
?>
< script type=“text/javascript” >
window.moveTo(0, 0);
window.resizeTo(screen.availWidth, screen.availHeight);
< /script>
<?PHP