Hi everybody (and sorry for my english)
I am trying to play a sound in an iphone, so I dowload the phonegap
code, go to to folder /iphone and execute the "PhoneGap.xcodeproj"
everything work fine.
Then I go to "/iphone/www/index.html" and edit the "index.html" file,
with this code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "
http://www.w3.org/
TR/html4/strict.dtd">
<html>
<head>
<meta name="viewport" content="width=320; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html;
charset=utf-8">
<title>My sound test</title>
<link rel="stylesheet" href="master.css" type="text/css"
media="screen" title="no title" charset="utf-8">
<script type="text/javascript" charset="utf-8">
new Media('beep.wav').play();
</script>
</head>
<body id="stage" class="theme">
</body>
</html>
But is not working :-(, I think I need to include some js file but I
have not idea about what.
can you help me with this? It will be very apreciatte.
Thank you very much.