ActionScript 3.0 :: Make The Site Resize According To The Browser?
Nov 4, 2010
I'm having a lot of trouble with a website a friend asked me to make her.For the longest time, I couldn't figure out how to make the site resize according to the browser. (Any help with how to have the background/stage expand while keeping the movieclip containing the content centered and the same size would be a great bonus.)Now, with the code I found after weeks of searching, I'm recieving error 1046. What is this, and how do I fix it? Or, how do I implement the changes to resize background/keep movieclip constant?
[Code]...
View 5 Replies
Similar Posts:
Jul 16, 2009
I'm trying to create a full stage site. I do use this code:
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
stage.addEventListener(Event.RESIZE, resizeListener);
function resizeListener (e:Event):void {
trace("stageWidth: " + stage.stageWidth + " stageHeight: " + stage.stageHeight);
bG.width = stage.stageWidth;
//mc which contains the bg image bG.height = stage.stageHeight;
But it doesn't work. No error, no warnings. So I don't know what is the problem. It works only in the flash player (Ctrl+Enter), maybe the HTML is wrong?
View 4 Replies
Jan 22, 2010
am not much a coder but am learning i just wana know how i can center my flash site/content/background on browser resize
i found a tutorials about that exactly the only problem was am using AS2 and the tutorials is for damn AS3 so please if you know one for AS2 then direct me or if you got som code u wana share dont hesitate 2 post it 4 me
View 1 Replies
Jul 29, 2011
I'm trying to run my swf by going directly to it on my serer eg(www.example.com/mySWF.swf), later I will embed it using HTML or PHP, however Im wondering why it keeps getting resized to the window size, I want it to stay the size of the swf. In the publish settings I set dimension to Match Movie, and I set scale to No Scale in the HTML tab of publish settings, am I doing something wrong or can you not have it stay its original size without emedding it into html?
View 5 Replies
May 16, 2008
When the browser is resized, how do I make the movie resize?in the HTML parameters, I put width 100% and height 100% and in the .swf file I have: Stage.scaleMode = "noScale";Stage.align = "TL";ow, I notice if I were to shrink or make my browser stretch out. The swf doesn't resize on it's own to fill the space when larger or resize when you shrink the browser width/height. I've been told to use a listener, but I have no idea how it works, I've tried putting in scripts with no luck.
View 2 Replies
Sep 2, 2009
I am desperately trying to make the movies in the attached file resize with the web browser but anchored to the white line on the left. The coloured buttons should not resize but move left or right to align with the edges of the pictures.
View 3 Replies
Jan 30, 2010
I have been looking for a tutorial or thread to help me figure this out. I am trying to make a site that when the browser is resized the objects in the site either resize or keep their position and stay visible. The link below is an example of exactly how I want this to work.[URL]...
Im working in AS2, and Im not sure if this can be done in flash alone or needs to be done in html or a combination of both.
View 1 Replies
Mar 12, 2005
I'm working on a school project. It contains a main section which has 7 buttons. Each of these buttons is a character which you can zoom in to, see who they are, click and see a small cinematic/animation and proceed to it's respective section. I have a couple of concerns.
1. What is the best way of loading my project? I've been thinking of using the loadMovie and have placeholders, each section with a progress bar. what should I load when?
2. how can I make the flash movie resize in the browser window using actionscript ? so that I have no problems with screen resolution sizes. I use 1280x1024, but I guess there are still people on 800x600(which is lame) Here is an example of the resizing I mean: [URL]
View 2 Replies
Sep 11, 2009
I'm still farely new to flash so this my be real easy i make my flash site stay centered in the browser no matter what size screen they are viewing it on....i like the look of a clean centered site not matter what size the screen you view it on.
View 5 Replies
Mar 9, 2012
[URL]make fully in flash, can interact with the brwoser size (try to resize the windows and see what happen). I thought that it isn't possible, but i unserstoond that i was wrong after saw the louis vuitton site.. Then how i can activate the "browser scroller interfacing" with my swf?
View 2 Replies
Jan 30, 2005
How do i make site resize to a persons screen so that it fills their screen.
View 2 Replies
Jul 7, 2011
I'm having a bit of a problem here. As per the title, my flash swf file works fine when tested from the IDE, but when I publish it and open it through the browser, the stage doesn't seem to resize along with the window.I post below a bare-bones example. The "back" movie clip should resize, only it remains at the starting dimensions
Code:
import flash.events.Event;
import flash.display.MovieClip;
[code].....
View 9 Replies
Sep 28, 2010
I have a datagrid that occupies 100% of browser screen. I want the grid to automatically resize when the browser is resized to small or full screen.
View 1 Replies
Dec 14, 2010
Does anyone know how to resize all content on the site scales relative to the browser size of the viewer. Whether it is on a Netbook or a 30 inch screen all contents to fit on? I'm not talking about the basic center resize of stage.with and stage.heigh.
Basically I'm loading a content.swf in a main.swf and from the Main.swf, I want to be able to apply the resize all content method.
View 3 Replies
Oct 11, 2011
people i am having a problem to adjust my site to different resolutions. i have tryed severral options like putting 100% to with and eight but what i really want is something like is told in this tutorial (see image)
the problem is that my site is done is as2.0 and the tutorial is done is as3.0, and it refers to a rectangle with a background, and i want to addapt it to my site and dont know how.
View 9 Replies
Jan 31, 2010
I made a website in flash with a fullscreen button. Now when i click on the fullscreen button the function fullscreen works but the webpage has the same size like in normal mode. How can I realize it to resize the webpage automatically in fullscreen ? Is there any code-snippet for this function ?
View 1 Replies
May 20, 2010
I noticed that website[URL]Does anyone know how they apply resized method on thumbnail pictures that fit for any browsers?
View 0 Replies
Jan 30, 2005
does n e 1 know how to achieve this effect what i want to achieve is, the way that the borders fit to size depending on the content.
View 4 Replies
Jul 6, 2009
how to create this:[URL].. the site will resize itself no matter how you resize your browser.
View 2 Replies
Feb 12, 2010
I am trying to achieve the resizing effect as seen on [URL]There is no distortion no matter what direction the browser window is resized.
View 1 Replies
Dec 23, 2010
I got my external swf to center...However, when I resize my browser the external swf dissapears off the screen (I can still hear it's music though) Anybody have any suggestions? Heres my class code:
[Code]...
View 3 Replies
Jul 16, 2011
I am creating a site and I want a small swf slideshow background to be loaded into the main site SWF and be able to be resized to fill the browser. But as I bring in other swf files they are able to retain their size, not be resized in the browser. And I want the main site to stay in the center of the browser.
View 5 Replies
Aug 17, 2011
I'm pretty new to Flash but working it out. Just one question: how does one make it so the Flash animation automatically resizes depending on the resolution of the user's screen? I made a site with a Flash video that looks perfect on my screen, but when my friend with a different resolution goes to it, evertyhing is out of whack..
View 3 Replies
Jul 29, 2009
I have been scouring the net for some answers on how to get a swf to automatically resize to fit all browser windows (resolutions)...
I found one javascript [url]... that is meant to do this, but I havent had any luck in getting it to work.
View 2 Replies
Mar 24, 2011
I am working on a flash website which needs to be fluid layout. The background image is resizingperfectly fine when the browser is re-sized.I have also managed to make the logo centre on re-size. My problem is with the two other movie clips which both have other mc inside.My content is residing inside a movie clip called "content_mc" inside the content_mc I have other movie clips with AS. I have tried using the same line of AS I used to centre the logo on "x" but the content disappears of the screen on run time!I thought maybe I am doing something wrong in the math. Note my content_mc it is positioned at x= -1620 and y= 270 W= 900 H= 7412. Here is the AS I use to resize the bg img and to centre the logo_mc
Code: Select all// background image resize..//
function init()
{
[code]....
View 9 Replies
Oct 23, 2006
how a browser automatically resize itself, once visitors type in the link ? and no rescale allowed.i know the way to open a fixed size pop up window, but i haven't seen any tutorial about auto-resize browser ?
View 2 Replies
Apr 17, 2010
how can i position an externally loaded MC on browser size were if the browser is resized the mc follows and stays in view instead of been shifted out of view
i can get it to work if my MC is on stage but it dont work if the MC was loaded externally it loads but does not position/follow the browser edge and goes out of view below is the AS2 code
Stage.scaleMode = "noScale";Stage.align = "TL"; var stageListener:Object = new Object ();stageListener.onResize = positionContent;Stage.addListener (stageListener);positionContent
View 1 Replies
Aug 27, 2010
I'm also completely new to flash and Actionscript 3 programming. I got Flash CS4 two days ago and i've already started work on a website by following various on line tutorials and I'm beginning to pick it up.One thing that I haven't been able to work out is how to make my site centre in the browser. My website consists of a 1000px by 700px stage. However it is simply white space for the right and left 150px in leaving the actual content in a rectangle in the middle, 400x700. Now when I test my movie in CS4 it renders perfectly in the centre of the screen with no issue. However when uploaded to my domain, it is always not central
View 1 Replies
Oct 3, 2010
I've seen this in a few sites and I would like to know how they do it. [URL]
View 5 Replies
Dec 18, 2009
in other words, suppose I want to send data, like text, programmatically from a Windows app (such as a browser plugin) to a Flash app running in the browser. Well, conceptually, an example of this might be a Flash instant messenger with a textbox and button "Send"; so let's say I want to be able to programmatically paste the text and press Send or otherwise activate it. That's NOT what I am trying to do here in reality (i.e., no,I am not trying to spam other people's chat rooms or anything)but just an illustration of a similar situation.I can include in it whatever widget or hack that may be necessary.The reason why this problem is arising for me is that AFAIK the SDK that is providing me the data I want cannot be directly accessed from Flash, so I need a way to pipe the data from a regular app into Flash. can I have the Flash app interact with other apps through localhost IP? Or are there draconian restrictions on which server Flash in browser can and cannot interact?
View 1 Replies