ActionScript 3.0 :: Get The URLRequest To Bring Up The New Page In The Same Window?
Sep 1, 2010
how to get the URLRequest to bring up the new page in the same window? I am trying to create the flash navigation bar and it keeps opening up on a new page.
View 7 Replies
Similar Posts:
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
Nov 9, 2003
I have a flash navigation on an HTML site. When I click on a button in flash I want it to bring up a new page inside an Iframe. Is there anyway where I can get the on release command to send a variable to the browser to bring up that page in that frame?
View 5 Replies
Mar 8, 2009
I have a embedded flash application that uses URLRequest and navigateToURL to open a new browser window. Basic code is:
[Code]...
View 3 Replies
Aug 29, 2011
I am using new URLRequest to load a page. I cannot seem to get it to load in the current page rather than create a new page. Here is my code;
Actionscript Code:
home.addEventListener( MouseEvent.CLICK, function(e){ navigateToURL( new URLRequest('http://www.site.com/page.html') ); } );
View 6 Replies
Jan 25, 2010
bring my correct uiloader/swf to the front/into focus when the relevant list item is triggered? This is my code at the moment
Code: Select allimport fl.containers.UILoader;
import fl.controls.List;
var list1:List = new List();[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
Aug 12, 2009
In my movie i have a link button with following, simple, function creating a link:
[Code]...
lately i've associated a class file (.as) to my movie and immediately after, when publishing the movie i got the following error message: 1046: Type was not found or was not a compile-time constant: URLRequest. as well as a couple of other related error messages: 1180: Call to a possibly undefined method URLRequest. 1180: Call to a possibly undefined method navigateToURL. when i remove the link to the class file, the problem goes away. also, i have checked the class file for mentioning of "URLRequest" and nothing is there.
View 9 Replies
Jun 11, 2009
I been wanting to do a pop up information page, within a page, i dont know if this makes sense because i dont know how to really explan it, but this is an example of wat i mean, if u go into the gallery you'll see the thumbnail pictures and then when u click on it the pop up comes out, that is exactly what i want to do.
View 5 Replies
Jun 12, 2009
Have an issue with several buttons in cs3. I want the buttons to open the page in the same window, and they will once, but I need this to be a reoccuring effect. here is the code.
[Code].....
View 4 Replies
Dec 23, 2010
I have a "Close Window" Flash button on the 1st web page and it works. I have the same button on a 2nd page (you get to the 2nd page via the 1st page) and the button does not work. What "close window" actionscript do I use to close these windows?
Here is the code that I am using that works to close the 1st window...
on (release) {
getURL (onclick="javascript:window.close()");
}
View 0 Replies
Feb 21, 2012
Does anyone have tutorial to do the pop up window for login page? I want to include the insert login and password as well.
View 1 Replies
Oct 18, 2009
For some reason whenever I post my flash site online it does not fill the entire window properly. The scroll bar is always on the side making it so I have to scroll down to see the tiny bottom part that is cut off. And there is always a grey border surrounding the flash part of the site. Here is a link to the site so you can see what I'm talking about.
[URL]
I don't know if this would effect it, but I have been manually changing the html to make it so that it fits 100%.
'width', '100%',
'height', '100%',
View 0 Replies
Aug 15, 2010
Any Way to render requested page in same window instead of new one every time I hit button which I have created using actionscript 3.0. Code is
import flash.events.MouseEvent;
var get_page:URLRequest = new URLRequest("C:/Documents and Settings/Administrator/Desktop/lifeline/healthtips.html");
tips_btn.addEventListener(MouseEvent.CLICK,tipsClick);
function tipsClick(event:MouseEvent):void{
navigateToURL(get_page);
}
View 1 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
Sep 14, 2004
I have just followed the tutorial on the scrolling window, but instead of one button for each page, want to have just one up and down button. If you know what I mean. Maybe an array of y places and when I press the down button it goes down one. Really don't know where to start.
View 2 Replies
Oct 7, 2007
I have a menu that navigates my webpage. Say, for instance, I click on the "Home" button, it should take me to the homepage.I want the home page to open in the same window, not another window or tab. So I used this code:
Code:
on (release) {
getURL("http://www.mywebpage.com/home",_self);
}
Yet the homepage opens in a new window instead of the same window. Should I be using the "_self" parameter, or something different?
View 3 Replies
Apr 21, 2008
I am just trying to send some variables from flash to an asp page. Using the below method the variables are sent to the page.
sendText.loadVariables("http://archive.mysite.com/livefeed/pages/login.asp", "POST");
My issue is that I want the page to open in a new window and then have the post method send the vars.
Presently it does not open a new window.
View 2 Replies
Sep 26, 2009
- When you click on a link in the bottom menu bar of my site, the new page opens at the bottom of that page (instead of the top).
As you can see (from the action script at the bottom of this post ), it's basically just turning on and off the visibility of the pages. So when you click on the Ethnography button, it makes that page visible and the page that you were on, not visible.
So when the button being clicked (the Ethnography button) makes the Ethnography page visible, the page location stays in the same place (aka - the bottom of the page). Is there a quick action script statement that I can add to the EventListener for the button that will tell it to open the new page at the top of the page?
Something like: window.scrollTo(0,0) ?
[Code]....
View 1 Replies
Jun 1, 2011
I'm using the script below to go to url function in actionscript 3, and it works fine:
[Code]...
It's fine but I want the first window to close and then open up into the one its pointing to. How should I add the correct script to this?
View 5 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
Sep 23, 2004
I have an embedded flash button in "Window A", an HTML page. That button has the following code:
on (release) {
varHeight="600"
varWidth="800"
[code]......
View 1 Replies
Mar 26, 2009
So basically i have a flash application that needs to call a url when a button is clicked, but i don't want it to actually load a new window or even load the url. All the button does is call the url and it logs it, kind of like a click tag. My server keeps track of the number of times the particular url is called.
Everything works fine, but everytime i do it, it opens up a new browser window that is empty, i do not want to open a new window. I am using getURL, but that actually opens a new page, is there any other way to do this?
View 1 Replies
Sep 21, 2006
Looking for getURL syntax /parameters that will let me open/display a specific page of a PDF in a new browser window.
Tried this, but it's not working:
pdf_btn.onRelease = function() {
getURL("pdfs/sample_file.pdf#page=605", "_blank")
}
The pdf file opens in a browser window, but not to page 605. It opens to page 1 of the pdf.
View 2 Replies
Jul 18, 2011
I have a flash code, in which i am loading images and opening urls through xml file, now it is opening in a different window(pop up window) but i want it to open in the same window.
var xmlReq:URLRequest = new URLRequest("XML/ImagesData01.xml");
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
xmlLoader.load(xmlReq);
[Code]....
View 2 Replies
Sep 26, 2009
I'm building a Flash website and have a question which should be really easy to answer.
- When you click on a link in the bottom menu bar of my site, the new page opens at the bottom of that page (instead of the top).
As you can see (from the action script at the bottom of this post ), it's basically just turning on and off the visibility of the pages. So when you click on the Ethnography button, it makes that page visible and the page that you were on, not visible.
So when the button being clicked (the Ethnography button) makes the Ethnography page visible, the page location stays in the same place (aka - the bottom of the page). Is there a quick action script statement that I can add to the EventListener for the button that will tell it to open the new page at the top of the page?
[Code]...
View 2 Replies
Apr 3, 2007
here is my script.[code]the link opens up fine...but it opens up a tab in firefox that displays the following text."[object Window]"in internet explorer it gives me the error. and won't open the window.internet explorer cannot download.unspecified error.URL...
View 2 Replies
Mar 26, 2009
So basically i have a flash application that needs to call a url when a button is clicked, but i don't want it to actually load a new window or even load the url. All the button does is call the url and it logs it, kind of like a click tag. My server keeps track of the number of times the particular url is called.Everything works fine, but everytime i do it, it opens up a new browser window that is empty, i do not want to open a new window. I am using getURL, but that actually opens a new page,
View 6 Replies
May 10, 2010
Is there a way to open a html page in a borderless popup window using AS3. I've found info using AS2 with the "getURL" but nothing with the "new URLRequest" This is an example of what I'm looking to do: [URL]
View 2 Replies
Apr 22, 2009
The form is done and works. I set it up to send an email when the "submit" button is pressed. The problem is that after the form is submitted the home page pops up in a new window. I need it to send the email without a new window popping up. Here is the code.
var address:String = "/gdform.php";
var url:URLRequest;
var variables:URLVariables = new URLVariables();
[Code].....
View 6 Replies