I need to know how to embed a song into an HTML file (extension .hta), without creating directories and folders, just music within .hta
I need to know how to embed a song into an HTML file (extension .hta), without creating directories and folders, just music within .hta
Try to be based using this code
<html>
<head>
<title>Hackoo Audio Player with Playlist by Hackoo 2014</title>
<HTA:APPLICATION
ID = "Music"
icon="http://files.softicons.com/download/social-media-icons/free-large-twitter-icons-by-aha-soft/ico/Audio.ico"
APPLICATIONNAME="Music"
SCROLL="no"
navigable="no"
selection="no"
showintaskbar="yes"
singleinstance="no"
innerborder="no"
maximizebutton="no"
minimizebutton="yes"
border="dialog"
borderstyle="normal"
caption="yes"
contextMenu="no"
sysmenu="yes"
>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=9">
<script>
function loadSong(elt,e) {
if(!e) var e = window.event;
document.getElementById("player").src=elt.href;
document.getElementById("player").load();
document.getElementById("player").play();
return false;
}
window.onload = function() {
links = document.getElementById("playlist").getElementsByTagName("a");
for(var i = 0; i<links.length; i++) {
links[i].onclick=function(e) { return loadSong(this, e); };
}
}
</script>
<style type="text/css">
#player {
margin: 10;
padding: 10;
font-family: sans;
font-size: 12px;
width: 400px;
}
#playlist {
border: solid 5px #555;
font-family: sans;
font-size: 14px;
background-color: #777;
list-style: none;
margin: 0px;
padding: 0px;
width: 200px;
}
#playlist li:nth-child(even) {
background-color: #888;
}
#playlist li:nth-child(odd) {
background-color: #777;
}
#signature {
border: solid 5px #555;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
font-family: sans;
font-size: 12px;
background-color: #888;
color: white;
list-style: none;
margin: 0;
padding: 0;
width: 200px;
}
#playlist li a,
#playlist li a:visited,
#playlist li a:hover {
color: white;
padding-left: 2px;
padding-right: 2px;
text-decoration: none;
}
</style>
</head>
<link rel="stylesheet" media="screen" type="text/css" title="design_encoder" href="http://hackoo.alwaysdata.net/design_encoder.css"/>
<SCRIPT LANGUAGE="VBScript">
Sub CenterWindow(x,y)
window.resizeTo x,y
iLeft = window.screen.availWidth/2 - x/2
itop = window.screen.availHeight/2 - y/2
window.moveTo ileft, itop
End Sub
Sub Window_Onload
CenterWindow 440,470
End Sub
</script>
<body>
<DIV id="Splash" STYLE="background-image:url(http://hackoo.alwaysdata.net/laser.gif); background-position:center center; background-repeat:no-repeat; align=center; cursor: hand; Height:300;Width:400;Border:0.1mm solid black;">
<center>
<marquee DIRECTION="UP" HEIGHT="330" WIDTH="350" SCROLLAMOUNT="2" title="Listen to The Best Music">
<center><font face="Comic sans MS" color=RED size=6 STYLE ="cursor: hand;"><b>DJ Hackoo for you on the Mix</b></font></center>
<br><br>
<center><font face="Comic sans MS" color=RED size=3 STYLE ="cursor: hand;">Music for ever</b></font></center>
<br><center><font face="Comic sans MS" color=RED size=3 STYLE ="cursor: hand;">DJ © Hackoo 2014<br><br></font></center>
<br><center><img src="http://hackoo.alwaysdata.net/DJ2.gif"></center><br><center><imgsrc="http://hackoo.alwaysdata.net/DJ3.gif"></center>
<br><center><img src="http://hackoo.alwaysdata.net/DJ4.gif"></center><br><center><imgsrc="http://nsm05.casimages.com/img/2011/07/23//1107230741401311048506419.gif"></center>
</marquee>
</center>
</DIV>
</center>
<center>
<div id="Player"></div>
<SPAN ID="ONSCR"></SPAN></DIV></CENTER>
<center><div> <audio tabindex="0" id="player" preload="load" controls="" src="http://hackoo.alwaysdata.net/Intro_DJ.mp3"autoplay></audio><ulid="playlist">
<li><a href="http://radio.mosaiquefm.net:8000/mosalive">Radio Mosaique FM</a></li>
<li><a href="http://hackoo.alwaysdata.net/David_Guetta_Miami_2014.mp3">David Guetta Miami_2014</a></li>
<li><a href="http://hackoo.alwaysdata.net/Best of Avicii Megamix 2014.mp3">Avicii Megamix 2014</a></li>
<li><a href="http://hackoo.alwaysdata.net/Megamix 90.mp3">Megamix les annees 90s</a></li>
</ul>
<ul id="signature"> by © Hackoo 2014</ul>
</div>
</center>
</body></html>
Reference: link