Requests the browser to open an URL specified by the URL parameter. The target parameter refers to the browser window where the URL should be displayed. Target may be the name of a browser frame or a keyword referring to a specific browser window.
You must include the “http” part of the URL when you specify the URL parameter.
“_self” The current browser window.
“_new” A new browser window.
In Avalanche, this mapping occurs for the OpenUrl method:
OpenURL ”_parent” target is mapped to “_top”
Open URL “_self” target is mapped to “_new”
Expression.OpenURL(URL As String, Target As String)
An expression that returns an Application object.
This example shows how to open a Web page in a new window:
if(Application.Name != "Hyperion - Designer") { var MyURL = “http://www.Hyperion.com” Application.OpenURL(MyURL) }
This example shows how to open a localInteractive Reporting document file in Interactive Reporting Web Client.
Application.OpenURL("E:\\Demo.bqy", "_self")
Application.OpenURL("E:\\Demo.bqy", "_new")