I'm using the Scrolling HTML Screen in making a pop up from TrueUpdate, and it works great to display a page within the screen, but the issue I'm having is that any links within this page end up opening in Internet Explorer as opposed to the user's default browser.
I'd like the links to open in a new browser using either the default browser or the already opened browser - is either of these possible? I think the problem might be that it is already opening the page in the screen using IE, so any links from this will also be redirected via IE. Is this something I could change in the "Actions" tab of the Screen Properties?
Here is an example to try out in the preview for the screen if you put it in 'Specify now' section:
Any advice would be appreciated!
I'd like the links to open in a new browser using either the default browser or the already opened browser - is either of these possible? I think the problem might be that it is already opening the page in the screen using IE, so any links from this will also be redirected via IE. Is this something I could change in the "Actions" tab of the Screen Properties?
Here is an example to try out in the preview for the screen if you put it in 'Specify now' section:
Code:
<html> <a href= "#" onclick="window.open('http://www.google.com', '_system');">Test</a> </html>
Comment