Jamroom Logo Jamroom 5 Core
is now Open Source!
User Support Forum Archive (Read Only)
Third Party Products and Support:
XSPF not loading playlist...
DetroitRap.Com



Joined: 07 Jul 2006
Posts: 68

Posted: 09/21/06 15:49 
not fixed.. is there a variable I can put in for the band_id... cause song_id=all works but i need to make it work for a popup that will bring up for the respective artist it is on.

Back to top
daddysylem
DS Flash Players


Joined: 30 Mar 2005
Posts: 4086
Location: Southern California

Posted: 09/21/06 16:23 
Try

band_id={band_id} or {$band_id}

See if that works.............


_________________
I have no idea why I do this..................
Email: daddysylem[at]dsplayerskins.com
DSPlayerSkins.com
GCFireSprinkler.com
Back to top
DetroitRap.Com



Joined: 07 Jul 2006
Posts: 68

Posted: 09/22/06 07:10 
it worked for Firefox but IE is loading no playlist !!!!!!!!!!!!! i hate this

Back to top
daddysylem
DS Flash Players


Joined: 30 Mar 2005
Posts: 4086
Location: Southern California

Posted: 09/22/06 08:21 

DetroitRap.Com:
it worked for Firefox but IE is loading no playlist !!!!!!!!!!!!! i hate this


Give me a sec and I'll look at it for you.


_________________
I have no idea why I do this..................
Email: daddysylem[at]dsplayerskins.com
DSPlayerSkins.com
GCFireSprinkler.com
Back to top
DetroitRap.Com



Joined: 07 Jul 2006
Posts: 68

Posted: 09/22/06 08:26 
ok

Back to top
daddysylem
DS Flash Players


Joined: 30 Mar 2005
Posts: 4086
Location: Southern California

Posted: 09/22/06 08:31 
Your <object> and <embed> code are not right..........

The <object> code is what IE uses to display the player
The <embed> code is what firefox uses..........

Post the code your using in the page to display the player.
from <object> to </object>


_________________
I have no idea why I do this..................
Email: daddysylem[at]dsplayerskins.com
DSPlayerSkins.com
GCFireSprinkler.com
Back to top
DetroitRap.Com



Joined: 07 Jul 2006
Posts: 68

Posted: 09/22/06 08:36 

Code
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
            codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="304" height="163" >
      <param name="allowScriptAccess" value="sameDomain"/>
      <param name="movie" value="http://www.detroitrap.com/jamroom/include/flash/proton_xspf_player.swf?playlist_url=http%3A%2F%2Fwww.detroitrap.com%2Fjamroom%2Fplay.php%3Fmode%3Dsong_hifi%26{BAND_ID}%3D{$band_id}%26song_id%3Dall%26type%3Dxspf&autoload=true&info_button_text=Visit+Us&playlist_title=Click+The+Play+Button"/>
      <param name="quality" value="high"/>
      <param name="bgcolor" value="#E6E6E6"/>
      <param name="player_title" value="Jamroom Flash Player"/>
      <param name="info_button_text" value="visit us"/>
      <embed src="http://www.detroitrap.com/jamroom/include/flash/proton_xspf_player.swf?playlist_url=http%3A%2F%2Fwww.detroitrap.com%2Fjamroom%2Fplay.php%3Fmode%3Dsong_hifi%26band_id%3D{BAND_ID}%26song_id%3Dall%26type%3Dxspf&autoload=true&info_button_text=Visit+Us&playlist_title=Click+The+Play+Button"
          quality="high" bgcolor="#E6E6E6" name="Jamroom Flash Player" allowscriptaccess="sameDomain" info_button_text="visit us"
          player_title="Jamroom Flash Player" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"
          align="center" height="163" width="304">
      </embed>
    </object>


Back to top
DetroitRap.Com



Joined: 07 Jul 2006
Posts: 68

Posted: 09/22/06 08:37 
i see the problem... somehow i put the variable in the wrong spot.

Back to top
DetroitRap.Com



Joined: 07 Jul 2006
Posts: 68

Posted: 09/22/06 08:40 
works like a charm now. THANK YOU for all your support.

Back to top
daddysylem
DS Flash Players


Joined: 30 Mar 2005
Posts: 4086
Location: Southern California

Posted: 09/22/06 08:40 
Ok, try this .....................


Code
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
            codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="304" height="163" >
      <param name="allowScriptAccess" value="sameDomain"/>
      <param name="movie" value="http://www.detroitrap.com/jamroom/include/flash/proton_xspf_player.swf?playlist_url=http%3A%2F%2Fwww.detroitrap.com%2Fjamroom%2Fplay.php%3Fmode%3Dsong_hifi%26BAND_ID%3D{band_id}%26song_id%3Dall%26type%3Dxspf&autoload=true&info_button_text=Visit+Us&playlist_title=Click+The+Play+Button"/>
      <param name="quality" value="high"/>
      <param name="bgcolor" value="#E6E6E6"/>
      <param name="player_title" value="Jamroom Flash Player"/>
      <param name="info_button_text" value="visit us"/>
      <embed src="http://www.detroitrap.com/jamroom/include/flash/proton_xspf_player.swf?playlist_url=http%3A%2F%2Fwww.detroitrap.com%2Fjamroom%2Fplay.php%3Fmode%3Dsong_hifi%26band_id%3D{BAND_ID}%26song_id%3Dall%26type%3Dxspf&autoload=true&info_button_text=Visit+Us&playlist_title=Click+The+Play+Button"
          quality="high" bgcolor="#E6E6E6" name="Jamroom Flash Player" allowscriptaccess="sameDomain" info_button_text="visit us"
          player_title="Jamroom Flash Player" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"
          align="center" height="163" width="304">
      </embed>
    </object>



_________________
I have no idea why I do this..................
Email: daddysylem[at]dsplayerskins.com
DSPlayerSkins.com
GCFireSprinkler.com
Back to top
daddysylem
DS Flash Players


Joined: 30 Mar 2005
Posts: 4086
Location: Southern California

Posted: 09/22/06 08:50 
Your just too quick for me...........lol

Glad you got it.


_________________
I have no idea why I do this..................
Email: daddysylem[at]dsplayerskins.com
DSPlayerSkins.com
GCFireSprinkler.com
Back to top
Display posts from previous:   
User Support Forum Archive (Read Only)
Third Party Products and Support

< Previous1234
 
Solutions
• Social Media Platform
• Social Networking Software
• Musician Website Manager
• Community Builder
Products
• Jamroom Core
• Jamroom Addons
• Jamroom Modules
• Jamroom Marketplace
Support
• Support Forum
• Documentation
• Support Center
• Contact Support
Community
• Community Forum
• Member Sites
• Developers
Company
• About Us
• Contact Us
• Privacy Policy
©2003 - 2010 Talldude Networks, LLC.