Still A Problem With Full Flash
I have looked at threads if I didnt see the one that will help please post. Having trouble having a container_mc center on stage correctly. I followed goto's tutorial and cant get the container_mc to center correctly. Also upon opening the window it doesnt seem to size right until you readjust the window then it will move to different location but still not in the center. Here is my AS: Code: import flash.display.BitmapData;container._x = Stage.width / 2;container._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(); container._x = Stage.width / 2; container._y = Stage.height / 2;}Stage.addListener(stageL); I have also tried addingcontainer._x = (Stage.width / 2) - Stage.width / 2 ;container._y = (Stage.height / 2) - Stage.height / 2; but still it doesnt funtion right. Help..... thanks in advance MT
KirupaForum > Flash > Flash 8 (and earlier)
Posted on: 08-16-2006, 05:56 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Full Screen Flash. No Toolbars, Controllers, Just The Flash Page On Full Screen - How
Ive seen this on DVD Roms, Multimedia Roms, Presentation Cds, etc.
People insert their DVD or CDs of their Flash and it plays automatically and at Full screen. There's no Controllers or anything except the one you make in the Flash itself.
There's no browser either. Its like watching a DVD where all you see is just the movie.
Anyone know exactly what this method is called and any tutorials or samples on how to do this with your Flash page.
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 SCREEN...the Full Ideal?
Hello,
Ok I'll get right to it...
I have been to sites where the Flash movie is held within a border that loads seperate, I believe within the HTML page itself, that the flash movie is sitting on...
These sites will work well at any resolution above 800x600, with everything centered as well. If the window is scaled down by size, the flash movie centers too as well as the HTML page
How do I do this.
I have this code:
fscommand("fullscreen", "true");
fscommand("allowscale", "true");
where do I put it and how does it work! More important, the 'how it works' part....
thanks
i hope the question is clear enough...
Full Flash
How can I make a full flash site without using different .swf files?
Maybe it's a stupid question but I have never made a full flash site before
Greetz Jakke
Full Flash
How can I make a full flash site without using different .swf files?
Maybe it's a stupid question but I have never made a full flash site before
Greetz Jakke
Full Flash BG
Instead of using html .gif background, i want my entire web site bg to be full flash. But i dont want my image in the background to be stretched or anything. And my movie should be centered nicely on top of this flash bg. I saw couple sites like this b4, but cant remember. How can i achieve this?
Full Flash Website Vs. Hybrid HTML/Flash?
Im looking to building a website. Anyone have any suggestions which route to take whether a full Flash site or a hybrid HTML/Flash site? Im leaning towards a hybrid site cause I believe it will be easier for me to get it up and running quicker cause of my low level Flash skill level.
ToolJob
Error Page In Flash For Full Flash Sites
Hello I have built my full site in Flash but one thing that I notice is that if I make a mistake and forget to upload one of the swf files the site just hang until I upload the file. So I decided to draw up a File not Found Page in flash too. How would I write the Actionscript for this.
My Loader is "this.container"
Made this Code Up...
Code:
if (_global.error) {
trace("Loading failed!");
this.container.loadMovie ("404.swf");
} else {
trace("Loading Passed");
}
this.container.onComplete = function(success) {
if (success) {
trace("Page Loaded");
} else {
_global.error = true;
}
};
This One To
Code:
this.container.onLoad = function(success) {
if (success) {
trace("Page Loaded");
} else {
_global.error = true;
}
};
Can some one help me with this?
Full Flash Or Half Flash Website Question
okay after doing flash for a lil bit im a bit confused.. it seems like this stuff is mostly for graphics moving around and stuff like that. Now my question is.. is it better off to make a site complete with flash or one that uses a header flash and the rest are html..And if i go with the header flash & rest HTML how do i connect the flash button menu so that it opens a page in my html. i dont know if i make any sense any help will be good thanks. I guess its kinda like kirupa site where the header is flash and the context is html..or maybe im wrong everything on kirupa site is flash hehe
charlie chen, complete noob.
Full Screen Flash With Fuse And Flash 8 Problem
Hi Everyone,
I had this working fine in flash MX 2004 but I have updated to flash 8 and a Im tring to get it to work with fuse.
The strange thing is that when I test the movie in flash it works fine but when I launch it in my browser the movie clip won't reposition.
Here is my code...
Code:
import com.mosesSupposes.fuse.*;
ZigoEngine.register(Fuse,PennerEasing,FuseFMP);
Stage.scaleMode = "noscale";
Stage.align = "tl";
ball._x = (Stage.width - ball._width)/2;
ball._y = -70;
Stage.addListener({onResize:reposition});
function reposition() {
var center = _root.ball;
var nPos;
nPos = getNewPosition(center);
FuseFMP.writeFilter(ball,"Blur",{blurY:10, blurX:10, quality:1})
var f:Fuse = new Fuse();
f.push({target:center, x:Math.floor((Stage.width - ball._width)/2), y:Math.floor((Stage.height - ball._height)/2), Blur_blurX:0, Blur_blurY:0, seconds: 0.5, ease:"easeOutQuad", func: afterFuse, scope:center});
f.start()
};
function getNewPosition(mc) {
var newX = Math.floor((Stage.width - mc._width) / 2);
var newY = Math.floor((Stage.height - mc._height) / 2);
return {x:newX, y:newY};
};
reposition();
Anyone got an idea what Im doing wrong, Im going to have to revert back to MX 2004 and if I can't get this to work and I don't really want to do that.
The fla can be found here...
http://www.primografik.com/downloads/Fuse_Ball_test.zip
Thanks
Error Page In Flash For Full Flash Sites
Hello I have built my full site in Flash but one thing that I notice is that if I make a mistake and forget to upload one of the swf files the site just hang until I upload the file. So I decided to draw up a File not Found Page in flash too. How would I write the Actionscript for this.
My Loader is "this.container"
Made this Code Up...
Code:
if (_global.error) {
trace("Loading failed!");
this.container.loadMovie ("404.swf");
} else {
trace("Loading Passed");
}
this.container.onComplete = function(success) {
if (success) {
trace("Page Loaded");
} else {
_global.error = true;
}
};
This One To
Code:
this.container.onLoad = function(success) {
if (success) {
trace("Page Loaded");
} else {
_global.error = true;
}
};
Can some one help me with this?
Having Problems Doing The Full Flash Site Tutorial In Flash 5
I'm at the point where I'm trying to put code in the buttons using a movie I created.
Here's the follwing code:
on (release) {
_root.contents.loadmovie
("mymoviename.swf");
}
I have a blank MC with the instance name "Contents"
Problem:
When I press the button I get an error and also its pointing to the wrong folder for the movie.
It worked perfectly when I had the Flash MX trial but it's not working now that I'm using my Flash 5
Create Full Screen Flash Website..... New To Flash
Hi
I would like to create a full screen flash website in the browser.
I need the middle part to be fixed width ....ex 950px but the background to repeat as needed depending on the browser size.
Any good tutorials to do this?
Thanks,
Chris
Full Screen In Flash @ 100%...
Hi all
I'm creating a CD ROM in flash and need to open it up so that my desktop becomes 'hidden'. (ie: my flash file centers the screen, and a black border all the way around.)
I have used FS commands @ full screen set to "true" and allow scale set to "false", but I cannot seem to be able to crop the movie. For example if I have a box flying across the screen to the right it should disppear as soon asit it hits the edge of the movie frame, but instead I can still see it.
I know in director I can create a Projector file from there and it will do it, is there an easy way to do this in Flash?
I'm not that clued up on html, but i'm willing to give it a go if it will work!
Thanks in advance for any help
IanJF2000
Full Screen Flash
Hello!
What is the best way to launch a movie in a new window, full screen, and what is the best way to close that window and return to the page you launched it from? Thanks!
Full Screen Flash (.exe)
I see some flash files (.exe) play full screen without the task bar showing.
How can it be done?
Full Screen Flash (.exe)
I see some flash files (.exe) play full screen without the task bar showing.
How can it be done?
What Do U Think Of My Home? <Full Flash>
Sorry for poor english.
I'm korean.
I really wnat to know my homepage style's possibility.
I need your evaluation.
Thank you so much for reading this article.
http://motobcs.xdns.co.kr
[Edited by bcsmoto on 03-30-2002 at 03:30 AM]
FYI: (was Re: Flash 5 Full Version...)
Just a fyi... gSOLO_01 did not post links to warez in this thread. Just wanted to clear his name... he posted lins to the Macromedia store and an online software selling cmpany.
Full Screen On The Web With Flash
I have designed a site in flash (pinellasplaza.com). On my screen it comes up fine and full-screen. But when i view it on other sites, it doesn't fill the screen. There is a white border on the right side and bottom of the screen. Is there a script that you can give me that could solve this problem. Your help is GREATLY appreciated. Thanks in advance!
www.pinellasplaza.com
rlo
Full Screen Flash?
how do i get the movie to load full screen? Without any of the browser showing to the user, and with the little x or whatever i choose in the corner to close the window?
Full Size Flash
so i have been seeing a lot of full size flash sites
and some of them are real nice
i have been fooling around with it a little bit but have some opinionated questions
what do you prefer to code for:
1. chromeless window
2. full size pop-up like window
3. full size in browser
also, how can you get the viewable area of the movie
i can dynamically set the size of my objects inside my movie, like a back screen, but how can i get the users viewing area.
i was thinking javascript and just throw it on the end of my src call, flash.swf?uHeight=800&uWidth=600
something like that, any other ways?
Full Flash Site
i'm in the process of working on my first full flash site in mx. i'm using the gotoandplay function to divide my site into pages, each of which opens with a motion tweened animation. when a page is open and another is selected the open page simply disappears and the new animation begins to bring in the new page. is it possible to attach an animation onto the page which is closing aswell as the openinig page, if so how would i go about doing this. i will attach the .fla to show what i have done so far in case people dont quite understand my question.
Cheers people.
Full Flash Site.
Can some people explain how a full flash site works, how you load them, how they open, where do you open, etc.
Thanks,
Bryan Hawkins
Full Flash Site...
I'm making a full flash site the size is 700x500 for the site and it will sit in the middle of a background.
now I want the start of the flash to have a small intro where all the nav bars text areas ect. fly into the site, (nothing really new) now do I just copy the layout and move the parts in before or do i make this another flash file, ??
kinda lost here
Full Screen Flash
Hey,
I'm trying to open a full screen flash movie from a HTML page. I'm having dramas trying to get the javascript link in tho becuase I already have a javascript rollover on the link (if that makes sense).
This is my code below... how would I add a full page link to this?
<a href="flash.htm" onMouseOut="MM_swapImgRestore();" onMouseOver="MM_swapImage('index2_r2_c2','','image s/Images/broadenter.gif',1);"><img name="index2_r2_c2" src="images/index2_r2_c2.gif" width="366" height="66" border="0" alt=""></a>
Thanks!!!
SEO For A Full Flash Web Site?
**Please tell me if I need to post this elsewhere!**
I am absolutely confused about how to get good search engine optimization with a Flash site!
All I read, from the pros, is that meta tags are not read by the majority (if not all) of the search engines out there any more.
If that is so, how are you supposed to catch a search engine's eye, when the entire site is done in Flash?
Please help me sort this out!
~Vik
Full Screen Flash
Hi,
I want a script for a full screen flash page. When i click a button on the home page, this flash file should open in a full screen mode. There should not be scrollbars or anyother browser elements..
can anyone pls. gimme the script..?!
thnkz..
Full Screen Flash
Hi,
I was wondering if there was a code for flash's actionscript,
so that i can view my .swf file full screen with no status bars
or anything. The result i am looking for is very similar to this
http://www.frosch-studio.com
I am currently using Flash MX and the final product of my project is going to be an interactive CD.
Your help will be acknowledge in my final piece as this is a major project for school. Thank you
Full Screen Flash App. ? How
So I have a flash file I made - that I saved as a .swf
I have an autorun program ie. Text file that makes it run if you were to put it to a cd and pop it into another computer. it's just a MC - but what script internal like actionscript or Java outside script - what do I need to make the movie I have - Full screen.
The ideal goal here being - you pop in the cd.
and this file auto and goes full screen.
Anythoughts.
Thanks for the help.
PS. I think I have the auto run down but if you kow of a good way to do this whole thing - write away.
Thanks
JT
Flash Full Screen
OK... so hopefully this will make sense.
I have a flash file that is 740 x 750. In that flash file I have a bg image that is about 1600 pixels wide.
In the index.html page where I'm embedding the flash file I have set the width to 100% with all of the scale options set to "noscale" I also have an fs command on the first frame of the flash file (allowscale = false)
all is pretty much working as I had planned except it seems to be putting white space in the flash file to the left of the content. There is no such white space in the actual FLA... so I'm really not sure what the frig is going on.
Let me know if that made sense and if you might have a solution to my problem.
thanks
Full Flash Site
can anyone tell me what the problom is in this
on (release) {
_root.contents.loadMovie("locations.swf");
}
because im using the old flash mx and it says error on page when i try playing my site.
thank you
Full Flash Site
I'm farily new in flash and I know the basics pretty well other then knowing What is the best way to lay out a full flash site? Should you make each page by using scenes or should you just have one long scene and make each page a location on the timeline, or do I make each page it's on swf file? What the best way. Also I would like to make nice transitions inbetween the pages..example would be a swipe or fade out and fade in. Any suggestions for this as well?
Thanks
Full Flash Site
Hi I am sort of new to flash I can do basic animation and create flash "pieces" for websites like menus etc.
Now I want to try making an entire web site in flash and my biggest goal in doing so is so when you hit a button it will do an animation of the images/text leaving and the new images/text flying in.
I have no idea where to start.
Thanx
Flash Full Screen
Does anyone have a link to a tute on making a flash projector file resize to fullscreen after user input.
thanks.
Help With Full Flash Website Plz
Hi everybody
Ok, directly to the point... im trying to make a 100% flash website.... I have some time using flash mx, and have a little experience in actionscrpting; I'm trying to find a wey to load HTML into a flash object, because i don't want to put the whole website in a singe FLA, this logically is going to much memmory, so... is there a easy way to do it?
Full Page Flash
Hey,
I have a 300x400 anamation of bubbles... Im placeing this on the side of my page and I want it to be the full lenth. How do i do this? I tryed using javascript and that kinda worked. Help?
Full Flash Site
I have an issue. I have a client who wants me to do a newspaper site. I did my research & found that pretty much all news sites are not in flash. Flash is what I am comfortable designing in, it's pretty much all i've done sites in. I know the basics of html, but I pretty much no nothing about css & all the other stuff. Now if I design this site in flash are there any downfalls to doing so? if there are what would they be? Any opinion on what I should do would be greatly appreciated.
Thanks.
Full Screen Flash
Hi,
Does anybody know how make a flash movie fill the whole browser window no matter what the resolution is?
Any help much appreciated
Thanks
Full Page Flash
Hi,
Ive created a flash movie as like a header for my site. It then links to some other flash cartoons of mine.
Thing is, Ive never got the hang of being able to open a pop-up window, big enough just for the animation.
So I give the button an action to get the URL of the cartoon. This works great, and opens the movie in a separate window. However, the movie always fills the browser window, no matter what size I have made it as in Flash.
So if anyone could point me in the right direction of how to either spawn a pop up window with preset dimensions, or just to stop this movie from playing full screen, I would very much appreciate it.
Thanks for any help
Full Flash Site Help
I have a small question here. I am making a Flash site, and I've almost got things just about setup like I want, except for one thing. I've got my navigation buttons on there, and they all load external movie clips to bring up the various parts of the site. I want one movie clip to be loaded with the site by default. It's my "home" section of the site.
Can someone give me some sort of code that would call this movie clip everytime the site loads? And hopefully tell me where to insert it. I thought maybe putting a "this.onEnterFrame" function there, but that went to hell..so...
...Any ideas?
Full Screen Flash
Hello,
Does anyone know the method required for having your Flash movie in a full screen window but keeping the objects the same sized and centred?
I am looking to do something similar to the SkyHD website:
http://shop.sky.com/hd/navigationself
You will notice that it is a full screen Flash movie with a background that spans across the whole window. However, the objects within their movie have not altered in size and remain centred to the window.
Does anyone know how to do this?
Thanks in advance for any comments/suggestions!
Full Screen Flash
This might be an easy question for somebody, but how do you get flash to load and fill the whole of the available browser window? I don't mean fullscreen, just in the regular browser space, so back buttons and address bar are left alone, like this example here (below). When you resize the browser the stage resized but the flash moviw doesn't scale up and down, bits just reposition.
does this make sense?
http://www.mecompany.com/
thanks
JH
Full Flash Site
im trying to make a site almost fully in flash using various stages. The problem is this: the buttons do not work untill the user clicks the stage. I know it just takes this one extra click to activate a stage, but I want it to be more professional. I know its possible... I mean, what about the advertising banners up on most sites. they only need to be clicked once. if it can't be done with flash I'm willing to learn whatever language is nessasary.(i need all buttons to activate when the site loads)
Thanks in advance, Zac
[F8] Swf On Full Flash Site
hope someone can help me please,
upon the opening of my site, by hovering over the swf, the whole swf is a button. it's here to view @ www.graphikdzine.com/rolloverdj.html
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 Screen Flash
Simple question:
Iv got the code that will enable me to present my flash website in full screen mode (when i create my site) but before I start to create it could anyone let me know what dimensions I should initially create the site in flash or does it matter becuase after all it will be expanding anyway?
Kyle
|