inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Jul 21, 2021 6:51:55 GMT -8
Hi,
Is there a way to add two more tracks to the Audio Sound Player plug-in? I'd like to have 10 tracks instead of the current eight.
Thank you.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Jul 26, 2021 1:40:54 GMT -8
<script>
function track9(){
var player=document.getElementById('player');
var sourceOgg=document.getElementById('player');
var sourceMp3=document.getElementById('player');
sourceOgg.src='url.ogg';
sourceMp3.src='https://www.site.com/coolsound.mp3';
player.load();
player.play();
}
function track10(){
var player=document.getElementById('player');
var sourceOgg=document.getElementById('player');
var sourceMp3=document.getElementById('player');
sourceOgg.src='url.ogg';
sourceMp3.src='https://www.site.com/coolsound.mp3';
player.load();
player.play();
}
$( document ).ready(function() {
setTimeout(function(){
$(".new-style").find("li:first").append('<button class="music-button addMore" onclick="track9()">Track 9</button>');
$(".new-style").find("li:first").append('<button class="music-button addMore" onclick="track10()">Track 10</button>');
},100);
})
</script> paste this into your global header OR footer section of your website change www.site.com/coolsound.mp3 to whatever your sound file is in each function. Don't mess with the punctuation.
|
|
inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Jul 27, 2021 19:37:28 GMT -8
Thank you!
|
|
inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Mar 27, 2022 18:27:04 GMT -8
Hi, P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓. I added this plug-in to my other forum. Is there a way to add the title of the song so that they show when you hover over the track like they do for the first 8?
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Mar 28, 2022 8:36:54 GMT -8
Hello PF, It's outlined on how to do that in the Information area: (please read) and when one hovers over a track, it will show that title.
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Post by aRMY83 on Mar 28, 2022 8:41:12 GMT -8
|
|
inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Mar 28, 2022 8:52:57 GMT -8
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 11, 2022 11:54:31 GMT -8
Hi, P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ . I added this plug-in to my other forum. Is there a way to add the title of the song so that they show when you hover over the track like they do for the first 8? I added a solution over on the support post
|
|