@elsolitariogamerxl
- Upload the tone to your Bubble database using File Uploader
- Install Toolkit plugin (free)
- Copy the notification tone’s S3 file link from your database.
- Go to workflow of the button. Create a new action - Run javascript
- Copy paste this code
let src = ‘YOUR NOTIFICATION TONE’S S3 FILE LINK’;
let audio = new Audio(src);
audio.play();
For example
let src = ‘//s3.amazonaws.com/appforest_uf/f1598429253106x343351561325749800/apple_msg_tone.mp3’;
let audio = new Audio(src);
audio.play();
Editor - https://bubble.io/page?type=page&name=notification_sound&id=nocodeassistant-tutorials&tab=tabs-1
Preview - https://nocodeassistant-tutorials.bubbleapps.io/version-test/notification_sound
More on this - https://nocodeassistant.com/adding-a-notification-sound/