Searching For The Ultimate Full Screen Flash Tutorial
Hi all.. seems to be a few threads floating around about full screen flash sites. The tutorial on Kirupa is good, but I think as I saw in another thread only really "scratches the surface" of what needs to be done in order to create a well designed, working full screen flash site. So are there any in depth tutorials out there? Ones that go through all the ways to apply onResize and so forth? I found this thread on flashdevils.com; http://flash-forum.flashdevils.com/s...hlight=padding but of course this guy already has a good understanding of what's invovled...I want to know if there are any tutorials that deal with the process in this kind of detail...if anybody knows that'd be great!
KirupaForum > Flash > Flash 8 (and earlier)
Posted on: 05-17-2007, 10:06 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Full Screen Flash Tutorial Not Compatible With Firefox Browser?
Hey all you smart scripters,
OK this weekend I took a shot at making a full page flash page like the one found in the kirupa tutorial, it works... however the alignment when viewed in Firefox is awful. The html works within Internet Explorer, Safari, but not Firefox, which is a bummer since most PC users I know use firefox for web browsing. Download the tutorial and preview for yourself in Firefox. So what I am trying to get at is... there a way to create a simple html document that will work universally with ALL web browsers? Thanks
http://kirupa.com/developer/mx2004/swf/myfile.html
preview the link above in firefox to know what I am talking about. I thought Firefox 2 would have fixed this but the same problem arises.
Any suggestions or referred links?
Thanks
Full Screen Tutorial In AS 3.0
How can I modify the code to work in AS 3.0?
I know a lot of things are different and I don't really know how to replicate that same effect to AS 3.0
This is the code in AS 2.0
Code:
import flash.display.BitmapData;
Stage.align = "TL";
var tile:BitmapData = BitmapData.loadBitmap("bg");
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();
right_text._y = 5;
right_text._x = Stage.width;
right_bar._x = Stage.width;
right_bar._height = Stage.height;
bgShadow._width = Stage.width;
bgShadow._height = Stage.height;
}
fillBG();
var stageL:Object = new Object();
stageL.onResize = function() {
fillBG();
}
Stage.addListener(stageL);
Full Screen Page Tutorial
im having a weird problem after following this tutorial:
http://www.kirupa.com/developer/mx2004/fullscreen.htm
i published the swf and html according to the directions and it looked and worked fine when i tested it within flash and via the html page. i then transferred the files to a second computer and uploaded them to the server. now when i view the pages via IE im getting a margin at the bottom that causes the scroll bar to appear (seen here: http://www.skateboardspinnerrims.com).
any ideas what's causing this?
thanks.
Full Screen Question W Tutorial
I am trying to modify the following Kirupa tutorial to give me a full screen pop up.
I can't seem to get the code right for the full screen.
Turorial http://www.kirupa.com/developer/mx/centered_popup.htm
I have tried 'width='+screen.availWidth+',height='+screen.avail Height+'
But that does not seem to work.
Anyone?
Full Screen Tutorial Not Working In Netscape
I just finished the mx 2004 tutorial for creating a full screen flash page by Michael Chen. i noticed that some of the swf file is cut off if viewed in Netscape. Does anyone have a fix for that.
Thanks,
B
Full Screen Tutorial Not Working In Netscape
I just finished the mx 2004 tutorial for creating a full screen flash page by Michael Chen. i noticed that some of the swf file is cut off if viewed in Netscape. Does anyone have a fix for that.
Thanks,
B
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 Screen Flash Projector Reverts To Windowed When Exiting Screen Saver
I've created a flash projector that displays a companies product catalog on a 50" touch screen plasma display.
It looks great and plays great if I launch the projector and force it to full screen.
However, since this is a plasma, screen burn in is a major issue to contend with.
I've set the Windows screensaver to activate after one minute of inactivity.
The problem is that when the screensaver is exited by a touch, the flash projector that was running in full screen mode is now back in windowed mode so CTRL-F has to be hit to force it to full screen again.
This isn't good.
So, I guess my question is two-fold:
Is it possible to programatically force the projector to full screen mode so that no user intervention is required? (fscommand works on the first launch, but when the screensaver kicks in, all bets are off.)
And/Or
How would I go about creating a timer to activate an internal screensaver and insert it into the actionscript for the XML gallery?
Any help is greatly appreciated.
Thanks,
Rick
Full Screen Flash - Screen Center Problem
Hi, I'm trying to use full screen flash, and place my movieclips with actionscript.
It's screwing up the screen center for some reason though, and I can't seem to figure out why...
Here's the screwed up site:
http://www.combinecreative.com/test/mover.html
Here's the code that's on a movable MC:
onClipEvent (enterFrame) {
_x += (_root.logox - _x)/3;
_y += (_root.logoy - _y)/3;
Here's the code I'm using on the main timeline to move the MC's:
_root.logox = Stage.width / 2;
_root.logoy = Stage.height / 2 - 200;
It seems pretty straight foward, but for some reason it's offsetting my screen center...
Any ideas would be great!
Full Screen Flash Page On All Screen Settings
PLEASE COULD SOMEONE HELP
I am NEW to FLASH and am designing a website (www.sk1online.co.uk)
I have designed a website the size of the website is 800x600.
I have published the website with the following settings:
100%x100%
Scale: Exact Fit
Window: Transparentless
When I view the website on a 800x600 screen setting the website appears perfect and takes up the whole screen.
HOWEVER, when I view the website on other settings say 1024x768 the website shrinks and dosnt take up the whole page.
PLEASE LET ME KNOW HOW I COULD PUBLISH THE WEBSITE SO IT FILLS THE WHOLE PAGE ON ALL SCREEN SETTINGS.
I have used the following to no LUCK.
Stage.align = "TL";
Stage.scaleMode = "noScale";
Full Screen Flash - Incorrect Screen Middle
Hi, I'm trying to use full screen flash, and place my movieclips with actionscript.
It's screwing up the screen center for some reason though, and I can't seem to figure out why...
Here's the screwed up site:
http://www.combinecreative.com/test/mover.html
Here's the code that's on a movable MC:
onClipEvent (enterFrame) {
_x += (_root.logox - _x)/3;
_y += (_root.logoy - _y)/3;
Here's the code I'm using on the main timeline to move the MC's:
_root.logox = Stage.width / 2;
_root.logoy = Stage.height / 2 - 200;
It seems pretty straight foward, but for some reason it's offsetting my screen center...
Any ideas would be great! pretty please...
FULL SCREEN FLASH PAGE ON ALL SCREEN SETTINGS
FULL SCREEN FLASH PAGE ON ALL SCREEN SETTINGS
PLEASE COULD SOMEONE HELP
I am NEW to FLASH and am designing a website (www.sk1online.co.uk)
I have designed a website, the size of the website is 800x600.
I have published the website with the following settings:
100%x100%
Scale: Exact Fit
Window: Transparentless
When I view the website on a 800x600 screen setting the website appears perfect and takes up the whole screen.
HOWEVER, when I view the website on other settings say 1024x768 the website shrinks and dosnt take up the whole page.
PLEASE LET ME KNOW HOW I COULD PUBLISH THE WEBSITE SO IT FILLS THE WHOLE PAGE ON ALL SCREEN SETTINGS.
I have used the following to no LUCK.
Stage.align = "TL";
Stage.scaleMode = "noScale";
Full Screen Flash On All Screen Sizes
The problem I have is that I designed a website 800x600 (page size).
When I publish the website in 800x600 screen resolution the website doesn't fit in the whole page (it stretches).
I then designed the website taking up half of the 800x600 page and published it. It viewed full screen on 800x600 screen resolution only and on other screen resolutions it shrinked.
PLEASE LET ME KNOW HOW I COULD VIEW IT FULL SCREEN ON ALL RESOLUTIONS,
HERE IS MY CODE BELOW..
PLEASE COULD YOU SEE WHAT IS WRONG WITH IT:
<!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>index</title>
</head>
<body bgcolor="#000000">
<!--url's used in the movie-->
<a href="<A href="mailto:FAZ@SK1ONLINE.CO.UK"></a">mailto:FAZ@SK1ONLINE.CO.UK"></a>
<a href="<A href="mailto:dhol99@hotmail.com"></a">mailto:dhol99@hotmail.com"></a>
<!--text used in the movie-->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/...version=7,0,0,0" width="100%" height="100%" id="index" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="index.swf" />
<param name="quality" value="best" />
<param name="scale" value="exactfit" />
<param name="wmode" value="transparent" />
<param name="bgcolor" value="#000000" />
<embed src="index.swf" quality="best" scale="exactfit" wmode="transparent" bgcolor="#000000" width="100%" height="100%" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>
Searching For Tutorial
Its the one where an object gets brighter when you move the mouse pointer toward it. Then returns to normal when the mouse goes away from the object. How would I go about doing that?
Searching For Tutorial
Its the one where an object gets brighter when you move the mouse pointer toward it. Then returns to normal when the mouse goes away from the object. How would I go about doing that?
Searching For A Tooltip Tutorial
Hi guys,
Does anyone happen to know where I could find a good tutorial to create a hovering tooltip effect over a picture?
I mean, when you over the picture (it's a groupphoto where I have to add names when you go over the heads), I need a textbox to appear that follows the cursor, once you go off the head, the box disappears.
I'm sure there's a tutorial somewhere online, but I can't find it. Or is it really simple to build this myself?
Thanks alot guys!
Searching For Music Tutorial...
Hello all,
I absolutely love this site! It has helped so much and now I hope it can help me again.
Does anyone know where I can find a music tutorial that shows how to do the infamous "equalizer display" that so many sites now have ?
There is one at the top of www.2advanced.com.
Now, if someone knows where I can find a tutorial that would explain how to do this, I would be very happy.
Thanks in advance (in case I forget to do it later... )
Searching For FLV Video Controller TUTORIAL
I'm searching for TUTORIAL on how to build from scratch a video controler that controls externaly loaded FLV. The controller should have: PLAY, PAUSE, scrollbar, BUffer bar. All this for Progressive FLV download.
I don't want to use the Flash Media Componnents. maybe only the MediaDisplay.
I have Flash MX 2004 Pro.
Thanx for the tips in advance.
Cheers
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?
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 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!!!
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
Flash Full Screen
Does anyone have a link to a tute on making a flash projector file resize to fullscreen after user input.
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 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 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
Full Screen Flash
what is the best way to do full screen flash? i want it so that when people go to my site they can click on a link and the .swf will open in a full screen window? can anyone recommend a great tut or starting point?
Full Screen Flash
Adobe Flash CS4, ActionScript 3.0
Hello,
I am a relatively new flash user. Recently on a project that I am working on, I have been having a lot of problems getting my flash website to work at full screen.
My website is composed of three basic components:
1) Links
2) Content body
3) Background
And I am trying to have the background picture to scale to web browser size, while the links and content body remain at the same position in proportion to the original aspect ratio (centered).
I am unable to find concrete help on the web to not only have my background resize to the browser size, but to also have my links & content body to remain in the same position in proportion to the original design aspect ratio (if I were to design the website in 800 x 600, I would like the links to remain in the relatively same position if I were to view the site in 1024 x 768 or 1280 x 1024).
Any help on this would be much appreciated, thank you
Full Screen Flash
Hi there
Can anyone help with this?
I am trying to create full window flash that has movable "constrained" elements like in the example below
http://www.mono-1.com/monoface/main.html
Can someone help me with the actionscript?
Cheers
Justin
Flash Full Screen
Hey guys, wondering if anyone can help me. I am trying to create a flash document which is viewable full screen, but changes sizes of certain things and keeps other items the same. For example, I would want the text to remain 1 size, but a background image to get bigger. A good example are the following:
http://www.lookmumimontheinternet.co...eenbackground/
http://flashden.net/files/6421/index.html
Any help would be much appreciated!!
Flash CS4 And Full Screen Of F4V
When I add a F4V to my video player, and publish to HTML, the full screen button puts the F4V file in the corner of the HTML page . It doesnt expand it to cover the entire screen.
This works perfectly on CS3. Any workaround?
Flash Full Screen
Hi, I'm running Safari & adobe flash player 10. I have an extended desktop over 2 monitors. I'm wanting to run flash player in full screen on one monitor & browse on the other but flash player exits full screen when I click on the other monitor. Is there any way to change it so it wont exit full screen because of an off screen click? Thanks in advance.
Full Screen In Flash 8
I know extremely little about Flash and AS but i would to be able to set my flash site into full screen at a touch of a keypress. I have seen tutorials on achieving this in Flash 8 but they were beyond my level of Flash knowledge. Would anyone be able to tell me or point me in the direction of a really good tutorial for my level that would tell me how to do this?
Thanks!
Full Screen Flash
How did they do this on this site?
http://www.churchs.com/
There are elemtns in the flash site where in each corner and at the very bottom some movieclips will move with the broweser and stay in each corner.
it be great if anyone can help me out with the problem?
Thanks!
Full Screen Flash
I am working on a flash website and Need to have the background Fade to be 100% Window size, whatever the size is, and to have the content centered and not sized - Please help
Thank you
Flash Full Screen
Hi peeps
Right i would search the forums for this, but it keeps on sendingback mySQL error bummer!!
Anywhos i wanted to ask ... i have seen a few sites that have a swf stretched 100% to your browser and then your content loads into the _root. But how do you stop your movie being loaded into your root from being stretched?
Thanks in advance
Full Screen Flash
Description: I am trying to build CD-Portfolio with a full screen function for interview. So that when the interviewer click on the icon, program will launch automatically in full screen.
Question: Does anyone know how to make a flash program in full screen?
|