ActionScript 3.0 :: Link To Url, "_self" Is Opening A New Page?
May 13, 2010
I am trying to get my button to navigate to _self and the link is opening a new page. Is there something wrong in my code?
my_btn.addEventListener(MouseEvent.MOUSE_DOWN,[code].....
View 5 Replies
Similar Posts:
Sep 4, 2009
How would I make this open in the same window instead of a blank popup window?
//Navigate to some URL
var urlRequest:URLRequest = new URLRequest("http://www.blah.com/links.php");
navigateToURL(urlRequest);
}
View 3 Replies
Feb 18, 2009
Strange Behavior in a flash I'm working on. And I must be doing something wrong because I can reproduce it in every flash I create. You can check out the behavior here at a test page on my under construction site:I have a menu bar at the top of the page, with the following code:
btnHome.addEventListener(MouseEvent.CLICK,btn1Clic kHandler);
function btn1ClickHandler(event:MouseEvent):void{
navigateToURL(new URLRequest("http://www.i2ctech.com/"),"_Self");
[code].....
View 2 Replies
Feb 18, 2009
Strange Behavior in a flash I'm working on. And I must be doing something wrong because I can reproduce it in every flash I create. You can check out the behavior here at a test page on my under construction site: [URL]I have a menu bar at the top of the page, with the following
code:
btnHome.addEventListener(MouseEvent.CLICK,btn1ClickHandler);
function btn1ClickHandler(event:MouseEvent):void{
navigateToURL(new URLRequest("
http://www.i2ctech.com/"),"_Self");
[Code].....
If I open up a web browser and then click the menu buttons, the buttons open the link up in a new page. Once the NEW page opens, the menu buttons start acting as I would expect, then opening any further links in the same web page. Is this some internet explorer security setting? Every computer that I have utilized (total of 5) to view the web page exhibits this same behavior.
View 13 Replies
May 5, 2009
I'm working on a SWF that is a banner on a home page and the is opening links a new window despite my attaching the "_self" argument to the navigateToURL command.Like here is a snippet of code TO ME it looks right:
PHP Code:
var link_001:URLRequest = new URLRequest("http://www.lcc.edu/schedule/");button_001_btn.addEventListener(MouseEvent.CLICK,
[code]....
View 3 Replies
Aug 18, 2010
I'm working on a Flash navigation using AS3. It can be seen as is @ PhilipK .ca /portfolio .
I want to make it so when you click the button on the far right, for the second time it opens a link in the tab that the flash video is embeded.
Here is the code I am having trouble with...
{
navigateToURL(new URLRequest ("philipk.ca/photo_gallery/photography"), '_self') ;
}
http removed before address because I am not able to post URLs untill 50 posts
I am wondering if I have to change part of the code within the HTML? Or am I doing something wrong with the AS3 code?
View 1 Replies
Jan 22, 2011
code not opening website in the same window using "_self" I'm using a button called B_btn and a navigateToURL command on MOUSE_UP.
Code:
B_btn.addEventListener(MouseEvent.MOUSE_UP, getPage);
function getPage(Event:MouseEvent):void
{
navigateToURL( new URLRequest("http://www.google.com"),"_self");
}
I'm just checking the swf in Flash CS5 using ActionScript 3, publishing with command+F12 (key command on Mac OSX), but that alone should work right without exporting? And to go a little off topic, could someone kindly tell me how to embed the swf as HTML code, as I'm trying to setup this swf as an intro to my website and need to embed it as HTML for my index.html page.
View 1 Replies
Jul 13, 2009
however, I have successfully changed the following script from AS1 to AS3. All is working with the exception of the "target". When I use "_self", nothing happens. However, when I remove _self and click on the button (image), it opens a new window.
All of the tut's I have followed have suggested the same thing, but it is not working for me.
Here is the URL in question: [URL]
And, the AS (below) I'm using. The first block of code is another attempt at correcting this, however, you'll see that it is commented out.
[Code]....
View 3 Replies
Jul 13, 2009
not very fluent with AS3, however, I have successfully changed the following script from AS1 to AS3. All is working with the exception of the "target". When I use "_self", nothing happens. However, when I remove _self and click on the button (image), it opens a new window.All of the tut's I have followed have suggested the same thing, but it is not working for me.And, the AS (below) I'm using. The first block of code is another attempt at correcting this, however, you'll see that it is commented out.
stop();
//actions to redirect user to new page in same window
/*var link:URLRequest = new URLRequest("http://thejournal.com/microsites/govconnection/21st-
[code].....
View 1 Replies
Feb 11, 2010
I have a flash button embedded into a css/HTML page that I want to use to navigate into a new page without opening a new window. Here's the code I'm using in the SWF which I got from the adobe tv tutorial:Here is the test page that I have embedded the flash button in:The flash button is the "about Ian" button on the upper left. I want the navigation to be like the traditional rollovers on the page. (I'm working my way up to having the embedded flash button fade into place, that's why I'm using flash.)
// 1. Event handler function
function clickHandler (Event:MouseEvent): void { trace("CLICK!"); navigateToURL(new URLRequest("http://ianmartinphotography.com/about.html")); } // 2.
[code].....
View 3 Replies
Mar 9, 2011
how to one page to another page without opening new window only url changed using flex?for example you can click log in button user name and password correct then going to home page without opening new window at the same window..
View 1 Replies
May 21, 2010
I have a flash menu which i'm trying to get to open in a target "_ibody".The default code for a button is:[code]
View 2 Replies
Sep 16, 2009
I have l a flash file in my pages that links to other pages within my web site but when clicked they automatically open in another window. How can I link them without opening a new window as would happen with a normal web page link?
Here is my current Action Script code: index.addEventListener(MouseEvent.CLICK,indexbuttondown);
function indexbuttondown(event:MouseEvent):void {
var bbcURL:URLRequest = new URLRequest("index.html");
navigateToURL(bbcURL);
}
View 2 Replies
Dec 5, 2009
I'm primarily an HTML/CSS girl. I'm pretty new to Flash, and until recently have only worked from the timeline without using any action script other than stop(); and simple goto commands like gotoAndPlay(49);
This week, I needed a nav button to take the user into the site from the Flash intro; it's live at [URL]
Flash CS4, Action Script 3. Since I don't write Action Script - yet - and needed the link in a hurry, I Googled for the code. As you can see, it works fine, but the site opens in a new window, and I don't want it to do that, I want it in the same window.
The code is as follows:
clickToEnter.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
navigateToURL(new URLRequest("http://www.deppimpersonator.com/cms"));
}
I thought it might be the use of "new" in front of URLRequest, but of course when I took that out the link didn't work at all.
Blind experimentation produced two attempts that simply broke the link (don't laugh ):
[Code]...
What do I need to add (or remove) from this code? And is this the most efficient way to code an internal link?
In case this is browser-specific: I've only tested this in the latest versions of Firefox and Safari for Mac, OS X 10.6.2 (Snowleopard). It's the same in both browsers.
View 3 Replies
Sep 15, 2010
i recently developed my website and i decided to create buttons to link my site. The problem i'm having is that when i click on a button it's opening up a new tab in my browser.
on (press) {getURL("services.html", "_main");
}
View 2 Replies
Jan 11, 2010
i have created a flash animation for my homepage, i want to make part of that flash animation a "enter" button so when clicked would go to my page 2 on my website.
i have never done any script before and only used dreamweaver on a mac. is there an easy way to create this button to link to my next page and to stop my file to stop looping?
View 1 Replies
Jun 10, 2009
I've created a flash naviagation menu and currenlly my links will open a pop up window. I don't want this. I want it to open the link in the same window. Here is the code for one of the links:
var home:URLRequest = new URLRequest("index.html");
function homeDown(event:MouseEvent):void { navigateToURL(home,"_self");}
button_home.addEventListener(MouseEvent.CLICK,homeDown);
View 1 Replies
May 19, 2010
I need to open up a page within "youtube" from a clip used in a Flash movie. I have no problem with how to go about this it is just that with IE it won't let me open the link automatically - I get the "Pop up" warning spiel before the site can be opened. Is there any way I can do this seamlessly, from the movie, without requiring users to authorise security checks?
View 2 Replies
Jun 4, 2009
We have Flash movie in one domain and accessed from other Domain. The links in Flash movie was not working and with security restricitions we cannot use 'allowscriptaccess'.
So, we used System.security.loadPolicyFile [URL]; and included the XML in our assets. This worked for the links to open in New Window. But, when the links were changed to open in the same window, the links are working in Flash Player versions till 9.2XIn the versions, 9.4X+, it is not working.
View 1 Replies
May 20, 2010
I've trawled the forums but still trying to get new browser window to open from my site so far have used Properties to add URL which works fine - but doesn't open a new browser window - not sure if this (text) needs to become a button with actions
View 3 Replies
Aug 1, 2011
I have a flash intro for my website and I want after the flash is finished to automatically open an external link, how can I make this? This is the index.html:
script>
swfobject.embedSWF('main.swf', 'intro', '100%', '100%', '9','js/expressinstall.swf', {XMLSource:'intro.xml', domain: '*'},
[Code].....
View 1 Replies
Sep 1, 2009
I created a button and linked it using this code:
[Code]...
But it keeps opening the link in a new window, how do I stop it from doing that so it opens in the same window the swf will be in? Where do I add target=_self?
View 1 Replies
Sep 27, 2010
i have the following code for a flash xml slideshow and would like the links to open in the same browser window.....i am fairly new at this so i am unsure about how to add the code to make it work....
import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
[code]....
View 2 Replies
Sep 28, 2011
I use a dynamic text with html = true to get some data from XML file, including links. They work fine, open in a new tab with "target = '_blank'" but the browser still has my page with a flash app as active tab. How do I tell it to switch to that newly opened tab?
View 3 Replies
Aug 29, 2004
what is the as for opening a sized window off a link. for example, clicking an image thumbnail, and it opens larger in a window that fits the picture. with no adress bar, or stuff like that.
View 5 Replies
Feb 16, 2010
I would like to create my page links so when I roll over the text(link) enlarges and then once pressed a swf animation plays.When it stops it automatically directs to the desired page.
View 5 Replies
Jan 24, 2009
Sorry for bothering you with questions like these, but I've never worked with Flash before, so I've got no knowledge in as3. So I'm trying to make a full flash website, and I've read some good tutorials on the net, but some of the script codes the tutorials provide doesn't work. I'm trying to link a button to a page like google, or a page on the flashsite. I just purchased Flash cs4, so that might be the reason why the tutorial codes doesn't work..
View 5 Replies
Aug 5, 2009
I'm trying to figure out why my Flash button opens the link in a new browser tab, when it should just replace the page with the new one.
I'm using Flash CS4 with AS3 code, the button in Flash receives variables from an XML file and then knows what URL to pass when the user clicks the button. "Request" is the variable being passed for the URL. The website uses PHP and everything works except opening a new tab.
The main line of code for this is:
navigateToURL(request, '_blank'); [I know this WILL open new tab]
I modified it to try both of these:
navigateToURL(request, '_self');
navigateToURL(request);
View 1 Replies
Nov 3, 2009
I have a website where my Home, About, Work and Contact pages are on four different frames on the time line. Once you click on the Work link from the opening Home page, your brought to the second frame where a little tween brings a bunch of thumbnails into view. When you click on the thumbnails, it brings you out of the .swf and into a new HTML page. The problem is getting back to the Work page in the .swf with out being brought to the opening Home page. I have used an anchor on the time line and changing my publish settings to HTML with anchors, and they do work! But, its opening my .swf in the Work frame and running through the movie back to the Home. Iv tried putting a stop(); on the Work frame, which does stop it but its a dead page, my tweens, buttons, everything is frozen.
View 1 Replies
Dec 29, 2011
Right now I have everything set up and linked correctly except when you click the button it opens up a new tab rather than just going straight to the suggested URLHere is the code I have now...
button_1.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage);
function fl_ClickToGoToWebPage(event:MouseEvent):void
{
[code].....
View 6 Replies