launchURL

The launchURL method launches a URL in the browser window.

 

Syntax

launchURL(System.String cURL, System.Boolean bNewFrame);

 

Parameters

cURL

URL to launch.

bNewFrame

[optional] if it opens a new window. Default value false

 

Return Value

Returns None.

 

Remarks

Member of app.

 

Example

 
app.launchURL("https://www.amyuni.com");
app.launchURL("https://www.amyuni.com", true);