cancel
Showing results for 
Search instead for 
Did you mean: 

How to Launch a URL in a new browser window

Former Member
0 Kudos

Hi,

I have placed the "LaunchURL" on the Adobe Form and passing the url from the internal table from the BAdi. But when I click the url from the adobe interactive form at run time the old window replacing with new url window. So is there any way to lunch URL in a new Browser Window.

The scripts i am using is as follows

var errMsg = "The URL format is incorrect.";

try {

var URL = this.assist.toolTip.value;

app.launchURL(URL, true);

} catch (e) {

xfa.host.messageBox(errMsg);

}

Thanks

Ali

Accepted Solutions (0)

Answers (1)

Answers (1)

ChrisSolomon
Active Contributor
0 Kudos

In general to launch a link/URL in a new window, you must set the "target" value to "_blank". So you would have for instance...



<a href="http://www.myURL.com" target="_blank">LAUNCH ME</a>