Not signed in (Sign In)

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

    • CommentAuthorcberube
    • CommentTimeMar 15th 2007
     
    I can't find the problem with the code here. Alerts are working in the .JS and in the page script.

    My first test with the supplied material promptd me to install a newer flash plugin in IE7. Now, other Object used are working properly which tells me that these included where not doing any OBJECT validation.

    Nonetheless, using SWFOBJECT the alternate content DIV always appears. Tests for the plugin are all positives. Even, the flash object works in the alternate content section.

    I don't have any clue about what can cause this problem.

    Regards,

    Claude

    See code:

    <script type="text/javascript">
    // <![CDATA[
    var so = new SWFObject("assets/VoxData_entete.swf", "sotester", "440", "230", "9", "#FF6600");
    //so.addVariable("flashVarText", "this is passed in via FlashVars");
    // this line is optional, but this example uses the variable and displays this text inside the flash movie
    so.useExpressInstall('assets/swfobject/expressinstall.swf');
    so.write("flashcontent");

    // ]]>
    </script>
    <div id="flashcontent">
    <strong>You need to upgrade your Flash Player</strong>
    This is replaced by the Flash content.
    Place your alternate content here and users without the Flash plugin or with
    Javascript turned off will see this. Content here allows you to leave out <code>noscript</code>
    tags. Include a link to <a href="assets/swfobject/swfobject.html?detectflash=false">bypass the detection</a> if you wish.
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" name="anim" width="440" height="230" id="anim" title="Voxdata animation">
    <param name="movie" value="assets/VoxData_entete.swf" />
    <param name="SCALE" value="exactfit" />

    <embed src="assets/VoxData_entete.swf" width="440" height="230" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="anim" scale="exactfit"></embed>

    </object>
    • CommentAuthorGeoff
    • CommentTimeMar 16th 2007
     
    you need to put the script tag *after* your alternate content div, and make sure you close the div before you start the script tag.