We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 6723
    • 93 Posts
    I am having problems using SWFObject to show a slideshow on this page;

    http://www.djc-weddings.co.uk/newest.html

    The SWF itself is fine - http://www.djc-weddings.co.uk/homepage.swf

    The template I use for this page has this in the header;

    <script type="text/javascript" src="assets/snippets/SWFObject/swfobject.js"></script>

    and this is the snippet call

    [!SWFObject? &mode=`dynamic` &flashVersion=`7.0.0` &objId=`myFlashContent` &swfFile=`homepage.swf`!]

    I’m using MODx version 0.9.6.3

    Thanks, David
      • 28042 ☆ A M B ☆
      • 24,524 Posts
      Sounds like it may be a path issue with the .swf file. That can be tricky. I started using Flowplayer some time ago, and have never had a minute’s trouble with it. A truly elegant piece of work.
        Studying MODX in the desert - http://sottwell.com
        Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
        Join the Slack Community - http://modx.org
        • 6723
        • 93 Posts
        Looked elsewhere and found a solution without using a Snippet call.

        Put this in the header;

        .....
        <script type="text/javascript" src="scripts/swfobject.js"></script>
        <script type="text/javascript">
        var flashvars = {};
        var params = {};
        var attributes = {};
        swfobject.embedSWF("homepage.swf", "flashcontent",
        "660", "374", "7.0.0", "expressInstall.swf", flashvars, params, attributes);
        </script>
        .......

        And this where the slideshow should display

        .......
        <div id="flashcontent">
        <a href="http://www.adobe.com/go/getflashplayer">
        <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
        </a>

        Opps, you seem to be missing Flash - please install via the link above. </div>
        ..........

        and all good !