Not signed in (Sign In)

Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorchange
    • CommentTimeMar 30th 2007
     
    Hello,
    I'm trying to use SO to embed 2 flash movies into 2 different areas on a webpage. This part is working fine. However, one of the movies needs to go over a background graphic and thus should be transparent. This works fine with the standard embed code (which I really don't want to use) but I can't get it to work with SO using the following:


    window.onload = function () {
    var so = new SWFObject("featuredspeakers.swf", "interactive-flash", "500", "250", "8", "#000000");
    var so1 = new SWFObject("bigidea_loop.swf", "bigidear-flash", "480", "25", "8", "#000000");
    so.write("interactive");
    so1.write("bigidear");
    so1.addParam("wmode", "transparent");
    so.setAttribute('redirectUrl', 'http://www.willowcreek.com/indesign/lead07/getflash.asp'); // must be the absolute URL to your site
    }


    This is what I'm seeing though: http://www.willowcreek.com/indesign/lead07/

    Any idea how to remove the black bg in the top flash movie (green words that are rotating)

    Thanks
    • CommentAuthorGeoff
    • CommentTimeApr 5th 2007
     
    you should split up your swfs... you have them all mixed together at the moment.

    one important thing to note: SWFObject.write() should be the last thing you call - after you set all the variables and params.