all groups > flash actionscript > may 2006 >
You're in the

flash actionscript

group:

Full screen IF resolution is equal to 800x600 or less


Full screen IF resolution is equal to 800x600 or less Dario de Judicibus
5/20/2006 8:58:07 PM
flash actionscript:
I am looking for an ActionScript code snippet to enlarge an otherwise
*scalable* Flash movie to full screen *if* the resolution is 800x600 or
less. Thank you in advance.

--
Dario de Judicibus - Rome, Italy (EU)
Site: http://www.dejudicibus.it
Blog: http://lindipendente.splinder.com

Re: Full screen IF resolution is equal to 800x600 or less NSurveyor
5/21/2006 12:07:30 AM
If this is for standalone....

if(System.capabilities.screenResolutionX<=800 && System.capabilities.screenResolutionY<=600){
fscommand("fullscreen",true);
Re: Full screen IF resolution is equal to 800x600 or less Dario de Judicibus
5/22/2006 11:16:49 PM

"NSurveyor" <saif7463@yahoo.com> ha scritto nel messaggio
news:e4ob02$mt9$1@forums.macromedia.com...
| If this is for standalone....
|
| if(System.capabilities.screenResolutionX<=800 &&
System.capabilities.screenResolutionY<=600){
| fscommand("fullscreen",true);
| }

It does not work in a browser...

DdJ

AddThis Social Bookmark Button