PDA

View Full Version : window open commands???


Dean
04-23-2003, 10:42 AM
Hi There

I want to open a browser window from a desktop short cut with no toolbars scrollbars statusbars etc.

I could do this on a popup using the code:

toolbar=no,status=no,menubar=no,location=no,directories=no,resizable=no,scrollbars=no,

but I cannot run this code from a desktop shortcut as it needs a javascript to run.....

:confused: :confused:

Roy Sinclair
04-23-2003, 04:57 PM
Rename the page from .htm to .hta. Then you can control all of the aspects of the Window without opening additional windows. Search the MS web site for "HTML Applications" for more detailed information.

oracleguy
04-23-2003, 06:38 PM
Also can't you just have the shortcut's target on your desktop be: javascript: window.open(); ?

Then you can set all the window settings.