Hey Cor, I'm just putting this back on the list because I actually don't really know javascript. I write basic stuff because it resembles actionscript (ECMA). Specific stuff I'd look up. I'd imagine you'll need to launch a new window for that but maybe somebody else will know.
You could also go fullscreen from flash by setting the stage.displayMode property to StageDisplayMode.FULLSCREEN (check that, gmail doesn't have intellisense). Ashim 2009/2/18 Cor <c...@chello.nl> > Hello Ashim, > > I am not familiair with JS. > I hope I may ask you a question. > Is it possible to set my index.htm maximized, so only my Flash is showing > maximized? > So there will be no browser items, like the menubar, browser buttons, etc.? > > Kind regards > Cor van Dooren > > > -----Original Message----- > From: flashcoders-boun...@chattyfig.figleaf.com > [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Ashim > D'Silva > Sent: woensdag 18 februari 2009 1:14 > To: Flash Coders List > Subject: Re: [Flashcoders] Javascript Flash resizing > > Javascript and flash can do some interesting things together. I built a > flash gallery that would load up images and depending on how much space it > needed, resize the div the flash was sitting in so browser scroll-bars came > into effect if necessary. Then, when a certain image is displayed large, > scrolling in the browser would move the large image inside the flash so > it's > always centred within the browser window. > Here's my javascript, the flash should be simple to work out: > > <script type="text/javascript"> > if (window.addEventListener) > { > window.addEventListener('scroll',scrollingDetector,false); > window.addEventListener('resize',resizeDetector,false); > } > else if (document.addEventListener) > { > document.addEventListener('scroll',scrollingDetector,false); > document.addEventListener('resize',resizeDetector,false); > } > > function scrollingDetector() > { > var scrollY; > if (navigator.appName == "Microsoft Internet Explorer") > { > scrollY = document.body.scrollTop; > } > else > { > scrollY = window.pageYOffset; > } > getFlashMovie("excl").setScrollY(scrollY); > } > function resizeDetector() > { > var height; > if (navigator.appName == "Microsoft Internet Explorer") > { > height = documentbody.offsetHeight; > } > else > { > height = window.innerHeight; > } > getFlashMovie("excl").setHeight(height); > } > function runFirst() > { > scrollingDetector(); > resizeDetector(); > } > function getFlashMovie(movieName) > { > var isIE = navigator.appName.indexOf("Microsoft") != -1; > return (isIE) ? window[movieName] : document[movieName]; > } > function setFlashHeight(newH) > { > gid = document.getElementById("flashHolder"); > //gid.style.width = "965px"; > gid.style.height = newH +"px"; > } > </script> > > > 2009/2/18 Matt S. <mattsp...@gmail.com> > > > Have you guys had experience with dynamic resizing of the flash via > > Javascript in order to use the browser scrollbar to scroll, eg with > > http://swffit.millermedeiros.com/ or something similar? any > > recommendations? > > > > thx, > > > > .m > > _______________________________________________ > > Flashcoders mailing list > > Flashcoders@chattyfig.figleaf.com > > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > > > > > -- > The Random Lines > My online portfolio > www.therandomlines.com > _______________________________________________ > Flashcoders mailing list > Flashcoders@chattyfig.figleaf.com > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > No virus found in this incoming message. > Checked by AVG - www.avg.com > Version: 8.0.237 / Virus Database: 270.10.25/1956 - Release Date: 02/16/09 > 18:31:00 > > -- The Random Lines My online portfolio www.therandomlines.com _______________________________________________ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders