Questions tagged [navigatetourl]

48 questions
0
votes
1 answer

How to open a url in the browser using AS3 on a standalone flash projector?

var request:URLRequest = new URLRequest("http://google.com"); navigateToURL(request, "_blank"); This works fine on web based swfs, it fails on flash player. can anyone help?
Fixtree
  • 106
  • 3
  • 9
0
votes
0 answers

Actionscript 3 - Multiple navigateToURL() trigger multiple authorization popups

I have to execute multiple navigateToURL in an swf on file:// protocol (so I can't use ExternalInterface). Unfortunately, I can't set this swf as trusted. I am using this code: var urls:Array =…
0
votes
1 answer

Actionscript 3 - can't open multiple navigateToURL() instances at the same time

I am new to AS3, I want to open multiple browser tabs with flash. I'm trying to simply start multiple instances of navigateToURL(). for each (var str:String in arrayofrequests) { [...] try { navigateToURL(request, "_blank");} [...] } but only…
0
votes
0 answers

How do I open native google plus app from inside my app for android?

I want users to be able to share a url link on google plus from inside my as3 app using navigateToUrl, but I want the native google plus app to open up, not go through mobile web browser. I am using the as3 function below for iOS which works…
0
votes
1 answer

navigateToUrl AS3 is not opening a web browser

I have a textField on my stage named 'adBuy', which when clicked I want to open up my browser with the defined in URL request. However when I click on the 'adBuy' textField on my SWF it opens Coda, the piece of software I'm using to write this small…
Ronnie
  • 1,053
  • 5
  • 18
  • 30
0
votes
1 answer

Browsers cut off query strings sent from Flash

I need to send a query string from Flash so that it appears in address bar of a browser. Basically, I need to make a Flash version of this HTML code: link Seems simple... When I try to do this from Flash the…
0
votes
1 answer

Running flash links offline

I have a flash file with some buttons, which open some http links using navigateToURL. For example: btn1.addEventListener(MouseEvent.CLICK, openPage) function openPage(e:Event) { navigateToURL(new URLRequest("http://www.google.com"),…
Amrit
  • 2,295
  • 4
  • 25
  • 42
0
votes
1 answer

navigateToUrl

I'm warming up w/ AS3 robotlegs framework. I'm working on a FLEX 4/AIR Application which uses Twitter OAUTH API, my question is : where should I put my "navigateUrl" instruction so the use can authorize my token? Is it in an Actor or in my view?…
Romain Pouclet
  • 864
  • 2
  • 8
  • 17
0
votes
1 answer

AS3 navigateToURL only works when testing in Flash CC

I've tried searching stackoverflow to find an answer to this question but so far haven't found anything. I have a swf file with several movie clips on the stage. When I've managed to create an event where the movie clips swap out to a new movie clip…
0
votes
1 answer

altervative to navigatetoURL in Flex 4.5 - not working

Maybe you all know about the issue GoogleChrome and Safari has with using navigatetoURL. It works only in IE. Thus I gathered the following code from a forum. The code is a javascript function place in the html file. Then there is another function…
0
votes
1 answer

Flex logout functionality in AIR application

After login, I am navigating from Login ViewStack to Application ViewStack in Flex 4 AIR application. In the Application ViewStack, datagrids and other controls are populated with data from server. Now, on logout, I am switching back to Login…
Vikas Sharma
  • 1,235
  • 2
  • 27
  • 53
0
votes
1 answer

flex 4.6 set browser url like window.location for pages within same base url

flex 4.6 seems like a noob Q. but I would like to change the browser url page not domain, from http://myUrl.com/page1 to http://myUrl.com/page2. I have tied IBrowserManager .setFragment(page2) this seems to add to the existing url…
art vanderlay
  • 2,341
  • 4
  • 35
  • 64
0
votes
1 answer

encoded url: %9A showing up as ?-diamond ... how to get browser to correctly interpret %9A

I am generating a url (for facebook dialog) from flash: var lvs_url = "http://www.facebook.com/dialog/feed?app_id=208524139202627&name=š…
dsdsdsdsd
  • 2,880
  • 6
  • 41
  • 56
-1
votes
2 answers

Blazor Navigation manager to specified URI (google.com)

i have a question about how to redirect page to certain page like google.com I've tried with below but it's not working... @inject NavigationManager NavigationManager void() { NavigationManager.NavigateTo("google.com"); } but it moved to the link…
-1
votes
1 answer

flex 3 navigateToURL

im using the navigateToUrl class to allow users to download some content - this works fine in Firefox however in IE a new blank page is opened with no content along with the download window (which is all i want showing up) any fixes for this ?…
cdugga
  • 3,849
  • 17
  • 81
  • 127