Launch Full Screen Window With Auto Hide Tool Bar At Top
I've got all the correct action/java script set up so as to launch pop up windows in full screen, but I either need to implement a close window option within the pop up or allow the toolbar to appear on auto-hide at the top. Otherwise you can't close the pop up.
Any answers ? Much appreciated
Ted
FlashKit > Flash Help > Flash ActionScript
Posted on: 02-13-2003, 07:46 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
URGENT Launch Full Screen Window From Projector File
hi ...
i would like to launch a fullscreen window from a projector file ... is there a script for that ... the point is to launch it in full screen mode without the toolbars etc ...
is there a way to do this .. if yes THANX VERY MUCH
Full-screen Swf Wont Auto-resize Until Browser Window Is Resized
Hello All,
I posted me test here at http://www.urbanlinx.com/Test.swf.
I have 4 MCs in the movie. A header, content box (center), footer, and background image.
When the browser is scaled the background scales in proportion to the widow and keeps its aspect ratio.
My problem: when the clip is first loaded, the background does not resize until the browser is manualy resized by the user.
Is there some code I can add that will check the window size before the movie loads?
My code is attached.
stop();
Stage.scaleMode = "noscale";
Stage.align = "tl";
Stage.addListener({onResize:reposition});
function reposition() {
var header = _root.myHeader_mc;
var bg = _root.image_mc;
var content = _root.myContent_mc;
var footer = _root.myFooter_mc;
var nPos;
nPos = getNewPosition(header);
header._x = nPos.x;
header._y = 0;
nPos = getNewPosition(content);
content._x = nPos.x;
content._y = nPos.y;
nPos = getNewPosition(bg);
bg._x = nPos.x;
bg._y = nPos.y;
nPos = getNewPosition(footer);
footer._x = nPos.x;
footer._y = Stage.height - footer._height;
};
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();
Stage.scaleMode = "noScale";
//Auto Resize
stageListener = new Object();
stageListener.onResize = function() {
backgroundResize(_root.image_mc);
};
Stage.addListener(stageListener);
//Background Resize
function backgroundResize(image) {
var imageHeight = 400;
var imageWidth = 700;
var wRatio = Stage.width/imageWidth;
var hRatio = Stage.height/imageHeight;
//Larger Ratio
if (wRatio>hRatio) {
var ratio = wRatio;
} else {
var ratio = hRatio;
}
//Resize
if (Stage.width<=imageWidth && Stage.height<=imageHeight) {
image._width = imageWidth;
image._height = imageHeight;
} else {
image._width = imageWidth*ratio;
image._height = imageHeight*ratio;
}
}
backgroundResize(_root.image_mc);
Special thanks in advanced.
PS: if you know a way to accomplish this with cleaner code, the help would be greatly appreciated... if it is already good code... thanks to all the people in the community who taught me :)
Edited: 11/27/2007 at 11:29:30 PM by illtrax
How Do I Launch A Full Screen?
Can someone tell me how to launch a full screen?
I've been playing around with some code and getting nowhere.
The code I have doesn't work with Firefox or Mozilla.
It works with IE though.
I thought it would be straight forward?
Doesn't seem to be for me.
Also, I made my Flash movie be 100% width and 100% height - but Firefox refuses to make it these dimensions. What's the work around?
(Instead in Firefox the Flash movie appears as a very very very small movie!)
Any help would be appreciated.
Thanks.
OM
Launch Full Screen On Poscket PC
is there a way to launch a flash file on the handheld to be full screen instead of having a scroll bar and menus showing on the screen.
How Do I Launch Flash Exe In Full Screen
We have created a standalone exe (flash with windows/mac "projector") file, and have it set to autolaunch when a cd is inserted, but would like for it to launch in full screen mode. Does anyone know of a way to do this?
Thanks,
Launch Full-screen From Flash?
Hey Guys/Girls,
i made a portfolio but i've one problem:
There's a small intro-SWF that displays 3 flash buttons to choose your language. these buttons should launch another SWF (in HTML page of course). No problem, i just have to use the getURL command, isn't it?
The problem is the second SWF should be fullscreen. How can i do this? And how can i close it again? Can i than re-direct my first page to have some kind of "thank you, come again" page? Do i have to use javascript -it scares me a bit
I 'ld appreciate your help (in plain english please, i'm not a programmer!!)
One glass of belgian beer for the one who can make this work
THANKS!!
Script To Launch Player In Full Screen?
If I am publishing to a windows projector(.exe) file, and want it to open already in full screen mode, is there someplace I can change the player's settings or some action script I can add to my first frame to accomplish this? I know that once it is open I can just hit "Ctrl F" and it will change it to full screen but I would rather have it start there automatically.
I am using MX 2004 pro.
TYIA
Option To Launch Either Full Screen Or Movie Size
Hi there
I would like to have an option on my html page offering the user the choice of launching my flash movie (800 by 600) either full screen (i.e maximised with just the title bar) or at the movie size (i.e 800 by 600 with just the title bar)
Ideally I would like to have 2 checkboxes on the html page or something similar.
Anyone know how to do this or can point me in the direction of a tutorial or example of how to do this?
Thanks in advance
Chucky
Full Screen Projector With Tool Bar
This may be a simple question but i can't fiqure it out. Is there a way to mazimize a projector to full screen while keeping the menu bar and task bar (pc only). For usability, I can't remove basic functionality from the user by taking over the entire screen (they will need to toggle between apps). thanks for your help.
-Tim
Auto Full Screen
Hey. I have this intro on this page: http://www.f22fighter.com/ . I have recieved requests to have a full screen version. Currently, it only opens in a new window, and has to be manually set to fullscreen by the user once the "fullscreen" button is clicked. What is some actionscript that I could insert only in the movie (on the button) to open the intro itself (just the swf) in a new fullscreen window with no extra toolbars etc..? I just want to click on the thing and have it in a window wihtout any code inserted any where else but the movie itself. Thank you VERY MUCH for any help in advance
Dewman
Auto Full Screen?
I want my flash file to play in full screen mode automatically, I know it can be done in AS2 but what about AS3?
Thanks
D.
Auto Load & Full Screen
Guys
I want to put a movie on CD and would like to know how can
I make it full screen and make it autoload from the CD.
I have seen one cd with done and the flash file on it was
some type of a flash.exe ?
I am no expert in this field so go gentle !!
Thanks
Full Screen And Auto Start
Hi can anyone help me. I want a projector file to start up automatically and start up in full screen mode. Any clues?????
Auto Full Screen Projector
hi,
Is there a way to launch the projector and have it automatically enter full screen mode instead of having maximize the window first, then click on View>Full Screen. I've tried fscomands like setting fullscreen and allowscale to true, but nothing seems to do that.
Al
Full Screen, No Scale, Hide Items Outside Movie Area
I have created a full screen movie but want to keep the scale so the movie sits in the centre of the screen (done, no probs) but how do I stop any symbols/objects from appearing outside of the movie parameters. I want the items which go off screen NOT to appear on the full screen.
Can anyone help?!
p.s. I dont want to use a mask as the movie I want to apply this to has several layers, some of which are already masked.
Flash Projector Full Screen Auto Run And Icon
I.m just wondering if anyone would b so kind as to tell how I might be able to make a flash fullscreen projector splash page and an icon to boot. I have seen a tutorial on this site which covers a few of these issues .. howeever it involves the use of a pc app which I can't use as I am on a mac. I shall be using an auto run inf file which will look sumthin like this
[autorun]
open = flash.exe
icon = logo.ico
for pc format. I would preferably like to make it work on both platforms ..if anyone would know how to do this also that would would b much appreciated
Thanx in advance.
Script For Auto Full Screen And Windows Explorer..
hey there.. anyone can teach me how to set the action script for auto full screen for .swf when i double clicked on it?
and is there a way to set a script on a button to explore the windows? like example.. opening the "my computer" / "my network place" / "my documents" / "program files" / "cdefg drives" or open any .exe program with .swf?
thanks.. any help will greatly appreaciated!
Open Full Screen Window, Same Window?
I have a 700x300 flash banner. What I want to do is once it's clicked, open the page that it is linked to in the same window but full screen? I can do it with java script, how do I add it in MX?
Mike
Full Screen Pop Up Window
Hi there...
i am designing a flash intro page, but i want it to be viewed full screen ie: no internet explorer header or footer...
can some one please help..?
Thanks in advance
Full Screen Window
Aiight now i got my site opening up full screen as HTML instead of SWF......now how do i get rid of the damn scroll bar LOL
Full Screen Window
I was wondering something...if i wanted my webpage with my flash files inserted in them to go completely full screen, how would i go about doing that? i have seen this on a few sites in the past, and it goes completely full screen, hiding the taskbar, entire IE window and all, showing nothing but the site. does anyone know how to do this?
FrankieB
btw im using flash mx
Full Screen Window
Someone told me he's seen websites that will launch a website full-screen without a browser window but can't give me an example. I haven't seen this functionality myself and am wondering, first of all, if this is possible and, if so, where I might find an example.
Thanks for the help.
[F8] Full Screen Pop Up Window..please..
Hi,
I am trying to have full screen pop up window like this site.
www.theory7.com
I have tried so many different actionscript that is provided in flashkit and everywhere else too. It doesn't work. I must be doing something very wrong.
I also tried the actionscript on this link as well...it doesn't work for me..
http://www.actionscript.org/resource...ows/Page1.html
what am i doing wrong?
Can anyone help on this? Ive been trying to figure this out for days..making me crazy..
thanks to everybody already....
Full Screen New Window
hi I want to do full screen web page like this : http://www.hrubes.com/ can tell me how ? (when you enter, open a new window without a srollbar and adresses bar, that i mean).
Full Screen Pop-up Window.. How?
how would i do a full screen pop-up window through flash 8 for an entrance screen such as http://www.nathan-baume.com/. any ideas?
From Full Screen To New Window.
I've been discovering lately that, when in a full screen window, you can't open a new window for some reason - or at least not through the basic getURL means.
Does anyone know a way around this? I have to admit I'd be surprised seeing as not many people work with full screen windows, but it'd still be good to know.
Close Full Screen Window
Last night i posted a message about how to open a swf file full screen... i figured it out...now how do i make button in the swf to close it?
Close Full Screen Window
I dont know java script or any sort of programming so could someon explain to me again how to set up a button in my swf file to close that window from full screen.
Full Screen Window Not Closing.
My question starts with the action script placed on a button to toggle out of a full screen window.
Scene 1
Layer 6
frame 1
Symbol 14
actions for Symbol 14
on (release) {
getURL ("javascript:Window");
}
................................
This is the code placed in the html page that opens to fullscreen:
<<script language="JavaScript">
function launchwin()
{
newwin = window.open("index.html","window","fullscreen=1, scrollbars=1")
newwin.resizeBy(15,0)
}
</script>
)
..................................
This is he code on the html page that calls the openning
<BODY bgcolor="#FFFFFF" topmargin="0" leftmargin="0" onLoad="launchwin()">
................................
When I use this (javascript:Window) action to close the window what happens is a new blank page opens with (javascript:Window)in the address line and behind the full screen window. the full screen does not close. Any ideas what is going on? (winXp browser)
Full Screen Window Open
Hey...Ok I am trying to get a graphic whenyou click on it (it is an ENTER graphic) for the window to open in full screen mode...i want to get the page http://smysite.com/intro.swf to open...how can i do this??
i tried this already if you want to see susangriffith.com it used to work!!! up till about 4 hours ago...now for some reason it wont work please help
Closing A Full Screen Window
Hello
I wanted to know how to close the window of a full screen flash movie? Plus, how do I not have scrollbars in the flash movie? Please help...thanks and God bless.
Greg
Closing A Full-screen Window....
I've set up a movie that launches in a full-screen window, and I can't seem to script the "close window" button. Any ideas?
THanks!
Setting Window To Full Screen
usually in a normal swf file u can press ctrl+f and the screen covers ur whole monitor. but i have to manually do it. and in the html document, there will still be the internet exp bars and scroller and such which i do not want. is there a script and a .fla example i can see to do this?
.swf In Full Screen Window Within LMS Player
Does anyone know the code to make a .swf appear in full screen mode within an LMS player (SCORM wrapped) without having the windows bar, task bar, URL, etc.???
This would be similar to pressing the F11 key when viewing it within your browser. You can think of this as if you were watching a DVD movie on your computer in full screen mode.
The tricky thing here is that we need to get this to work within our SumTotal Systems LMS player. The standard FSCommand doesn't do the trick.
Cheers!
Jason
Preloader And Full Screen Pop Up Window
Hi,
I am building a website and I would like for visitors to be able to open an initial page that has a preloader and and "enter" button which appears once all of the data for the website has been loaded. Also, when the enter button is pressed, I would like th esite to open in a new window that is full screen in the web browser without any of the navigation buttons, status bar, scroll bars (both horizontal and vertical), address bar, etc. I only want the title bar at the top with the browser maximize, minimize, and close buttons.
A good example (minus the preloader) is this website:
www.exploreibsen.com
My first question is how do I get that full screen window to pop up like that? I have searched everywhere and the only info that seems to wander in roughly the right direction is far to advanced for me.
My second question is how do I accomplish this with a preloader if the new window, featuring the actual website, is a separate swf, or do I need to keep the preloader in the swf containing the website and place actionscript to start the swf in the new window at a frame after the preloader when it opens in the new window? Either way, I'm struggling to accomplish this.
I began building this website when I first discoverd Flash and I have managed to work my way through complex problems such as loading XML weather feeds to show current weather, as well as a date and time feature that can dispaly both the local time, as well as the time at a different location. But for some reason, I just can't solve this full screen issue.
If someone could provide me with the code to get the window to open up correctly that would be great.
If the preloader is to remain in the main swf file, a brief description is probably enough for me to work through that problem.
Thanks.
[F8] Full Screen... BUT W/o Browser Window?
hey,
anyone have a clue how they did this...
http://www.home-k1.com/swf/home.html
click on "full screen" and the flash file fills the ENTIRE MONITOR (no browser window). Then you have to press "ESC" to go back.
Close Pop Up Full Screen Window
I have a full screen movie and at the end of the 2nd scene I need to close the movie. I need to close the internet window as well because the form is up behind the movie in a seprate window. any ideas. THANKS!!!
URGENT - I Need A Full Screen Pop Up Window
Hi everybody,
All the pop up windows that I found in kirupa, are centered and small! What do I have to change in the html, to be in a full screen mode like the portolio of rob lindstrom www.designchapel.com.
Thanks a lot for everthing Kirupa,
Ricardo
Full Screen Pop-up HTML Window
I really hate for my 4th post to be another help me out post but... I wish to make it so that when you click the enter button on my site it launches full screen. Like this site www.liquidgeneration.com
I used the tutorial on this site and searched to forums. But the tutorial doesnt work in firefox. And I cant find what I need in the forums. I am really bad with HTML. Also how could I make it detect the window size so that it launches full screen on every computer.
URGENT - I Need A Full Screen Pop Up Window
Hi everybody,
All the pop up windows that I found in kirupa, are centered and small! What do I have to change in the html, to be in a full screen mode like the portolio of rob lindstrom www.designchapel.com.
Thanks a lot for everthing Kirupa,
Ricardo
Full Screen Window From Flash
hy guys!
I need to ask you for help!
I intended to open a new window, from a flash site, witch contains a flash application and i need to open it in full screen mode. the flash application is embended in a html file. I tried a lot of JS codes to put them between head tags, but the call (getURL("javascript:<function_name>('file.htm')") from flash don't work.
I it sould be simple, but probably i am not embending the JS in flash as well as I sould.
Help Guys!
Thanks in advace!
|