Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Full Browser Flash - Best Practices?



hey all!,just wondering what would be the best practices for full browser flash "example@kirupasiteoftheweek" something along those lines i have an idea where you have to centre your stage etc...but how large should you make the stage size and your bg or say photoshop files what dimensions should they be??Also if anyone knows of any good tutorials on it please give us a shout cheers in advance peeps



KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 09-21-2006, 11:45 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Full Browser Flash, Vertical Scrollbar Just Like Browser?
In short:
http://www.subdisc.com/
Look at the right scrollbar, how do I accomplish this?

The height of my site site is bigger than the Stage.height.
I could use a browser scrollbar via Java, but since I want to be free in design of every component I would rather use a flash scrollbar.
But how?

Full Browser Flash Detecting Browser Size Help.
http://akmphoto.net/akmdesign_new.html

Anyone know the AS to make it automatically check the size of the browser for the listeners.... _notice when you resize the browser it works perfectly...but not when it first loads up...any ideas?

Code:
// ***Stage aligned top left
Stage.align = "TL";
// *** Stop the stage from scaling with the browser window.
Stage.scaleMode = "noScale";
stop ();
// initiate postitions and scaling values for objects
fluid._x = (Stage.width + 200)/2
fluid._y = Stage.height/2
bottomstretch._height = Stage.height;
rightstretch._height = Stage.height;
topstretch._width = Stage.width;
rightstretch._x=201;
tutoriobutton._x = Stage.width - tutoriobutton._width

bottomo._x = (Stage.width + 200)/2
// end initial position setting


//create a listner that checks to see if the browser window is resized
sizeListener = new Object();
sizeListener.onResize = function() {
// change movieclip properties when the window is resized.
topstretch._width = Stage.width;
fluid._y = Stage.height/3;
fluid._x = (Stage.width + 200)/3;
bottomstretch._height = Stage.height;
rightstretch._height = Stage.height;
//*note* 200 is the width of the left column
tutoriobutton._x = Stage.width - tutoriobutton._width
bottomo._y = Stage.height/1;
bottomo._x = (Stage.width + 200)/2;
};
Stage.addListener(sizeListener);

Full Browser Flash?
I know how to make a background stretch to 100% but how do you make movies stretch to 100%? If you take a look here:

http://73.ufc.com/

How do they get that bar along the botton to stretch all the way across regardless of your browser size?

Full Browser Flash With AS3?
I don't seem to be able to crack how to do this with action script 3 - Adobe/Macromedia semm to have changed how "Stage" works?

So how do you do full browser sites with AS 3?

Full Browser In Flash...
Anyone knows how was BG effect done on this webpage
http://creative-box.co.jp ???

Full Browser Flash
I have done Lee Brimlows tutorial (http://www.gotoandlearn.com/) and I have it working but I don't want my image to tile, just to resize as sharp as possible. I also want to be able to change that image through a navigation.

Any advice?

Full Browser Flash
Hello, I'm working on a site, that needs to have a full browser flash document. I've tried setting every object, and property to 100% width and height but I can't find out what's wrong.

In both firefox and IE there is a 5-10pixel white border around my file.Could anyone suggest what I should do to fix it? Thanks.

The particular file I'm using is published for flash 8.

Full Browser Flash
hi everyone and thanks in advance for your advice

i am trying to create a full browser flash movie along the lines of www.brook-pifer.com so that i want to scale a background .jpg to the full size of the movie.

has anyone got any tips on the best way to handle this?

Full Browser Flash
Hey everyone-
quick question about size...what's the best way to accomplish Full Browser Flash? Ive always had issues with this becuase of the difference in user displays. anyone have any suggestions? thanks everyone

Eric

Full Browser Flash?
Hi there,

Im trying to achieve a flash page that will cover the browser window ( not chromeless, just the browser!!) Ive posted a query about this subject before but the advice i recieved didnt really solve the problem. Im not experienced with actionscript and i think this may be my problem!!

Ive been experimenting with a 100x100 stage and filling it with a coloured box and then publishing it with the following html code:

......</head>
<body bgcolor="#ffffff" topmargin=0 leftmargin=0 rightmargin=0 bottommarign=0>
<!--url's used in the movie-->
<!--text used in the movie-->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/
pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="Untitled-1"
align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="Untitled-1.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="bgcolor" value="#ffffff" />
<embed src="Untitled-1.swf" quality="high" scale="noscale" salign="lt" bgcolor="#ffffff" width="100%" height="100%" name="Untitled-1" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>....

According to articles such as "mastering full browser flash" (http://www.actionscript.com/index.ph...-flash-part-2/)

and a few other similar articles, this adjustment to the code is supposed to make the flash movie stretch accross the stage to fill the browser, regardless of the original movie size.

I cant get this to work and its driving me mad. Im trying to jazz up my xhtml/css site by making a flash version and i need the flash mvoe to be able to fill the browser window.

Im also trying to enable the movie to adjust size depending on the viewers screen res. I understand this has to do with listeners.

Could somebody set me straight on this??

Full Browser Flash
I know Full Browser Flash is nothing new, but I need help with the tiled background. I want a great effect with a gradient on the background is there any way I can achieve this effect?
Do you have to use tiled gifs when working with Full Browser Flash?
Any help is appreciated!

Thanks.

Full Browser Flash
I have a full browser script that is working just fine (script below). I am having trouble however positiong an imported .swf clip into a movie clip (mc2). Even though the movie clip's registration point (mc2) is in the center, the .swf that goes in has a top left registration point, and that top left registration point is what gets centered, leaving the entire clip to be off center. I need help centering an imported clip with a top left registration point? Does the stage size matter? Any help would be greatly appreciated.

// ***Stage aligned top left
Stage.align = "TL";

Stage.scaleMode = "noScale";
stop ();

mc2._x = ?
mc2._y = ?

sizeListener = new Object();
sizeListener.onResize = function() {

mc2._y = ?
mc2._x = ?
};
Stage.addListener(sizeListener);

loadMovie("MainSlideshow.swf", mc2);

Full Browser Flash?
Hi there,

Im trying to achieve a flash page that will cover the browser window ( not chromeless, just the browser!!) Ive posted a query about this subject before but the advice i recieved didnt really solve the problem. Im not experienced with actionscript and i think this may be my problem!!

Ive been experimenting with a 100x100 stage and filling it with a coloured box and then publishing it with the following html code:

......</head>
<body bgcolor="#ffffff" topmargin=0 leftmargin=0 rightmargin=0 bottommarign=0>
<!--url's used in the movie-->
<!--text used in the movie-->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/
pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="Untitled-1"
align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="Untitled-1.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="bgcolor" value="#ffffff" />
<embed src="Untitled-1.swf" quality="high" scale="noscale" salign="lt" bgcolor="#ffffff" width="100%" height="100%" name="Untitled-1" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>....

According to articles such as "mastering full browser flash" (www.actionscript.com/index.php/fw/1/mastering-full-browser-flash-part-2/)

and a few other similar articles, this adjustment to the code is supposed to make the flash movie stretch accross the stage to fill the browser, regardless of the original movie size.

I cant get this to work and its driving me mad. Im trying to jazz up my xhtml/css site by making a flash version and i need the flash mvoe to be able to fill the browser window.

Im also trying to enable the movie to adjust size depending on the viewers screen res. I understand this has to do with listeners.

Could somebody set me straight on this??

Full Browser Flash
Hey guys - I'm trying to have my movie take up the full browser and not slide UP when the window is smaller vertically. I've read all of the tutorials but can't seem to get it not to move up and cut off the top.
Here is the movie : http://www.vmg-marketing.com/kirupa/

Any suggestions?

Thanks,
Mike

Full Browser Flash
Hi all,

I'm new to this board so apologies if this is a question/topic that has been raised before. I have been experimenting with full browser flash sites for a while and have been looking at the different ways to set the background image to scale. I am currently using the following script to set the scaling values of the background swf to automatically adjust to the width and hieght of the browser window. However, would I would like to do is have a little more flexibility and limit how 'distorted' the background can become.

For a comparison...

www.hi-res.net <this site uses the code I currently have, which simply scales the background image to fit the width and height properties of the stage/browser window.

www.dfgw.co.uk/flash.html <this site shows what I would like to do. If you watch the background image it does scale, but doesn't distort in the same fashion as Hi-Res. Instead, the code seems to adopt a 'best fit' approach, with some of the image moving off the stage in certain extreme width/height scenarios to stop it from distorting.

So, here's my code (apologies it's a bit messy). Does anyone have any suggetsions as to what the Action Script stage property for the Movieclip 'testt' would be to achieve something similar to DFGW??

// Assign a listener for the Stage object
Stage.addListener(stageListener);

//new stuff here
// ***Stage aligned top left
Stage.align = "TL";
// *** Stop the stage from scaling with the browser window.
Stage.scaleMode = "noScale";
stop ();
// initiate postitions and scaling values for objects
testt._width = Stage.width;
testt._height = Stage.height;

// end initial position setting


//create a listner that checks to see if the browser window is resized
sizeListener = new Object();
sizeListener.onResize = function() {
// change movieclip properties when the window is resized.
testt._width = (Stage.width );
testt._height = Stage.height;

Full Browser Flash Bg
Hey dudes

so I am on the full browser Flash site now, and I am dying here! I am trying to make a graphics the full browser background, and I am unable, please if anyone has done this, HELP!

Thanks dudes

Full Browser Flash
I know that this topic has been talked about a lot but I still have not had one of my questions answered. My question is how do you make your FBF look like these two examples.

http://www.sonypictures.com/homevide...erthanfiction/

In this one how do the designers make it work for all resolutions, how they are able to use the whole browser and user three different sections for the menu, the content, and the sound?

http://www.curtasantos.com/site

How do they make it so seemless in the slide to a new section and how do they keep the BG so seemless? And it is full browser with the single bg image.

That is really what I want to understand, how do I use a single large image to fit the browser(at any resolution) edge to edge?

Thanks in advance.

Flash As The Full Browser AS3 Help
I'm starting to make the transition from AS2 to AS3 and it's totally blowing my mind/ kicking my butt.

My first problem is full-frame flash—like the landing page I have at my home sitehttp://marcgarner.com. In that file I use the Stage to arrange/ place different elements and stretch the picture to fill the Stage. Here is the code I use to accomplish it.


Code:
Stage.scaleMode = "noScale";
Stage.align = "tl";
getURL("FSCommand:fullscreen", "true");

the_way = "_file/";
_root.createEmptyMovieClip("music_mc", 1);
_root.createEmptyMovieClip("base_pic", 2);
_root.createEmptyMovieClip("selection_mc", 102);
music_mc.loadMovie(the_way + "music.swf");
base_pic.loadMovie(the_way + "base_pic.swf");
screen_mc.loadMovie(the_way + "screen.swf");
attachMovie("gradient", "gradient", 3);
attachMovie("loader", "loader", 100);
selection_mc.loadMovie(the_way + "selection.swf");

onEnterFrame = function () {
replace_MC();
gradient.blendMode = "multiply";
gradient._alpha = 50;
gradient._width = Stage.width + 50;
gradient._height = Stage.height + 50;
gradient._x = -20;
gradient._y = -20;
selection_mc.copyright.blendMode = "screen";
selection_mc.copyright._x = 5;
selection_mc.copyright._y = Stage.height - 30;
selection_mc.marcgarner.blendMode = "screen";
selection_mc.marcgarner._x = Stage.width - 290;
selection_mc.marcgarner._y = Stage.height - 160;
selection_mc.nav_mc._x = (Stage.width - selection_mc.nav_mc._width) * 0.5;
selection_mc.nav_mc._y = (Stage.height - selection_mc.nav_mc._height) * 0.5;
};
myListener = new Object();
myListener.onResize = function () {
replace_MC();
};

Stage.addListener(myListener);

function replace_MC() {
if (Stage.width * 3 > Stage.height * 4) {
base_pic.me.tween(["_width", "_height"], [Stage.width + 10, Stage.width * 0.75 + 10], 0);
base_pic.me._y = (Stage.height - base_pic._height) * 0.5;
base_pic.me._x = 0;
}
if (Stage.width * 3 < Stage.height * 4) {
base_pic.me.tween(["_width", "_height"], [Stage.height * 1.33333 + 10, Stage.height + 10], 0);
base_pic.me._x = (Stage.width - base_pic._width) * 0.5;
base_pic.me._y = 0;
}
}
Every flash site I've bilt since this first projec has been pretty similar (using the stage to align everything). I need a actionscript 3 guru to tell me where to even begin. I've tried the most basic of examples in AS3 and can't even get it to compile. PLEASE HELP!

AS3 Full Browser Flash
Hi, am currently building a full browser site using as3 and will probably have loads of questions.. i am able to get it all expanding correctly etc..

1. i want a preloader bar that expands the width of the stage but cant figure out how to get this working as my resize listener is called after the preloader has completed?

2. when a movie clip is resized with the listener it stops it from playing..

im not really sure of the correct way to structure a full browser flash site so any help would be great! cheers

Full Browser Flash
Hey everyone, this is the same old how to you make a full browser flash site post. I have found a lot of good tutorials on that already. But I do have a couple questions about building a full browser flash site that the tutorials don't have a clear answer on.

I'm developing my first full browser site now and the end goal is something like http://www.chromazone-imaging.co.uk/flashindex.html

So, what generally is a good size stage to start with or does it matter? My goal is to have a menu that spans the top or bottom of the page like the Chromazone site but should that be included at the top or bottom of the page and let flash scale it up or down based on the users browser size? Or is there another way to make sure those items stay where I want them other way?

No the main content of the site, I was going to create a Movie Clip holder on the page and just load external SWFs into that. But my external SWFs are going to have JPEG which I don't want to have resize so big that they lose there quality, so is it the best idea to design the external SWF to the max. size that I would want the JPEGs and content to be and then let flash only scale them down?

So with that does my original stage/Movie Clip Holder have to be larger then my the external SWFs I'm going to load into it or does that matter with a full browser site?

Sorry for the long first post, I've been trying to get these questions answered without much luck. I really enjoy the site, it's be killing my productivity here at work. :)

Full Browser Flash
Hi all
Can any one help me with the full browser flash tutorial?
I was wondering if it is passable to make a back ground out of a picture that is just scales the back ground to fit the window

hope you can help

thanks

Help With Full Browser Flash
I wanted to redo my site and would like to play off some of the extra space that comes about with the full browser flash mode. I watched the tutorial on this site for it, but am still confused. Not necessarily liking the style, I like how this guy (http://www.frostdesign.com.au/v3/) uses the space and how nothing gets warped or fuzzy when enlarging or decreasing the browser window. Starting out with the full browser function, how large does the stage have to be? I don't want my images and navigation to be scalable, just the background (with items moving to the respective places once sized. Any help?

Full Browser Flash Help
I came across this website for a portfolio, http://www.alainandre.com, and really liked the simplistic style, but more importantly how the bar reaches both ends of the window, no matter how big. But when you stretch real long, the bar across the middle looks as if it has more gradient past what is seen. So, to me, it doesn't seem like its being scaled per se, like in the Full Browser Flash tutorial on this site, but more than its only showing what the window size allows.

In the same topic, I noticed too that when I size down the window, sizing past the circles on the right does not cause the scrollbars of the browser window to activate. How is this managed?

Full Browser Flash
Hi

I'm having a few problems here, still very much a beginner especially with action script 3.

What I have is this:-
http://www.qwerty-design.co.uk/test.html

where the white area is my content the black the background, this is fine and is centred and fills the screen just as I want but the problem is when viewed at smaller resolutions I don't get the vertical scroll bars.

Is there a way of getting this effect and having the vertical scroll bars?

I really want the full screen to be flash.

If not could I centre in HTML or CSS my flash content and just have a black ground in my html page?

Thanks

Ricky55

Full Browser Flash
Hi, sorry i know this has been asked a lot before but after doing a search on this site i wasnt able to find where i could download the video or source file for Lee's full browser tutorial.
Can anyone help me with that please.
Thanks.

Full Browser Flash
hi everyone, im really in trouble i'm working on a prioject for a client and i can't remember the code for the full browser flash tutorial that lee did if anyone has the code i would be so greatful if you do have the code please post it here.

thanks and hope you can help

Full Browser Flash
Is this post helpful?yes2

Full Browser Flash
Hi guys - can someone do a very quick favour for me?

I really like the "full browser flash" tutorial but cant open the files as I have Flash MX not Flash 8! Can somebody download the tutorial and simply convert the file to MX and send it to me.

mailto:hello@edmundwroblewski.com

Many thanks

Full Browser Flash Help
Ok guys, I want my movie/swf file to fill up the whole website. Like Full Browser, but I do not want to do the seemless background like Lee. How do you make the swf file appear in the whole browser? I almost have it, but i get a boarder around it, like 10px. Can you guys please help?

Atomic Nixon

Lee`s Full Browser Flash...
i have just followed lee`s full browser flash tutorial and it all looks good until i resize the stage then my movie content disappears...i have looked over the code again and again ut i guess i am missing something really stupid...please can anyone shed some light? thanks

Code:

import flash.display.BitmapData;

deck._x = Stage.width/2;
deck._y = Stage.height/2;

var tile:BitmapData = BitmapData.loadBitmap("tile");
function fillBG(){
   this.beginBitmapFill(tile);
   this.moveTo(0,0);
   this.lineTo(Stage.width,0);
   this.lineTo(Stage.width,Stage.height);
   this.lineTo(0,Stage.height);
   this.lineTo(0,0);
   this.endFill();
}
fillBG();

var stageL:Object = new Object();
stageL.onResize = function(){
   fillBG();
   deck._x = Stage.width/2;
   deck._y = Stage.height/2;
}
Stage.addListener(stageL);
   

Full Browser Flash
I was going through the tutorial on full browser flash. However, my tile is much longer than the one used in the tut. I am trying to figure out how to make the tile start farther left than the top left corner of the stage. My tile is 1600px by 125 px, and I need to center it on a 700px wide stage at the top. I watched the Drawing API video as well but no luck for me. As best I can tell it would be in this part of the code:

function fillBG() {
this.beginBitmapFill(tile);
this.moveTo(0,0);
this.lineTo(Stage.width,0);
this.lineTo(Stage.width,Stage.height);
this.lineTo(0,Stage.height);
this.lineTo(0,0);
this.endFill();
}

I'm a action script newbie, so I might need a little explanation.

Can You Do This With Full Flash Browser?
I was noticing on a site I recently did that when I resize my window things just pop into place. There's no fluidity to it.

Is it possible, using AS, to tween the moving around of different mc's when I resize the browser?

Also, if someone has too small of a browser, is it possible to stop the scaling at a certain point. Or possibly display a movie clip/text explaining that they're browser is too small? I don't know if flash can detect browser size or not because I'm fairly new at all this.

If these are possible, maybe you could point me in the right direction to where I could learn how to do it. Thanks.

Full Browser Flash
I saw the Full Browser tutorial but that's with an image. I've seen other sites that have their websites in the full browser screen, and adjust to the actual resolution of your monitor. I'll add some links of a few sites I know that do this. I sure it's not all actionscript based. Can anybody give some info on how to get this done? Thanks a bunch.

Links

http://www.b-yond.com/

http://www.2advanced.com/

http://www.nike.com/jumpman23/features/xx2/index.html

Full Browser Flash
very interested in full browser flash:

here's what i have:

a movieclip the size of the stage (900x580). this movieclip is just a gradient.

this movieclip is the background, offcourse on top of that are the rest of the layers and their content.

This is what i want:

i want the content to be centered in the browser. And the gradiend or background movieclip to fill the browser window.

to put it simple, not a pattern, but a picture to fill the browser. like in lee's full browser tut.

Full Flash Browser
an example of what i want is the resize capabilties on

http://www.underoath777.com/newsite/main.php.

Where their buttons panel stays the same distance from the right edge of the window, and so does their big underOATH logo. basically i want them to stay in position, and when the browser window is resized well they will disappear if they are no longer in view. p.s. i do not want them to scale, like the background does. i also want it to work for any component, because my header is Dynamic Text, while the Buttons are buttons, not movieclips.

i already have the background resizing already, can anybody help me with the ActionScript for the above please?

Full Browser Flash - I'm Getting There....
well first of all, my .fla is too big to upload so can't really show it. anyways i followed the code that someone else posted to make a background movieclip scale to the size of the window:

Code:

Stage.scaleMode = "noScale";

var normWidth = 800;
var normHeight= 600;

var listener = new Object();
listener.onResize = function():Void {
   var w = Stage.width;
   var h = Stage.height;
   
   if (w > normWidth) {
      bg._width = normWidth + (w - normWidth);
      bg._x = (normWidth - w) / 2;
   } else if (w < normWidth) {
      bg._width = w;
      bg._x = Math.abs(w - normWidth) / 2;
   }
   
   if (h > normHeight) {
      bg._height = normHeight + (h - normHeight);
      bg._y = (normHeight - h) / 2;
   } else if (h < normHeight) {
      bg._height = h;
      bg._y = Math.abs(h - normHeight) / 2;
   }
}

Stage.addListener(listener);




so yes, the background scales to the size of the browser window, however i want my Dynamic Text and buttons to remain in the same position and also resize...when the browser window is resized.

basically, what it orginally looked like i want everything in the same relative position when the browser window is resized. can anyone help me out please??[/code]

Full Browser Flash
I thought I once saw an official "Lee" tutorial on this. Anyone know where I can find it or any links to creating full browser flash?

Thanks,
Dan

Full Browser Flash
Hi all

Can anyone help me - i am trying to make my flash movie fill the whole browser window - i have viewed lee's great tutorial and i tryed adding the code but because i am using a flash movie and not a bitmap / jpg its not working?

please help

thanks

Full Bleed (full Size) Swf In The Browser Window
Hello and thanks in advance for any advice you may have.

I'm working on a small flash site and I want the swf file to have "bleed" or to go to the very end of the window so that the swf isn't just ploped over top of a background. here is a site which does what i'm talking about

http://www.510madison.com/

Full Browser Window Flash (can U Fix It?)
I posted in the Flash MX thread and got some great help but seemed to get stuck with this problem:

In the following file, I want the background image to scale immediately according to the width and height of your browser, as it does when you start dragging / resizing your browser... Can you shed any light on how I can get the function to kick in immediately, rather than wait for the user to rescale their window?

http://www.josimar.com/maintest.html

here's the flash script: ('bg' is the instance name of the background image mc)

_________

Stage.scaleMode = "noScale";

Stage.align = "tl";
this.onResize = function()
{
updateStageStuff();
}

Stage.addListener(this);

_global.updateStageStuff = function()
{

var sw = Stage.width;
var sh = Stage.height;

bg._width = sw;
bg._height = sh;
}
_________

So, if there's a way of making the function work not only .onResize, but on enter (1st) frame too or something like that?!
thanks in advance,
spumker

Anyone Understand Full Browser Flash?
I tried some of the tutorials online and downloaded some files but they simply do not work. It looks different in netscape, opera and explorer and will not go across the entire screen... This code won't work in netscape for my movie.. vertical it doesn't go to the bottom Is there a certain way the actual flash movie has to be set up for a full browser flash movie because what these tutorials say is simple does not work across browsers..

I just want the gradient to go across the entire screen.

http://biotechsalesconsultants.com/demo.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>demo</title>
<style type="text/css">
<!--
body {
margin-left: 0%;
margin-top: 0%;
margin-right: 0%;
margin-bottom: 0%;
}
-->
</style></head>
<body>
<!--url's used in the movie-->
<!--text used in the movie-->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" id="demo" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="demo.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="bgcolor" value="#ffffff" />
<embed src="demo.swf" quality="high" scale="noscale" bgcolor="#ffffff" width="100%" height="100%" name="demo" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>

Full Browser Flash And Mozilla
Hi All

I am having some difficulty getting a background image to center on screen in mozilla, it works on ie (pc & mac) and safari but not on mozilla, I have looked around and thought I had the fix but no.

I dont know if it is the html on the page, I know mozilla can have a problem with that but I dont know enough about it to' comment.

The following is the onResize stuff in the flash


Code:
// Create an object to receive the screen events
stageListener = new Object();
// Create a function for the event
stageListener.onResize = function() {
windowResize();
};
// Assign a listener for the Stage object
Stage.addListener(stageListener);
//
function windowResize() {
stageXCenter = Stage.width*.5;
stageYCenter = Stage.height*.5;
//
//sets the position of the background image(this doesnt work in Mozilla)
background_image_width = holder._width;
background_image_height = holder._height;
holder._x = Math.round(stageXCenter-(background_image_width/2));
holder._y = Math.round(stageYCenter-(background_image_height/2));
//
//sets the position of the menu and content depending on screen size(this works fine)
content_ypos = Math.round(Stage.height/3);
menu_xpos = Math.round(Stage.width-193);
main_menu_mc._y = content_ypos;
main_menu_mc._x = menu_xpos;
address_mc._x = main_menu_mc._x;
content_mc._y = content_ypos;
}

I have a preloader for the background image that calls windowResize() when loaded, and all vars are initiated beforehand, can any actionscrip wizz out there see what I am doing wrong?

the url is
www.setvariable.com/elastic

Any help mucho appreciated

Full Browser Flash Refresh
Hey all,

Building something out that is Full Browser Flash by utilizing the Stage.object and embedding the .swf with the swfobject method (http://blog.deconcept.com/swfobject/).

Wanted to see how it tests on a variety of browsers. Anyone seeing issues?
http://www.palisadesmedia.com/comps/...ndex_full.html

And what are your thoughts on having Full Browser Flash? Beneficial or not? Annoying to the user?

Thanks in advance!

[F8] Full Flash Stretch In Browser.
I was wondering how I would pull off making my movie stretch in the entire browser without changing the size/quality of the movie itself. here is an example of what I am looking to accomplish.

http://www.elfincreative.com/


Thanks for any help.

Full Browser Flash Problems...?
Hi all.
I'm trying to create a full browser flash, everything works except that the image is not resizing properly when it loads into the page.

You can download the fla file and look at it
here.

You can also look at the test index page here.

Thanks for assisting me.

Full Screen Browser Using Flash 9
Hi I'm wanting to find a tutorial on how to create a full screen flash site and have the image scale proportionally. Similar to this site http://www.hive.com.au/#/work/81/

Can someone point me in the right direction.

Cheers

Full Browser Flash (FBF) Sites
hi,

does anyone know of any tutorials or downloads that could help me understand this?

Thanks
Andy

Full Browser Flash With Scrollbars
Any good plugins available for Swfobject which enable a full browser flash site to have scrollbars when the browser resizes to smaller than the flash object? I used to use swfforcesize, but that only works with swfobject 1.5 and I'm now using swfobject 2.1.

Full Browser Flash Question.
Hi everyone,
I'm creating a full browser website for my portfolio. What i would like to do is if the browser is rescaled to say under 800x600 a message would appear say your browers needs to be rescaled to at least 800x600 to view my site properly. I hope I'm being clear enough about what I'm try to do. I have everything else working with site scaling it just when the browser is made smaller things start to over lap and it looks crappy.

Hopefully someone here can help me out.
Thanks in advance

Copyright © 2005-08 www.BigResource.com, All rights reserved