I'd like to include a small player (like this Dewplayer) often in a HTML page.
I would like to write something like:
[mp3player,file=test.mp3]
instead of having to write each time this long code (1):
<object type="application/x-shockwave-flash" data="dewplayer.swf" width="200" height="20" id="dewplayer" name="dewplayer">
<param name="movie" value="dewplayer.swf" />
<param name="flashvars" value="mp3=test.mp3" />
<param name="wmode" value="transparent" />
</object>
Is it possible to define a short-code [mp3player, file=...]
that would be translated in the browser into the normal code (1), without server-side technology like PHP, etc. ?