Questions tagged [navigatetourl]
48 questions
9
votes
2 answers
How to set timeout for webBrowser navigate event
how can i set timeout for webBrowser navigate (url) event
c# netframework 4.0

Furkan Gözükara
- 22,964
- 77
- 205
- 342
5
votes
3 answers
Opening a URL from Flash using navigateToURL (AS3)
Been pulling my hair out for hours today over this.
I can't open another website from my already opened flash site.
Here is the code:
GotoFB.addEventListener(MouseEvent.CLICK, gotoFB);
function gotoFB(event:MouseEvent):void
{
…

Nebula
- 679
- 2
- 17
- 37
2
votes
1 answer
Flex: navigateToURL() takes about 3-5+ seconds?
My flex app has a call in it to:
navigateToURL(new URLRequest(_rURL),'_self');
But it takes about 3-5 or even more seconds before it will leave the current page.
If I omit the '_self' the new window opens immediately and the page loads…

JD Isaacks
- 56,088
- 93
- 276
- 422
2
votes
1 answer
In TestCafe is there a way to retry navigating to a URL without a hard wait
Our project uses TestCafe for e2e tests. Due to the environment navigating to a URL intermittently fails (Ping or other issues). The testCafe quarantine-mode isn't the correct solution because a single success indicates a success. I'm trying to code…

Robert Price
- 239
- 2
- 5
- 11
2
votes
1 answer
Open a new browser window, or set focus to an existing browser
I'm using code similar to the following:
http://blog.flexexamples.com/2007/08/29/launching-new-browser-windows-from-flex/
I have a Flex app running in AIR, and when I click on a URL it opens a new tab in my existing browser. In addition to this the…

Craig Myles
- 27
- 3
2
votes
3 answers
Event when navigateToURL has finished in flex
I am using navigateToURL for file downloading from server. Is there anyway possible to know when navigateToURL has finished, more like when browser download dialog has opened?
Sometimes it takes 5 seconds to complete, user might get confused and…

randomUser56789
- 936
- 2
- 13
- 32
1
vote
1 answer
Horizontal DIV with children elements to be scrolled to by Id
I have an ASP.NET Core Razor Page where is a collection of elements scroll-able horizontally on touch or on nav button click.
I am not js specialist and I need one more functionality:
On button click, I need to "JUMP" to element that has given…

positive perspective
- 165
- 1
- 3
- 13
1
vote
2 answers
Angular2: how to retrieve path array from Router?
Do you know that if you want to go to another page you can use the following code?
this.router.navigate(['section1', 'section1-children', 'my-page']);
Here, as you know, every string in the array is a path declared in the routing file of the module…

smartmouse
- 13,912
- 34
- 100
- 166
1
vote
0 answers
navigateToURL, how to make it open new tab in browser instead of window (pop-up)?
I've got a flash game, which is sponsored, so I have several buttons in the game that lead to my sponsors website. I used the following code on each of them:
navigateToURL(new URLRequest("http://www.sponsorsite.com"), "_blank");
Now, the problem is…

Moritz Krohn
- 57
- 1
- 7
1
vote
0 answers
Flash AS3 download file using navigatetourl in chrome issue
I am currently writing my first flash website and I have pretty much finished except for some niggly issues. I have some files that I would like to be downloadable and have used buttons that call navigateToURL(urlRequest, "_blank").
Now, the links…

chrisball-it
- 11
- 1
1
vote
1 answer
Cannot form with mailTo and navigateToURL (AS3) email with non-empty Subject and Body fields
Code AS3
var emStr:String="mailto:a@b.com?subject=RD&body=re"
var email:URLRequest= new URLRequest(emStr)
navigateToURL(email)
does not "distribute" string emStr between address, Subject, body of email, but place overall string into address…

user2324017
- 19
- 3
1
vote
1 answer
Action Script navigateToURL not working with stage3d
this simple code is not working for me :
stage.addEventListener(MouseEvent.CLICK, OnClick);
protected function OnClick(e:MouseEvent)
{
navigateToURL(new URLRequest("http://www.stackoverflow.com"), "_blank");
}
later i want url to open from…

Omkar Kanase
- 43
- 1
- 7
1
vote
1 answer
Need help AS3 navigateToURL opening new window
AS3 noob here. I am using the following code to successfully send a var to my php/database. My problem is that, of course, when I click my button in the Flash movie the browser navigates away to the "http://www.mydomain.com/charity.php?id=c" url.
…

Machineuser
- 93
- 1
- 1
- 13
1
vote
1 answer
What event of WebBrowser is triggered when File Download (Open/Save/Cancel) Dialog appears?
I am currently using C# and webbrowser on a windows application to navigate to a site that will automatically trigger a file download dialog or Open/Save/Cancel Dialog. The problem is I want to close the form window that is currently running the web…

See Sharp Beta
- 147
- 1
- 4
- 12
1
vote
0 answers
AS3 Flash, AIR3+, Android share intent with navigateToUrl
I created my first android app using Flash CS5.5/AIR 3. Im trying to figure out how to create and call an intent to share an image via whatever apps the users device supports. This article explains how to create the intent…

Pixel Hustler
- 11
- 2