ActionScript 2.0 :: Flash8 : Closing The Firefox Window?
May 25, 2010
Currently I have the code for a button within the swf on our webpage:
Actionscript Code:
on(release){ getURL('javascript:window.close()'); getURL("MyUrl.com","_blank");}
close the web browser (including the swf document) and to open another webpage in a new browser. I have looked around and nothing seems to work with Firefox (because of java security). While I know a user could disable this java security, it is obviously not practical to ask every one who visits the site to so and was curious if there is a way to do this same operation with Firefox?
View 2 Replies
Similar Posts:
Jun 4, 2010
An old discussion - but still relevant: Does anyone know a script for a button making it able to close a Firefox browser window (on a mac)?
I have tried 1) variants of "javascript:window.close()" and 2) to make the button open a new window in itself, which immediately afterwards closes itself...
View 1 Replies
Oct 22, 2010
I made a custom class which shows a popup window in flash. What I want to do is to close it by clicking anywhere but not the window itself (and everything that is a button on the stage). I added this line of code
[Code]...
View 3 Replies
Aug 27, 2004
Before anyone freaks out, yes I have searched and read up on this for hours now and I can't seem to be get it right... Simple..close a pop up window from flash. The code that opens the pop up has this code: (from kirupa)
[Code]...
View 2 Replies
Jun 30, 2009
I'm trying to add an event listener to a window that pops up (to the whole window) that will close that window when clicked on. Basically it's your typical about window that would be found in any program by hitting help, then about this program. I am using no chrome on it so I'd like to just be able to click it and have it close.
On a less important note I'd like to center the window on the stage when it pops up. Right now I'm just using the x and w properties to get it close to center on my monitor but obviously that won't work for everyone. Below is the code I've tried. No luck whatsoever. Window pops up but stays up if I click it. Any help as always would be AMAZING!
[Code]...
View 10 Replies
Feb 9, 2009
i am using the following code to close the my browser.
getURL("javascript:window.opener=self;window.close()");
The above code is not working in Flash player 10.
View 1 Replies
Jun 15, 2009
I am currently trying to work out how to get Flash to close the browser window it is running in. I've done a simple Javascript test version which works fine.. But if I try and use:
ExternalInterface.call("closeMyWindow");
Functionality it does not. My simple Javascript version is cut and paste below and attached to this message.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]"><html>
<head><title>Untitled</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<meta name="description" content="" />
[Code] ....
Attachments: jsclose.html (630 bytes)
View 8 Replies
Jun 17, 2009
I think my original post on this was lost following from the hacking of the site, so I'll try again.
Hopefully someone out there will have an idea where I am going wrong with this: I am currently trying to close browser window that a flash movie is running. Due to the fact that the browser window is not a popup "child", using the normal "self.close()" or "window.close()" brings up the IE7+ prompt of "This page is trying to close this the window" when it is executed.
[Code]...
View 0 Replies
Feb 7, 2003
how do you use javascript to close a popup window, from inside an html window in the swf file itself... ?
View 3 Replies
Oct 30, 2006
I am having a problem with my sound. I have this toggle button I'm using to turn sound on and off. This is only working for me in the "home" or the first scene but not any of the others. I have the code for this in the "home" scene on the actions layer. Do I need to put the code on all scenes to make it work? If not, then what am I doing wrong?Also, in my "web" and "print" scenes, I have the smaller thumbnail images open up a pop up of a larger version of that image. I have a close button on each pop up, but it is not working. This is the code on the button:
close_btn.onRelease = function() {
_root.attachedMovie.unloadMovie();
};[code].....
View 1 Replies
Aug 27, 2004
Simple..close a pop up window from flash.[code]and the button to close the pop up is this:[code]However, this closes the parent window and leaves the pop up open.Have tried this in various ways but nothing seems to work??
View 2 Replies
Aug 18, 2009
I'm a web designer but I just don't use a lot of Flash. I'm sure this will change as time goes on. For now, I'm still using an old version of Flash MX on my Mac - Flash MX version 6. But I don't think that has anything to do with the problem. I designed a flash animation for my wife's website back in 2004 and it has always worked perfectly up until installing the most recent Flash Player 10.0.32.18 just a few days ago. Here's the problem:On my wife's website, we have a special link called "view presentation". You click on that link and a smaller, separate window pops up. Inside of this pop up window is the flash animation (the actual swf file). In the HTML code for the pop up window, I have coded the following javascript:
function closeWin() {
if (document.images) {
self.close();
[code].....
View 2 Replies
May 6, 2010
Using AS3, and without modifying the published HTML file, I want close the browser window (IE/Firefox) in which my SWF is playing on click of a button. This is not a pop-up window that the SWF is running in. It is the main browser window.
Here's my code:
btn_closeBrowser.addEventListener (MouseEvent.CLICK, close_Browser);
function close_Browser(event:MouseEvent):void{
var jscommand:String = "window.close();";
var req:URLRequest = new URLRequest("javascript:" + jscommand + " void(0);");
navigateToURL(req, "_self");}
Nothing happens when I click on btn_closeBrowser in IE or Firefox.
View 4 Replies
Jun 1, 2011
i've used this code but it turns out that it closes the whole application:
import flash.system.fscommand;btn_exit.addEventListener(MouseEvent.CLICK, goExit);function goExit(evt:MouseEvent) {fscommand("quit");}
View 22 Replies
May 6, 2004
How to shutdown/close a html page in flash? I want my form-page to be closed after pressing the submit button.
View 2 Replies
Oct 23, 2004
how does one close a browser window using the FSCommand. The normal 'quit' option works only closes a projector file. But i need to close a browser window.
I hear there is some technical javascript wizadry which allows one to do this.
View 3 Replies
Jun 22, 2006
I want to create a button that closes down a fullscreen window. At the moment I have a button with the following AS.
on (release){
getURL("javascript:window.close();")
}
When I press the button It does nothing in IE and in MZ it says:
Macromedia has stopped a potentially safe operation
View 1 Replies
Sep 9, 2011
I need to have button that closes the window. The window is a .php page, but it has the following javascript function:
Code:
function closeWindow(){
self.close();
[Code].....
Is there something about closing a window that does not work in AS? Or maybe is there a problem because it is a PHP file?
View 1 Replies
May 6, 2004
Anyone knows how to shutdown/close a html page in flash?I want my form-page to be closed after pressing the submit button,
View 2 Replies
Oct 23, 2004
how does one close a browser window using the FSCommand. The normal 'quit' option works only closes a projector file. But i need to close a browser window.
View 3 Replies
May 8, 2009
I have to put a flash lesson I created on a cd for a client and while testing it I noticed that my exit button in the movie no longer seems to function.This is my close window function
function closeWindow(evt:Event) var url:String = "javascript:window.opener=self; window.close()"; var request:URLRequest = new URLRequest(url); try
[code].....
View 1 Replies
May 11, 2005
I dont know exactly what to use for closing, maximizing, and minimizing my app/window. Should I make the whole thing one big movie clip or what?
View 2 Replies
Feb 19, 2007
Working on a flash poker game and I wonder if there is any way you can create a popup launcher that detects if the user tries to close the browser window. Right now the user can close the window and therefor lose the current round, isnt very user friendly
View 3 Replies
Apr 10, 2007
I am making a flash application and I am trying to find function to use when I press the close button of the projector window. I dont want to make a button that uses fscommand("quit") since this would be impractical knowing that a default close button on the window is already available. Anyway the purpose of the function is that when I close my application, a dialog box/message would appear as a reminder that some data has not yet been saved and give the user an option to save or quit the application.
View 2 Replies
Jul 14, 2010
I have a file upload script to upload pictures to a server. It has been working fine in all browsers but when I upgraded the flash player to 10.1 in firefox 3.6.6 yesterday it stop working.I retested with another computer and as soon as i installed the flash player 10.1 it stopped working.I did some debbuging and noticed that the error return from the FileReference listener is I/O error.It doesnt make sense because the file is in the server and it works fine in all other browsers.I changed allowScriptAccess from "samedoamin" to "always" without luck. it works perfect in other flash player versions.the HTML that embeds the movie:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="550" height="300" id="test" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
[code]....
View 5 Replies
Dec 23, 2009
By default Firefox opens urls set to 'new window' in a new firefox tab instead. Is there any way to force Firefox to open a new window?This doesn't work in Firefox: it opens a new tab window instead of a real new window. How can I make Firefox open a new window? Without the popup blocker blocking it?
View 1 Replies
Sep 1, 2005
I've written getURL("javascript:window.close()"); to close the windowwhich runs only in IE. What should be written for Firefox?
View 1 Replies
Jul 30, 2008
I have a Flash movie that loads an html file with a link that should open a new window when clicked. The problem is that Firefox blocks the new window from opening, and I don't know how to solve it. Unfortunately, I have no access to the HTML page where the Flash will be included, so I couldn't use Javascript in that HTML page.This is the code in the HTML file that is loaded into the Flash movie:
<p>This is the company that makes Photoshop:<a href="http:[url].... target="_blank">Adobe</a></p>
View 3 Replies
Apr 18, 2011
With selenium I'm currently automating tests for a website having flash elements for user inputs. While everything works fine when executing these tests on my computer locally, it fails to load the embeded flash if I start selenium on a remote Windows XP machine.
However, the flash just loads fine if I start the tests while I'm logged in via remote desktop.
This leads me to the assumption that whithout any desktop environment loaded or user logged in the firefox window is treated just as though it was minimized or the current tab was inactive, which I know prevents flash from loading until that window/tab is activated.if there is a way to enable firefox to load flash even if it's not currently displayed in an active window?
View 1 Replies
Nov 9, 2009
I have looked around for this and haven't found a way that clearly explains how to do this. More often than not the button will close the browser window in one but not another browser.
Is the a simple way of closing a browser window in all types of browser ( Or mainly Firefox, IE and safari on both Mac and PC ) with actionscript?
View 0 Replies