This section describes how you can interact with the browser.
One of the Macro Extension Plugin's Global Variables. Represents the contents of the URL Bar. Can be set aswell as read.
$path=getfolder(<folderName>);
Locates the specified K-Meleon folder.
Parameters:
| Parameter | Required | Type | Value | Meaning |
|---|---|---|---|---|
| <folderName> | YES | PREDEFINED | RootFolder | The name of the addressed folder. See K-Meleon Folders for details. |
| ProfileFolder | ||||
| SettingsFolder | ||||
| MacroFolder | ||||
| UserMacroFolder | ||||
| ResFolder | ||||
| SkinFolder |
id(<ID_command>);
Executes the specified ID command.
Parameters:
| Parameter | Required | Type | Value | Meaning |
|---|---|---|---|---|
| <ID_command> | YES | PREDEFINED | An ID Command | The name of the ID command to execute. |
open(<URL>);
Opens the specified URL in the current window (or tab).
Parameters:
| Parameter | Required | Type | Value | Meaning |
|---|---|---|---|---|
| <URL> | YES(1) | STRING | An URL | The URL to open. |
(1) Cannot stay empty. Specify "about:blank" to open an empty page.
openbg(<URL>);
Opens the specified URL in a new window. This new window is opened in the background (the current window keeps the focus).
Parameters: See open()
openbgtab(<URL>);
Opens the specified URL in a new tab. This new tab is opened in the background (the current tab keeps the focus).
Parameters: See open()
opennew(<URL>);
Opens the specified URL in a new window. This new window gets the focus.
Parameters: See open()
opentab(<URL>);
Opens the specified URL in a new tab. This new tab gets the focus.
Parameters: See open()