I am trying to get an MP3 to play with phonegap on windows phone 7. I have the following in a javascript block in me head.
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
var my_media = new Media("test.mp3");
my_media.play();
document.getElementById("testdiv").innerHTML="WORKING";
}
The "testdiv" does show "WORKING", but the .mp3 does not play. The mp3 is set to "Content" on the build action and is in the www folder.
I tried the following as well.
var my_media = new Media("www/test.mp3");
my_media.play();
and also
var my_media = new Media("www\test.mp3");
my_media.play();
EDIT
I have gotten this working. I had to add the following to my WMAppManifest.xml
<Capability Name="ID_CAP_MEDIALIB"/>
And then the path for the mp3 needed the following:
app/www/test.mp3 or you could try /app/www/test.mp3