Cats777
09-03-2003, 06:50 PM
All the chromeless windows that I use pop up in full screen. No matter how much I edit the size of the window on the source code, it just keeps popping up full screen. Why?
|
View Full Version : Chromeless Windows Help Cats777 09-03-2003, 06:50 PM All the chromeless windows that I use pop up in full screen. No matter how much I edit the size of the window on the source code, it just keeps popping up full screen. Why? lefty 09-03-2003, 06:54 PM Are you using XP? If so, it does that automatically. There's nothing you can do to fix it. :\ Cats777 09-03-2003, 06:57 PM I use Windows 98. The weird thing is that this never happened before. The last time I tinkered with chromeless windows was a few months ago. lefty 09-04-2003, 04:41 PM Odd. Mind posting your code and/or the page it's on? Cats777 09-04-2003, 10:15 PM This is the code that I use: <html> <head> <script src="http://myspacejunk.bravepages.com/chromeless.js"></script> <script language="javascript"> function openIT(u,W,H,X,Y,n,b,x,m,r) { var cU ='http://myspacejunk.bravepages.com/images/chromeless/close_up.gif' var cO ='http://myspacejunk.bravepages.com/images/chromeless/close_ovr.gif' var cL ='http://myspacejunk.bravepages.com/images/chromeless/clock.gif' var mU ='http://myspacejunk.bravepages.com/images/chromeless/min_up.gif' var mO ='http://myspacejunk.bravepages.com/images/chromeless/min_ovr.gif' var xU ='http://myspacejunk.bravepages.com/images/chromeless/max_up.gif' var xO ='http://myspacejunk.bravepages.com/images/chromeless/max_ovr.gif' var rU ='http://myspacejunk.bravepages.com/images/chromeless/res_up.gif' var rO ='http://myspacejunk.bravepages.com/images/chromeless/res_ovr.gif' var tH ='<font color=white face=verdana size=2>-=My Space Junk=-</font>' var tW ='My Space Junk' var wB ='red' var wBs ='yellow' var wBG ='black' var wBGs='red' var wNS ='toolbar=0,location=0,directories=0,status=0,menu bar=0,scrollbars=0,resizable=0' var fSO ='scrolling=yes noresize' var brd =b||0; var max =x||false; var min =m||false; var res =r||true; var tsz =20; return chromeless(u,n,W,H,X,Y,cU,cO,cL,mU,mO,xU,xO,rU,rO, tH,tW,wB,wBs,wBG,wBGs,wNS,fSO,brd,max,min,res,tsz) } </script> </head> <body> <a href="#" onclick="mywindow=openIT('http://myspacejunk.bravepages.com/aboutme.html',800,600,null,null,'mywindowname')">Open Chromeless</a> </body> </html> Stormx 09-05-2003, 03:55 PM I think its a problem with the <a> tag. Make sure the javascript statement matches the origional and post if you have querys |