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

PDF to Text Covert by Oracle Apex

Here are the steps to convert and get the character into a region by Oracle Apex. Step1.  Create a page and Copy-Pest the below code into Pa...