EMBED.executeAction

This method executes a specific action (as defined by id in the manifest).

The operation performed by the action is set in the Operations Hub designer (set global, change page, navigate to a URL, etc.).

Parameters

(string) commandId

Return Value

None

Example

var doAction = function()
{
  EMBED.executeAction('onClicked')
}
Manifest Information
  "commands": [
    {
      "title": "Click Event",
      "id": "onClicked"
    }
  ],