URL (Property)

Applies To:

EmbeddedBrowser object, HyperLink object, PluginDocument (Interactive Reporting Web Client only)

Description:

PluginDocument—Returns the value of the URL (Uniform Resource Locator) associated with the document. If the document is registered with the OnDemand Server, the URL contains the address to the server and the name of the Broker. If the document came from a Web server or local file system, the URL contains the fully qualified server name and directory.

In Avalanche, these mapping occurs for a Hyperlink (Object):

Hyperlink “Current Window” maps to “New Window”

When an explicit Smartcut URL is entered (in the OpenURL method or Hyperlink URL property), the Smartcut may contain a “/get” or “/withnav_get” command. This behavior applies to “/get” mapping:

Action:

Read-only, String

Example:

This example illustrates how to use the URL property to direct users to help information stored on the same server.

if(Application.Name.indexOf("BrioQuery") != -1)
   {
		Alert("This property is not valid in Hyperion")
	}
else
	{
		var MyURL = ActiveDocument.URL
		Application.OpenURL(MyURL + "\/helpinfo.html,_new")
	}