Carefree, yes, thank you. I have that mod on my forum and it works great. However, what I am wanting is a new tag: [mp3][/mp3] that would allow a user to place a url to an mp3 file in the middle of the tag and have it play in the jwplayer from longtailvideo.com.
<script type='text/javascript' src='/embed/swfobject.js'></script>
<div id='mediaspace'>This div will be replaced</div>
<script type='text/javascript'>
var s1 = new SWFObject('/jw/upload/player.swf','ply','470','300','9','#ffffff');
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('wmode','opaque');
s1.addParam('flashvars','file=http://www.longtailvideo.com/jw/upload/bunny.mp3');
s1.write('mediaspace');
</script>
<embed
src="/jw/upload/player.swf"
width="470"
height="300"
bgcolor="#ffffff"
allowscriptaccess="always"
allowfullscreen="true"
flashvars="file=http://www.longtailvideo.com/jw/upload/bunny.mp3"
/>
I'm not sure which version of the code would work best with Snitz and I'm also not sure how to make the above links know how to recognize what a user would put in the mp3 tags.