ActionScript 2.0 :: Resizing A Full Flash Site?
Jan 7, 2007
I'm trying to resize a full flash site. I'm using if statements to do this. Is there a better way? I want the resize to hold the proportions. Additionally, my if-statement method is too cumbersome. It doesn't always keep the content in the center (doesn't resize to the content to be in the center).
Scenario: The base is a black background that resizes according to the window size. The main image stays in the middle of the page.
Code:
var holderAllMC:MovieClipLoader = new MovieClipLoader();
var holderAllMCListener:Object = new Object();
holderAllMCListener.onLoadProgress = function(target, loaded, total) {
[Code]....
View 8 Replies
Similar Posts:
Feb 25, 2012
i have made a site in flash. stage size 955x600 i have exported it as fullscreen with no scale. the problem is that if i browse the site with a resolution of 800x600 (760x420 if i'm not wrong), the browser dont' add scrolls and its impossible to see the complete site. How can i fix this without resizing the site. i want the users to see with the proportions that i have now.. ijust want a scroll on the browser.
View 2 Replies
Sep 10, 2003
just wondering if there is a way to resize or possibly redirect a flash site based on monitor size.
View 2 Replies
Jul 23, 2007
how people use the full browser size in flash, even when resizing? Just like they did on [URL], the navigation is always on the bottom of the window, still after resizing the same for [URL], here also the background images resize real time
View 3 Replies
Aug 6, 2009
I just wanted to know how to stop my flash site from resizing to the size of whoevers looking at its browser? I just want it to remain as it's set size.
View 1 Replies
Dec 7, 2010
Consider the following Flex code:
private function fullScreenHandler(evt:FullScreenEvent):void {
if (evt.fullScreen) {
viewstack.selectedIndex = 2;
[Code].....
I have a viewstack with two containing canvases. Canvas 1 is used when in normal mode and canvas 2 which is used when in full screen mode.
To properly resize the objectInViewStack2 I need to know how large the screen is when in full screen mode.
View 1 Replies
Nov 10, 2010
My main swf is 960x600 and loads full screen. it is a projector or swf, local. I have the code on frame 1 to ensure full screen and show all:
stage.scaleMode = StageScaleMode.SHOW_ALL;
stage.displayState = StageDisplayState.FULL_SCREEN;
Then I load an external swf into a mc, and it goes full screen as expected. BUT the main swf that loaded that external one, at the time of load, suddenly gets scaled back down to its normal size: 960x600, on the top left corner of the Player Window (or the full screen), so somehow at 0,0. Whn I unload the external swf, I can put the code stage.scaleMode = StageScaleMode.SHOW_ALL; to get it back to where it was. But unfortunately I have some buttons from the Main swf that are supposed to be on top of the loaded one, and should stay where they are. But now they all move because of this scaling down.
the mc that is being used as a container for the loaded external swf is an empty mc located at 0,0. The external swf has the same size as the main one: 960x600
I searched and tried things but could not get it to stay in show-all mode when loading this external swf...
View 0 Replies
Sep 15, 2009
am trying to get around succeeding a full screen site in flash with AC3, but always ending with no satisfying result, I am trying the 100% on both the width and height in the html file, but at the end it doesn't work properly, I don't get a full screen, and when I get it, the files seems to be doubled kind of streched to fit the screen, the writings and images are as twice as their original size in the flash documents, any one has a tutorial or somewhere where I can find an answer to this:I am lokking to making something closer to this:[URL]
View 3 Replies
Feb 10, 2012
I built a flash site and learned quite a bit. Now my site is starting to get sluggish as a result of a 3d graphic photo gallery. I really would like to keep it.My site gets slow after loading the gallery. Is there a way to clear the cache so to speak, after it's not being used?
View 4 Replies
Nov 12, 2003
I've never created a full Flash site and really want to. The tutorial on the Kirupa site on Creating a Full Flash Site [URL]... was great but I have a question... probably a stupid question, but I have to ask it anyways. Did you have to create the linked swf files separately? Those pages have fun features on them as well - but since the fla files weren't included in the download .
View 7 Replies
Jan 29, 2009
I have to launch a full browser Flash site tonight, all is working great except one issue. The doc type which should be a validated working doc type (below) is throwing my whole flash to the top of the page leaving about 80% of the page all white:View problem site: http[url]....
Code:
<!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">
But if I use an outdated doc type (below), it works just fine and fills the browser fluidly as it should.
View 5 Replies
Apr 26, 2009
This is in regards to Flash 9 (CS3). How can I embed an external .flv file into a full Flash site? I am looking for an action that can call a .flv and its components (player files) with play/stop controls. I see it's being done on this site
View 1 Replies
Sep 23, 2011
URL...How can the pixelation in the video on this page be stopped? I'm assuming that this is a resizing issue. But if you are creating pristine video and it gets pixelated like this, what's the point?
View 7 Replies
Jan 22, 2010
I am trying to set up google analytics for a full flash site.
I added code to the html page and I think it's working properly - to see who is going to my site. But...for more advanced tracking, I think I need to add code to the flash file too.
View 1 Replies
Jan 18, 2009
I'm making a fluid full browser flash site, and things are coming together nicely, but at some point, if the stage size gets too small (such as if someone is using a 800x600 resolution), things just don't look right. Things get all smooshed together and cause for a cluttered mess. To solve this, I put constraints on my stageResize function so the stage would only shrink down to a desired size. This worked great for the flash file, but I can't get the browser to add scroll bars are this point. I figured I would need a JavaScript file that would size the browser (or the div that contains the swf) and then constrain it as needed, but after digging around a few sites that perform the way I would like mine to, I am not seeing any such JavaScript files.
Example: [URL]
View 14 Replies
Apr 27, 2005
I've decided to finally make my own full flash site. I've got more than enough Flash and ActionScript (and XML) knowledge to pull it off nicely, but I was wondering if people who have already done this have any advice for me in terms of organizing the whole thing, so it's easy to upgrade and follow through during the time you build it. I was thinking a standard layout, maybe an intro and a first preloader, then a menu that choses sub-sections and each has an intro and outro transition? Oh, and for seperate sub-sections, do you put the preloaders in the main movie or do you include the preloaders seperately in each of the subsection swfs?
View 3 Replies
Jul 29, 2005
is there a way to make flash site on full screen I mean no IE tool bar nothing, flash on full screen
View 4 Replies
Sep 29, 2005
I m planing to create a full flash site. But in stead of jus an URL that lead the user to index.html, I wish to allow the URL to direct the user to goto specific page. It is sumthing like [URL]. note the URL, it passes parameter to the flash movie without reloading the swf. Any Idea how to create that?
View 6 Replies
Mar 4, 2009
Just finished our new site which is full screen Flash effort (link in my signature if you're interested), now I would really like to implement some accessibility features, bookmarking, history etc.The whole site has a central navController function through which nav requests pass which I've developed with this in mind, and I've got a vague idea of how to do this using invisible frames and passing variables through FlashVars but is there any consensus on what is the absolute best way of doing this? The new Attik site is a good example of what I want to achieve [url]
View 4 Replies
Apr 15, 2005
i'm making my own portfolio full dynamic flash site. And animation and interface is ok. But i don't know about connecting to database. And i read about PHP+AS. And i couldn't get a good point.
View 4 Replies
Apr 22, 2010
Flash full screen actionscript works and opens in flash player only, but not when imported into html and open for web browsers
View 1 Replies
Oct 7, 2010
I am having trouble with an 'enter site in full screen' button.I have a title screen on one frame which on a button click should advance to the next frame & set full screen.Basically, when I test the movie it is fine, when I then test it live in a browser the movie loads but on button click doesn't go to my next frame or fullscreen.
Code:
stop();
this.addEventListener(Event.ADDED_TO_STAGE, init);
[code]......
View 2 Replies
May 13, 2003
I did the tutorial for "create a full flash site" under flash mx advance. I did everything right and it worked. Ok here is what i want to somebody to help me out.
The action: on (release) {
_root.contents.loadMovie("locations.swf");
}
because when i extracted the zip file it had only the different swf. files and the main file where they were going to be loaded. What i am saying is do all the swf. files have to have some connection to the main movie where i am loading the swf. files in order for it to work or it doesn't matter. so what am trying to say is i could have any swf. file and use that action to my main movie even if has nothing in come and it will play it.
View 2 Replies
Aug 6, 2009
My full screen flash site works oerfectly on Mac's (I have a mac). But on PC IE and Firefox the full screen flash site is cut off 1/4 of the way down the page (see screen shots in zip or test if you are on PC). live site [URL] The site uses a swf object (files included in the zip). I got this from a template on flashDen. my problem is that I only have my mac and can't test on PC IE / firefox. Not that I would know where to start. I think that the problem might be the swf object from [URL] but not sure? I need to sure my site to apply for jobs. But recruiters use PC and it is very embarrassing that they can only see 1/4 of the screen.
View 2 Replies
Nov 3, 2009
I am trying to make a flash site open full screen without having to hit any buttons,
View 7 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
Sep 8, 2010
How to create a fluid / liquid / fit to screen flash site with scrollBar. I am pretty much new to AS3 and flash. I have been looking for a way. To have, a background image contained in a MovieClip. Let's say: bg_mc and have it scaling automatically to fit the different user's Internet browser screens size. In other hand, have another MovieClip that handles and holds the site. Let's say: content_mc without being affected by the scaling of the bg_mc. And last, in the case... the content_mc height does not fit in the user's internet browser. Have the internet browser with its scrollBar so the user can scroll down and see the rest of the site. (right now my content_mc is being cut off the screen).
Examples Flash sites with this layout: [URL]. The Next Code: it does generate a full browser's background image but there is no scroll bar for IE or FireFox and in some cases stretch my content_mc if i play too much with StageScaleMode.
// -----> AS3.0
import flash.display.Stage;
import flash.display.StageScaleMode;
import flash.display.StageAlign;
var myStage:Stage = this.stage;
myStage.align = StageAlign.TOP_LEFT;
[Code] .....
View 2 Replies
Sep 3, 2009
I am making a Full Screen flash site and I need my BG to scale proportionately. Currently I am using:
Code:
_root.attachMovie("bg3","bg3",_root.getNextHighestDepth());
bg3._x = Stage.width/2;
bg3._y = Stage.height/2;[code]...
View 1 Replies
Nov 16, 2003
I have a button when I click on it it is suppose to load an external swf into a empty movie clip. But everytime I clicked it, it juz loops the whole flash animation of this very whole flash the button is currently in which it should actually load the external swf to the empty MC. I can't attack my file here since it is too big.
View 1 Replies
Apr 16, 2005
is there a way to tell flash in a button event to open a a html site (php-cgi) with a small size, lets say like 300px x 200pxThe html.site/php-cgi) id like to get openned and resized at 300x200 looks like this:
__________
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
[code].....
View 4 Replies