How do I an audio alert

Is there a way I can add an audio alert when one of the workflows completes. All I want is a gong noise, which I have as a little mp3 file. Just wondered there was a built in way, rather than me resorting to a plugin.

1 Like
  1. add the toolbox plugin

2 Add a workflow on whatever you want

  1. Workflow action add the run javascript

paste

var audio = new Audio('url to you mp3');
audio.play();
5 Likes

Excellent solution. Worked a treat.

Much appreciate @Bubbleboy