I am a beginner and just get confused reading about the set -up issues.
I am trying to create a page that will play audio music samples one at a time when they are clicked on a list on a web page.
I have downloaded all the swfg, flv and js files and loaded both on my server and in my practice folder on my computer.
I ran the set up wizard and ended up with the code:
<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
var so = new SWFObject('player.swf','mpl','470','20','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('duration','33');
so.addVariable('file','http://www.longtailvideo.com/jw/upload/bunny.mp3');
so.addVariable('backcolor','CCCC00');
so.write('mediaspace');
</script>
Here is where I get confused
1. I gather I need to replace 'http://www.longtailvideo.com/jw/upload/bunny.mp3'
with a location unique to my files , but what is that supposed to be?
- Is it the address of the html page on the web that will list the audio files?
- Whatever it is , will it be different on the page I use for practice on my computer ( that sounds weird)
2. Also how do I get the mp3 link on my html page to reference the JVL player? Does that happen automatically, or does there need to be something special about how the link is written . I'm using Dreamweaver 2004 and it just launches a property box where I pick what my Link is.
Lenny

One more thing. When I create my link on my html page with the songs listed it just creates a line of code like this
<a href="MyTune.mp3" target="_blank">
Is that line all I need?
The tune is playing, but not using the JVL player and it plays the same way even without the JVL code on the page.
Lenny