Thanks Mark, that's what I'm doing. The issue is...
// The first time file is downloaded...
navigateToURL(new
URLRequest("http://www.google.com/myPDFFile.pdf#nameddest=Chapter 1"),
"mywindowname"); // window opens and focus automatically goes to "mywindowname"
window
...
// then sometime in the future...
...
navigateToURL(new
URLRequest("http://www.google.com/myPDFFile.pdf#nameddest=Chapter 2"),
"mywindowname"); // When user clicks this, PDF advances to Chapter 2, but focus
stays in web app (with no indication given to user that anything happened).
User must understand he/she needs to look back at the "mywindowname" window.
How to programmatically give focus to "mywindowname" window here?
----- Original Message -----
From: "mark kessler ctr" <[email protected]>
To: [email protected]
Sent: Monday, April 7, 2014 4:25:09 AM
Subject: RE: can Flex place focus on browser window already opened with
navigateToURL()?
Yes if you open a new window/tab and pass it a name instead of say "_blank",
you can call that window again by its name. I use that technique for changing
the navigation(deep-linking) in other web applications that are open. [1], Also
I believe if you have a PDF exposed to the web browser you can use hash (#)
type navigation to change it to bookmarks or pages in the PDF.
navigateToURL(new URLRequest("http://www.google.com", "mywindowname");
-Mark
[1]
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/package.html#navigateToURL()
-----Original Message-----
From: [email protected] [mailto:[email protected]]
Sent: Sunday, April 06, 2014 9:54 PM
To: apache flex users
Subject: can Flex place focus on browser window already opened with
navigateToURL()?
The first time navitageToURL() is executed, a browser window opens and obtains
focus.
The user views the help file, then goes back to the web app.
Later, the user clicks to a link that points to a different named destination
in the same PDF file. Nothing happens (actually, the PDF file moved to the
correct named destination location, but the focus remains in the web app and
there nothing noticeable happens). The user has to "know" that he/she must
click the browser tab that opened the first time.
Is there a way that Flex can set focus to the HELP browser window opened with
navigateToURL(...,"HELP")? Or how do people address this? Should a popup appear
in the web app instructing the user to click on the browser window? etc.