OPENWEBPAGE
Opens a web page based on a url.
Syntax
OPENWEBPAGE(url; mode)
url - the url of the web page, which should be opened - Value type: text
mode - defines if the url should be opened in the same or a new browser tab - Value type: constant (optional, default value: newtab) Possible values are
self - the url is opened in the current browser tab
newtab - the url is opened in a new browser tab
Example
All these calls open the nedyx home page in a new browser tab:
OPENWEBPAGE(“https://nedyx.com”)
OPENWEBPAGE(“http://nedyx.com”)
OPENWEBPAGE(“nedyx.com”)

The call opens the nedyx home page in the current browser tab:
OPENWEBPAGE(“nedyx.com”; self)
Last updated
