| | |||||
| ||||||||
| Graphic Design / Flash Photoshop, Flash, and other visual art topics including software, fonts, animation. |
![]() | NamePros Design Contests | Forum Sponsorship |
| Join in on the FUN! You can start an affordable design contest and pick from entries talented members submit or you can enter a design contest for a chance to win CASH PRIZES! What are you waiting for? Get started in the fun TODAY! - Banners, Logos, Mascots, and MORE! (Please READ the design Contest section rules Prior to starting or entering a contest) | ||
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| New Member Join Date: Oct 2003
Posts: 4
![]() | calling a pop-up from flash 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("java script penPop('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; ????: NamePros.com http://www.namepros.com/graphic-design-flash/15396-calling-a-pop-up-from-flash.html 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 |
| |
| | #2 (permalink) | ||||
| New Member Join Date: Oct 2003
Posts: 8
![]() | This is the code that I use: On your button in flash:
| ||||
| |