Search This Blog

Friday, July 3, 2020

Add Music Into Oracle Apex

Add Music Into Oracle Apex 1. upload audio file into static application file 2. create region with static content and copy pest the below code into the region. 3. To automatically play the audio you have to use "autoplay" like <audio controls autoplay>


1. upload audio file into static application file

2. create region with static content and copy pest the below code into the region.

3. To automatically play the audio you have to use "autoplay" like  <audio controls autoplay>


<!DOCTYPE html>
<html>
<body>

<h1>The audio autoplay attribute</h1>

<p>Click on the play button to play a sound: autoplay </p>

<audio controls  >
  <source src="#APP_IMAGES#5.mp3" type="audio/ogg">
  <source src="#APP_IMAGES#5.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>

</body>
</html>

1 comment:

  1. I want to create the sound when the classic report data changes.
    I refresh the report every 10 seconds by setInterval() function.
    How can I achieve it...
    The dynamic action does not work for me, I have autoplay sound

    ReplyDelete

Restrict File Upload by File Type in Oracle Apex

If you want to restrict file upload by file type/extension/format you can follow the below steps.  Goto File Browser Item --> Advanced --...