BBC Media Site - SlideShow Pro

thebagchi

New member
Hi
I have SlideshowPro Director.
I wanted to add BBC Media Site but it failed to show up

Match URLs:
Code:
http://theroadrollers.info/slideshowpro/images.php?album={$id:digits}

Embed HTML:
HTML:
<!-- START EMBED CODE -->
<script type="text/javascript" src="http://theroadrollers.info/slideshowpro/m/embed.js"></script>
<div id="album">
</div>
<script type="text/javascript">
    SlideShowPro({
        attributes: {
            id: "album",
            width: 96%,
            height: 600
        },
        mobile: {
            auto: false
        },
        params: {
            bgcolor: "#000000",
            allowfullscreen: true
        },
        flashvars: {
            xmlFilePath: "http://theroadrollers.info/slideshowpro/images.php?album={$id}"
        }
    });
</script>
<!-- END EMBED CODE -->

What might be wrong here

Edit:
Got it working
You can see it here
Corrected Embed HTML:
HTML:
<!-- START EMBED CODE -->
<script type="text/javascript" src="http://theroadrollers.info/slideshowpro/m/embed.js"></script>
<div id="album">
</div>
<script type="text/javascript">
    SlideShowPro({
        attributes: {
            id: "album",
            width: 900,
            height: 600
        },
        mobile: {
            auto: false
        },
        params: {
            bgcolor: "#000000",
            allowfullscreen: true
        },
        flashvars: {
            xmlFilePath: "http://theroadrollers.info/slideshowpro/images.php?album={$id}"
        }
    });
</script>
<!-- END EMBED CODE -->
 
Top Bottom