Click to See Complete Forum and Search --> : Hide from task bar


Viper
09-16-2003, 12:35 PM
Hi I have a popup window, but this window have to be hide from the monitor, I can do that, but how can I hide the window from the taskbar?

pyro
09-16-2003, 12:50 PM
With a regular popup, you can not do that.

Viper
09-16-2003, 12:59 PM
Ok Thanks, you told me I can not do that with a regular popup so how can I do that, is a javascript or a java or what?
or it can't be done at all?

pyro
09-16-2003, 01:09 PM
It could be done if you use a DHTML popup, which will basically just be a <div> or something similar, that has been made to function similar to a popup window.

Viper
09-16-2003, 01:15 PM
Cool Thanks

pyro
09-16-2003, 01:17 PM
You bet... :)

Shampie
09-16-2003, 04:57 PM
window.open("popup.htm","alpha","top=10000,left=10000,width=10,height=10,scrollbars=no");

if you put the top and left that high the window will open off-screen.

g'luck.

pyro
09-16-2003, 05:09 PM
It'll still show up in the taskbar, however...

I gave a DHTML solution at http://forums.webdeveloper.com/showthread.php?s=&postid=92414#post92414

Shampie
09-16-2003, 05:24 PM
my opologies, misread that part.