pop-up window size irregularity

This is a discussion on "pop-up window size irregularity" within the JavaScript Forum section. This forum, and the thread "pop-up window size irregularity are both part of the Program Your Website category.



 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Closed Thread
 
LinkBack Thread Tools
  #1  
Old Oct 17th, 2003, 04:10
Junior Member
Join Date: Oct 2003
Location: USA
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
pop-up window size irregularity

hey all,
i'm not a newbie at all to webdesign, but i've never seen this before and am at a loss. hopefully someone has a tip for me. =) basically, i'm having an issue with calling a pop-up window from flash. it works perfect on the mac (IE) but when viewed on the PC (IE) the window has an additional 150 pixels or so added to it's vertical height.

this is the code i have on my button:
on (release) {
getURL("javascript:openPop('juke.html','juke',220, 29)") ;
}



and this is the javascript code that i put in the flash html page:
function openPop(url,name,popW,popH) {
version = navigator.appVersion;
var w = 800, h = 600;

if (document.all || document.layers) {
w = screen.availWidth;
h = screen.availHeight;
}
var leftPos = (w-popW)/2, topPos = (h-popH)/2;
window.open(url,name,'width=' + popW + ',height=' + popH + ',scrollbars=no,toolbar=no,status=no,resizable=no, top=' + topPos + ',left=' + leftPos);void(0);
}


this is the URL to see what happens:
www.goodnfilthy.com/indexDEV.html
CLICK ON THE "Rock over London, Rock on Chicago" PANEL.


Any thoughts would be really appreciated!
thanks so much!

joanne
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!

  #2  
Old Oct 17th, 2003, 10:06
Reputable Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 158
Thanks: 0
Thanked 0 Times in 0 Posts
The answer is not a good one I am afraid! IE on the PC has a minimum window size, off the top of my head I think it is 50 x 50 px.

Unfortunately I don't know a way round this either.

HTH
u2o
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old Oct 17th, 2003, 10:12
Junior Member
Join Date: Oct 2003
Location: USA
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
thanks - yes, someone else said it's something like 100x100 for security reasons or something odd like that. ugh! i guess i have a bit of redesigning to do. thanks for the reply!
joanne
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Tags
popup, window, size, irregularity

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Open another new window from javascript window thehermitage JavaScript Forum 10 Jan 27th, 2008 19:42
Change open in new window to open in same window nsr500rossi JavaScript Forum 2 Jan 18th, 2008 14:13
[SOLVED] open new window from main window AdRock Other Programming Languages 1 Nov 1st, 2007 02:45
Window size when published euankennedyimorph Flash & Multimedia Forum 16 Jul 20th, 2007 19:59
The size of a new window Allu Web Page Design 2 May 19th, 2006 00:57


All times are GMT. The time now is 22:28.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42