How? HTML?

O

old.ollyitus

Guest
I could have put this in the webby section but no1 would have read it:

When making a page pop up how can i tell it to remove the address and tool bars at the top of the IE window (like those adverts and chat applets).

It must b easy

ty
 
D

DAN200

Guest
I think theres some controls to do what you describe in dreamweaver.
 
O

old.ollyitus

Guest
i tried google searches. Surely some1 knows what to do. IT must just be like 2 lines of code of something
 
O

old.ollyitus

Guest
basically what i want is a:

non resizable no toolbars IE window to put a simple chat applet in.

I can resize the IE window to the correct size but still need to:
A: get rid of the scroll bars
B: get rid of the address and tool bars
C: restrict resizing
 
D

DAN200

Guest
I just whipped together this code in dreamweaver using the "Open browser window" Behaviors on a single image, i used the tick boxes to turn off the addy bar and stuff, and this is HTML code it generated, see what you can make of it...

Code:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
</head>

<body bgcolor="#FFFFFF">
[url="#"][img]file:///C%7C/My%20Documents/Dans/Smiley.gif[/img][/url] 
</body>
</html>
 
S

ShockingAlberto

Guest
yesh, get a javascript book. 'javascript goodies' by joe burns was found to be very useful by moi.
 
O

old.Jas

Guest
Joe Burns is the man - get his HTML Goodies book while your at it
 
G

gremlin

Guest
Code:
<html>
<head>
 <title>moo</title>
</head>
<body>
 <h1><blink>moo</h1></blink>
</body>
</html>
 
M

MYstIC G

Guest
Don't encourage the use of popups, there gay. Nuff said.
 
O

old.Jas

Guest
Popups have thier uses - but yes, generally they are abused
 
O

old.Kez

Guest
No its not, the popup is always for obscure shit like "fuckfarm" or something beastiality based ;/
 
O

old.Jas

Guest
Lets stop this thread before we look too much like we know what we're talking about ;)
 
O

old.Reverend Flatus

Guest
<html>
<head>
<script language="JavaScript">
function MyWindow(a) {
NewWindow = window.open(a, "MyWindow", "toolbar=0,menubar=0,status=0,scrollbars=0,location=0,left=0,top=0,width=400,height=300");
}
</script>
</head>
<body>
Open a new window
</body>
</html>
 
W

Wij

Guest
Originally posted by Kez
No its not, the popup is always for obscure shit like "fuckfarm" or something beastiality based ;/

URL ?
 
O

old.Jayminator

Guest
And the site that's being advertised in the pop-up is almost always a pay site... It wouldn't be so bad if it was all free.
 

Users who are viewing this thread

Top Bottom