Questions tagged [navigatetourl]

48 questions
1
vote
3 answers

How do I create a popup from Flex without a browser toolbar?

I'm trying to launch a popup window from Flex, but the popup window needs to have certain properties as one can usually specify with the JavaScript window.open. For example, the popup window should not have a browser toolbar or URL box. I've…
1
vote
0 answers

How do I open the Share Intent Dialog with Adobe AIr with navigateToURL

intent:#Intent;action=android.intent.action.SEND;type=text/plain;launchFlags=0x1;S.android.intent.extra.TEXT="+encodeURIComponent(socialShareEvent.message)+";S.android.intent.extra.SUBJECT="+encodeURIComponent(socialShareEvent.subject)+";end Throws…
ReduxDJ
  • 480
  • 7
  • 14
1
vote
0 answers

Launch native Android app from AIR app on Kindle

I have a set of applications running on Kindle Fire: a Main app which is written in Java and the other apps are written in Flash (AS3) for AIR. Through the intents mechanism, I am able to launch the AIR app from the Main app. I would like the AIR…
Benny Smith
  • 249
  • 1
  • 2
  • 8
0
votes
0 answers

how do I link a form to a button on react

I created a page with a register button that is supposed to take you to a form once you click on it. I did this using React. I have not been able to link the form to the button. kindly explain how I can do this let navigate = useNavigate(); …
0
votes
1 answer

React router v6 testing library navigate relative fails

In my application i use relative navigation with react router v6 (we are currently migrating) and it works fine. When i try to do some tests using Jest and testing-library the relative navigation fails and always resolve with the pathname '/'. I use…
0
votes
1 answer

Flash navigateToURL hangs after navigation starts?

I have a flash program in a web page that tries to post a picture to a web page. When the user clicks a button the web browser starts to navigate to the new page then seems to hang (I can see it starts to go to the page by reading the transferring…
Steve
  • 51
  • 2
  • 5
0
votes
1 answer

Recode Flex URLRequest and navigateToURL form emulation to Royale JS

I have a bunch of Flex pages I need to convert to get rid of the flash player and have been unable to see how to replicate this code just using the javascript. The Flex code gathers up data and sends it in a POST to a Cold Fusion page in another…
wrkoch
  • 29
  • 4
0
votes
3 answers

AIR app: navigateToURL throws a SecurityError #2193

I'm trying to port an existing web app (ActionScript 3 only project) to AIR, to run as a standalone application. One of its features is opening urls in a browser window. But calling navigateToURL(new URLRequest(url)) throws this…
frankhermes
  • 4,720
  • 1
  • 22
  • 39
0
votes
0 answers

Selenium navigate().to() stuck without error

I am running tests using TestNG, chromium and Selenium, in Java, on two machines: my own laptop a Mac Mini I do not have physical access to, that I connect via SSH, that has the same identical project structure as the project on my laptop. Both…
aarav_dev
  • 1
  • 1
0
votes
1 answer

CHtmlView::Navigate2 and locked files

I am finding that if I navigate to a file and then I try to delete the file the system tells me it is in use. How can I stopped the files from being "in use" so I can delete it and recreate it to update the html display? If I create a NEW XML data…
Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164
0
votes
2 answers

Automating Google chrome extenions with sahi

We are automating chrome extension with sahi. we have loaded our chrome profile with sahi with extension added on profile. we weren't able to get dom elements of extensions. so we are navigating to the url:…
0
votes
1 answer

Selenium 3 firefox is not going to the given url

I'm new with using Java, Selenium en the Webdriver I use: selenium 3 beta3, Java jdk1.8.0_101 and firefox 48.01 Also I use the Geckodriver because that is needed for working with sel3. I am trying to open a url. Opening the browser is working. The…
Allan
  • 13
  • 1
  • 5
0
votes
0 answers

Flex -NavigateToUrl("some url", customname) is opening two tabs in IE11 instead of one tab(in same window)

In flex-3, when I click on a link, a url is called using navigateToURL("someurl",somecustomfixedname). IE 8,9 and chrome opens that url once in a tab/window(depends on tab settings), if you click the link two or more times same window/tab will…
vikram
  • 11
  • 1
0
votes
1 answer

AS3 ExternalInterface / navigateToUrl popups blocked when called from setTimeout

This problem has me tearing my hair out. The Symptoms: pop ups intermittently blocked/let through from external interface and navigateToURL combinations. The Problem: Flash (or the browser..not sure) wont let pop ups be triggered outside of a time…
Beans
  • 569
  • 1
  • 6
  • 19
0
votes
1 answer

Flasch cs4 - Action Script 3 - why new URLRequest doesn't work in chrome?

I heave a map in Flash, and some cities are a button. When you click in the button, open the webpage of the city. This is the code: import flash.events.MouseEvent; import flash.net.URLRequest; import…