@elsolitariogamerxl

  1. Upload the tone to your Bubble database using File Uploader
  2. Install Toolkit plugin (free)
  3. Copy the notification tone’s S3 file link from your database.
  4. Go to workflow of the button. Create a new action - Run javascript
  5. 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/