> For the complete documentation index, see [llms.txt](https://docs.hello-lisa.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hello-lisa.com/developers/widgets/promo-widget/configuration-options/autoplay.md).

# Autoplay

The optional autoplay option, allows either suppress the Show autoplay feature (value false) or provide a custom URL Query Parameter carrying the Show ID.

```typescript
const alertConfig: Partial<AlertConfig> = {
  autoplay: false,
};

const alertConfig: Partial<AlertConfig> = {
  autoplay: { parameter: 'show_id' },
};
```
