Skip to main content
Web Apps

Twitch Polls – 1.5.0.1

By 13th December 2018June 29th, 2019No Comments
  • Help messages have been added
    • Global help message
    • Poll help message
    • Action help message

Poll and Action help messages are specified in help tags in the Polls editor of the Edit page. When help tags are not available no help message is displayed. Example poll list with help messages:

Code:
{
  "logo": {
    "help": "show or hide logo",
    "actions": {
      "show": {
        "commands": "Overlay.Logo.Display = 'Show';",
        "help": "show logo"
      },
      "hide": {
        "commands": "Overlay.Logo.Display = 'Hide';",
        "help": "hide logo"
      }
    },
    "duration": 5
  },
  "grid": {
    "actions": {
      "show": {
        "commands": "Overlay.Grid.Display = 'Show';"
      },
      "hide": {
        "commands": "Overlay.Grid.Display = 'Hide';"
      }
    },
    "duration": 5
  }
}

Typing polls in chat sends the global help message to the chat. In the example above:

Code:
Available polls: logo grid

In the example above typing logo in chat sends the corresponding poll and action help strings:

Code:
logo: show or hide logo
logo show: show logo
logo hide: hide logo

upload_2018-12-13_16-59-1.png

Leave a Reply