Groups | Blog | Home
all groups > flash (macromedia) > june 2007 >

flash (macromedia) : fullscreen flash pop up, i'm begging the flash community


dtrace
6/25/2007 11:14:27 PM
http://ferlan.110mb.com/Flash/newsplash1.html

This is a link some guy put together, which essentially does what I want.

which is....


Have a fullscreen pop up window, that has my flash file centered vertically
and horizontally, that works on IE as well as firefox and safari....and doesn't
have the 'click to activate' bug.

I have tried everything, and now I am so overwhelmed with javascript
solutions, blocks of code, functions, getting close, only to fail....that I am
begging the flash community at large to save me, and show me like I was a
retarded kindergardener.

a mock up sample would be appreciated.
rafiqelmansy
6/26/2007 5:50:41 AM
Hi,
I checked the site and it looks fine for full-screen and center, if you need
to remove the browser side bar and URL location bar, you will need to use JS as
following:
Add this JS to the top of your page to:

<SCRIPT LANGUAGE="JavaScript">

function fullScreen(theURL) {
window.open(theURL, '','fullscreen=yes, scrollbars=no');
}
// End -->
</script>

And for the image you will use as a link to open the pop-up page, use this in
the href:

<a href="javascript:void(0);" onClick="fullScreen('flash.html');"><img
src="image file" width="" height="" border="0" align="middle">

And to remove the Active content rectangle, find the solution at here:

http://www.adobe.com/devnet/activecontent/
AddThis Social Bookmark Button