Professional :: Opening Links In Same Window

Jan 4, 2011

using the following action script on buttons to open links:URL...Trouble is they all just open new windows and not the link in the current window!

View 3 Replies


Similar Posts:


Actionscript 3 :: Stop Links Opening In New Window?

Feb 14, 2011

The links I have in my .swf keep opening in new windows/tabs rather than the same one, how can I make it open in the same tab? Here's my actionscript 3 script:

aquaheal.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage_2);
function fl_ClickToGoToWebPage_2(event:MouseEvent):void {
navigateToURL(
new URLRequest("http://www.mediwales.com/index.php?id=6&member=9"), "_self");
}

View 1 Replies

ActionScript 3.0 :: Links Opening In New Window Even With Target _self?

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

ActionScript 3.0 :: 'new Window' Links Opening BEHIND Full-screen Flash

Aug 7, 2009

I'm working on a site that's intended to display full screen. At present the initial HTML page has a "launch site" link which pops up a fullscreen window (via javascript window.open) with our Flash content.Once in the Flash site, all URLs that point at off-site destinations are set to open in a new window ("_blank" as the target - either an href in text, or via navigateToUrl). In Mac Firefox the new window opens BEHIND the full-screen Flash (as a new tab in my case). In Windows FF and IE, and Mac Safari, the new window pops in front of the fullscreen Flash.Is there a way to make the non-fullscreen window pop in front of the fullscreen Flash? I'm using swfobject 2.1 - perhaps I need to use an externalInterface call...thoughts?

View 0 Replies

Professional :: Links Opening In New Windows?

Jan 16, 2011

I'm relatively new and I've made a script on my banner for buttons to link internally to different pages on my webpage. The problem I'm having is every time I click on a link it directs me into a new window, it will redirect in the same window and new tabs wont keep poping up? The website is [URL] if you want to see the problem I'm having.
 
stop() 
road.addEventListener(MouseEvent.ROLL_OVER,play1);
function play1(event:MouseEvent):void{    gotoAndStop("specroad");

[Code]....

I've tried a few things but I can't get anything to work. I shouldn't have any trouble fixing the rest of the script!

View 1 Replies

Professional :: Links Opening To Same Popup - How To Give Each Its Own

May 18, 2010

Each page has like the first page "Welcome" followed by a brief paragraph followed by a "read more..." link/button which opens to a small popup window with additional 3-4 paragraphs. So the main page has "WELCOME" > small paragraph > read more button.

Below that has "LATEST WORKS" > small paragraph > read more button

Both of those "read more..." lead to the same popup window but have their own title "Welcome" and "Latest works"(don't know where the mini title file is) but the paragraphs are the same which I don't want. I want each "read more..." to open to its own little popup.

Still learning script but is their anything in the script to change or something on stage? Or just redo everything somehow
on (rollOver) {
gotoAndPlay("p1");
} on (releaseOutside, rollOut) {
gotoAndPlay("p2");
} on (release) {
_root.popup.gotoAndStop(2);
_root.popup.label.text = i;}

View 1 Replies

Professional :: Opening In Same Window Using CSS & Flash CS3?

Jun 2, 2010

I'm working on a portfolio in Flash CS3 and AS3. I'm trying to avoid doing the whole thing in Flash, so the home page is a CSS/HTML header page that will house a looping flash piece underneath the header, and the inner portfolio will be flash pieces brought into the same CSS header framework.I'd like to know what kind of code I need to use in the portolio flash navigation so that the "home" link will open the CSS/HTML home page in its same window, rather than launching another window. Is this something that can be done using AS3, or do I need javascrpt as well?

View 4 Replies

Professional :: Stop A Browser Window Opening Up When The Email Link Is Clicked?

Jul 19, 2010

how to stop a browser window opening up when the email link is clicked? I'm using a button with this script:
 
on(release){
getURL("mailto: name@address.co.uk ");
}

View 2 Replies

ActionScript 3.0 :: Opening Links From XML?

Jan 4, 2010

I am currently building a XML gallery. The thumbnails are created inside the FLA file, and it's driven with a XML file. When a thumbnail is clicked, it will bring up the Detail movieclip. And inside the Detail movieclip, I've created some buttons with an external class of "DetailButtons". Inside the DetailButtons class, the buttons dispatch a custom event that the FLA is listening for. The problem is I can't figure out how to have one of the buttons open the corresponding url link in the XML file. I just keep getting the 1069 error.[code]

View 13 Replies

ActionScript 3.0 :: Flash - MySpace And Opening Links

Jan 17, 2010

I'm having trouble making Flash open any links when embedded into my MySpace profile. I'm developing a MySpace profile layout that uses embedded SWF movies in custom created DIVs. Everything was going great. Things were loading into place and I managed to get my homemade Twitter widget to update perfectly using a crossdomain.xml.

The one problem I can't seem to address is the 'opening links' issue. Upon searching for the last couple of days, I came across some articles that claim MySpace blocks "navigateToURL" commands. Also found out a workaround that involves placing a transparent GIF over the area which is supposed to be clickable, but I still have hope that such a basic function as clicking a button within an embedded SWF in MySpace and opening said link can be achieved.

View 2 Replies

ActionScript 3.0 :: Combo Box Not Opening Links In Browser

Mar 22, 2010

I am using the Combo Box Component.I gave the combo box the instance name myComboBox I added a few labels and web address's[code]...
 
Does anyone know what causes this and how to stop it from coming up so that the combo box works and takes you to the right web page?

View 2 Replies

Actionscript 3 :: Bypass IE Popup Blockers When Opening Up Links In Flash?

Feb 11, 2010

This is the Class I'm using to bypass the popup blocker. This is the function to call to the class function

function linkHandler(e:MouseEvent):void{
popup.ChangePage(linksURLArray[e.currentTarget.name], "_self");
} this is the class.

[Code]...

View 1 Replies

ActionScript 3.0 :: Opening A .swf In A New Window?

Oct 29, 2009

I've got a .fla file, with 3 scenes in it. In the 3rd scene, there's a button which upon clicking it, should open a new window showing a external .swf file. Both files are placed in the same folder.

Now.. I'm able to open the .swf file in a browser, but what im trying to do, is open it in flash player. How the *#@%*#@ am i supposed to that? :P

Oh yeah, i should probably mention that the external .swf file also has mulitple scenes and buttons. And both "movies" should still be interactable when i open the new window.

View 6 Replies

IDE :: GetURL Always Opening In New Window

May 25, 2009

I can't seem to get the buttons I have created in flash to open in the same window.. I've tried
1. leaving it with no target
2. on (release) {
getURL("[URL]");
targetPath("_self")
}
3. on (release) {
getURL("[URL]", "_self");
}

View 2 Replies

ActionScript 3.0 :: Opening A Pdf.swf File In Its Own Window?

Dec 2, 2010

im having no luck with this at all. im building a site for my company, building and selling homes. ive made a website in flash, nothing too complex, ive also made a pdf in indesing, which when published left me put a page turing feature on it, and that pdf was then published as a swf file. its put all the code in for me automatically so the people can now interact and page turn it.i simply want a button/link i can put on my site to open this swf in its own browser window or in a flash player window. this code in previous versions of flash has been easy...on release etc but now with as 3.0 i see people using child, navigatetourl, its so confusing and every example ive found just doesnt seem to work

View 14 Replies

ActionScript 3.0 :: Opening New SWF File In Same Window

Jul 1, 2009

The code, To open a new .swf file in the same window, like on my website when u click a button I want it to load another .swf file in the same window. Its either this or to make it open a new scene.

View 1 Replies

Flash :: Link In Keeps Opening In New Window

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

ActionScript 3.0 :: Opening A Link In A New Window?

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

ActionScript 3.0 :: Opening A Url In A Blank Window

Dec 8, 2011

I have a button called bt07 and I would like when you click down this button to open an url in a blank_window (for exemple [URL]) I wrote this code below but I don t know how writting the code to open the url?

//mouse downbt07.addEventListener(MouseEvent.MOUSE_DOWN,auSurvolSurbt07);function auSurvolSurbt07(e:Event){bt01.gotoAndStop(1);bt02.gotoAndStop(1);bt03.gotoAndStop(1);bt04.gotoAndStop(1);bt05.gotoAndStop(1);bt06.gotoAndStop(1);bt07.gotoAndStop(2);

[Code].....

View 1 Replies

PHP :: Opening Custom IE Window From Flex Possible?

Nov 11, 2009

Is it possible to open a custom IE window (i.e no status bar or address bar etc) from within flex? Or if I call a php file or html file can the page customize itself when loaded?

View 2 Replies

Web Development :: Opening IE Window From Within Flex?

Dec 4, 2009

All I need to open a new IE Window from within Flex code on click of a link.P.S I dont want to open a new Browser. I want to open a browser window only that can open a new URL.Something like clicking on a link in Flex and then openin a Pop up window.

View 2 Replies

ActionScript 3.0 :: Opening New Window In JavaScript?

Oct 9, 2009

I've been trying to find the Migration from AS2 to AS3,for the following code:

ActionScript Code:
on (release) {
getURL("javascript:NewWindow=window.open('main.htm l','ssWin','width=990,height=600,left=0,top=0,tool bar=N0,location=No,scrollbars=No,status=No,resizab le=No,fullscreen=No');NewWindow.focus();");
}

the code I've got so far is:

ActionScript Code:
if (mcUrl == i)
{

[code]....

But I'm not sure how to implement JavaScript in it.

View 1 Replies

ActionScript 3.0 :: URLRequest Without Opening Window?

Jan 28, 2010

I have this thing that sends variables to a php-file. The code snippet looks like this:

Code:
var myURLRequest:URLRequest = new URLRequest("kampanjerbjudande/process_variables.php");
myURLRequest.data = myVariables;
navigateToURL(myURLRequest, '_blank');

Now, the thing is this opens the process_variables.php in a new window/tab. I want to send the variables to the file to be processed without "visibly" opening the file in a window. Do you know what I mean?

View 6 Replies

ActionScript 2.0 :: Opening An External Window?

May 12, 2010

i have Movie A playing. When you click PlayStep button, I want to open another window that has Movie B in it. When Movie B is done, I want to go back to where I came from (Movie A). Nothing that I have tried has worked -- like _blank or importing ExternalInterface.

View 2 Replies

ActionScript 2.0 :: Opening Up Site In Pop Up Window?

Jan 10, 2004

I am trying to open up my site in a pop up window, and to be self contained in the window itself. This involves javascript and the code must be entered in the index.html page of the site, after the head tag, but why wont it work?! Does anyone know what to do?

View 14 Replies

ActionScript 2.0 :: GetURL Without Actually Opening A Window?

May 4, 2006

is there any way to use the getURL command without it actually opening a new page? What I'm really doing is sending variables to a php page and inserting data into a database, but when i use LoadVars and LoadVars.send it's not workin for some reason. So I tried a simple getURL and that also sends the variables to the page and that works for me, but I don't want the users to see a new window popup or for the one theyre in to go to a new URL...? Maybe I'll post my LoadVars code too just to make sure I did that correctly... but I copied and pasted it from another LoadVars object in the same flash program that is working correctly (both sending AND loading variables)...

View 6 Replies

ActionScript 2.0 :: Opening URL In Box / Window Inside SWF?

Aug 3, 2008

How to open a website page (anysite.com/whatever) inside a box/window of designated size and position inside a flash swf? I am an Actionscript newbie and can't deal with "snippets" of info as well.

View 3 Replies

IDE :: Opening An Fla In A New Browser Window With Java

Jan 20, 2009

I followed this tutorial [URL] put the proper actions on my button, the button calls the window in a blank page but it does not have the settings in the javascript no scroll, no resize and a preset window size.

The tut is from Flash 5 and that was before the "ACruncontent" file flash uses now in cs3. window opening the way I need it is critical for a client.

View 2 Replies

ActionScript 2.0 :: Opening A New Window With A Certain Size?

Mar 18, 2002

I want to open a new window with let's say height 500 and width 600 could i use this in flash so i can open such an window with an html -file in it, i have made a javascript to do this, but could i use this in my actionscript or do I have to work with getURL somehow.

View 3 Replies

ActionScript 3.0 :: Mp3 Player Opening In New Window

Apr 15, 2011

I have made an mp3 player which works fine but I have one issue. Currently if you click on the speakers it will open the player in another window. way for the original player to stop playing and then new one which opens to continue playing.

The second player launches via a get url command, so I guess this might not work with what I am trying to achieve.

Here is the link to the file.

[URL]

The idea is for the original mp3 player to sit on the first page of a website and the second one to float when opened over the other pages the user navigates through.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved