Not signed in (Sign In)

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

    • CommentAuthortiggem1993
    • CommentTime6 days ago edited
     
    Hello all,

    I have generated one flv video by using Camtasia Studio 5. But when i play this video from my webserver it loads only flash player on webpage(I am using IE6, and FireFox 2.0). Other controls like play, pause, stop etc are invisible and flv movie is not loaded. But when i press F5 or Refresh button in browser window, it starts loading the flv file, i can see the play, pause, stop and other controls within the flv player.

    So please let me know about what's the problem behind. Why my flash player is not able to load flv files when page is loaded.Why it loads after page refresh? Is there any solution for me?

    My HTML files CODE is added below, please review my html code and suggest me what should i do to overcome with this problem:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <!-- saved from url=(0025)http://www.techsmith.com/ -->
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

    <title>Created by Camtasia Studio 5</title>
    <script type="text/javascript" src="swfobject.js"></script>
    <script type="text/javascript" src="showhidebucket.js"></script>


    <link rel="stylesheet" type="text/css" href="FlashTemplate.css"/>
    </head>
    <body id="cs_flashBody" >
    <div id="flashcontent">
    <div id="cs_noexpressUpdate">
    <p>The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by <a href="http://www.macromedia.com/go/getflashplayer">downloading here</a>. </p>
    </div>
    </div>
    <script type="text/javascript">
    // <![CDATA[
    var fo = new SWFObject( "showhidebucket_controller.swf", "csSwf", "320", "259", "8", "#FFFFFF" );
    fo.addVariable( "csConfigFile", "showhidebucket_config.xml" );
    fo.addVariable( "csColor" , "FFFFFF" );

    if( args.movie )
    {
    fo.addVariable( "csFilesetBookmark", args.movie );
    }
    fo.write("flashcontent");
    // ]]>

    </script>
    </body>
    </html>