Hi,
I am not the best at html but i trying to teach myself as i go along, but i'm really stuck at the moment and looking for a bit of advice.
I am using a software package that creates a flash mp3 player and i am trying to get it to work with my dnn 4.5.2 site.
The software package generates the following files:
1 folder (named jukebox_files) containing 4 jpegs for the play,stop,fwd and rev keys and it contains the mp3 files.
1 jukebox_swf file
1 jukebox_xml file
There is also some html code generated that is shown below:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
width="177" height="278" id="CoffeeCup" align="middle">
<param name="movie" value="Jukebox.swf"/>
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="bgcolor" value="#ffffff" />
<embed src="Jukebox.swf" quality="high" bgcolor="#ffffff" width="177" height="278"
name="CoffeeCup" scale="noscale" salign="lt" align="middle" type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>
The .xml file is also shown below:
<?xml version="1.0" ?>
- <coffeecupjukebox version="4.2">
- <jukebox x="0" y="0" w="177" h="278" playonstartup="t" loop="f" shuffle="f" bkdobk="f" bkdogradient="f" bkfillclr="0x000000" bkfillalpha="100" bkgradclr="0xFFFFFF" bkgradalpha="100" bkgradangle="70" bkdoimg="t" bkimg="myjukebox_files/body.jpg" bkdobdr="f" bkbdrsolid="t" bkbdrcolor="0x808080" bkdomask="t">
<rewindbutton x="38" y="190" w="16" h="9" toggle="f" btnupimg="myjukebox_files/previous.jpg" action="rr" visible="t" />
<ffbutton x="119" y="190" w="16" h="9" toggle="f" btnupimg="myjukebox_files/next.jpg" action="ff" visible="t" />
<playbutton x="84" y="230" w="8" h="8" toggle="t" btnupimg="myjukebox_files/play.jpg" btndownimg="myjukebox_files/pause.jpg" action="playpause" visible="t" />
<shufbutton x="320" y="42" w="35" h="14" toggle="t" action="shuf" visible="f" />
<loopbutton x="100" y="0" w="20" h="20" toggle="t" action="loop" visible="f" />
<volume x="36" y="97" w="106" h="13" visible="f" />
<progress x="36" y="97" w="106" visible="t" />
- <tree x="300" y="0" w="0" h="0" visible="f">
- <node label="">
<node name="01 Track 1" file="myjukebox_files/01 Track 1.mp3" artist="" label="01 Track 1" />
<node name="02 Track 2" file="myjukebox_files/02 Track 2.mp3" artist="" label="02 Track 2" />
<node name="03 Track 3" file="myjukebox_files/03 Track 3.mp3" artist="" label="03 Track 3" />
</node>
</tree>
<label x="5" y="62" w="103" h="23" bkdobk="f" bkdogradient="f" bkdoimg="f" fntalpha="100" fntsize="12" fntclr="0x000000" fntbold="f" fntitalic="f" fnt="Arial" visible="t" />
<scrolllabel x="31" y="21" w="115" h="35" bkdobk="f" bkdogradient="f" bkdoimg="f" fntalpha="100" fntsize="12" fntclr="0x000000" fntbold="f" fntitalic="f" fnt="Arial" visible="t" />
</jukebox>
</coffeecupjukebox>
I have tried this using dreamweaver and it works perfectly, but i cannot get it to work with DNN.
What i have been doing is this:
I have used the html code as above and place that into a text/html module. Then i have uploaded the .swf/.xml and the folder containing the jpegs and the mp3's via ftp to the root of my installation.
I'm guessing this is all i have to do (but then again it doesn't work so i guess i missing the point somewhere!).
I'm really at a loss at the moment as to what to try next. I don't even know is this is meant to work and maybe it will just not work with DNN.
Does anybody have any seggestions??
Many thanks for taking the time to read this.
Kind regards,
Matt.