Click to See Complete Forum and Search --> : How do you do that


SSJ4Gogeta
03-19-2000, 11:04 PM
My friend on his site has this cool effect where when you right click or left
click anywhere on the page a cool pop-up menu comes up. But like no other
is a positioned mini window with text and tables and everything its like
100x100 and it has no resize or minimize thing on the bar. He alo gave it
a black background and has links in it???????


HE WON'T TELL ME HOW

:(

Steve Cochran
03-20-2000, 09:19 AM
You can do it this way:

<BODY onclick="openit()" language=vbs>

<Script language=vbs>
sub openit()
dim bigwin
set bigwin=window.open ("http: // whereever . com" ,"","fullscreen=yes")
'spaces in above line should be removed
bigwin.document.body.scroll="no"
bigwin.resizeto 100,100
bigwin.moveto window.event.x,window.event.y
end sub
</script>

Try a View | Source on his code.

steve

"SSJ4Gogeta" <NetmasterDBZ@cs.com> wrote in message
news:38d59520$1@news.devx.com...
>
> My friend on his site has this cool effect where when you right click or
left
> click anywhere on the page a cool pop-up menu comes up. But like no other
> is a positioned mini window with text and tables and everything its like
> 100x100 and it has no resize or minimize thing on the bar. He alo gave it
> a black background and has links in it???????
>
>
> HE WON'T TELL ME HOW
>
> :(