Flash movie Issue - Need loading page?

Discussion in 'ASP.NET / ASP.NET Core' started by jluft2131, May 1, 2011.

  1. Hey guys,

    I need to have my flash movies load at start at the exact same time. Due to internet speed issues, sometimes the movies dont start up at the same time and it looks dumb.

    Do I need a loading page? If so, is there a way to call both objects to play in a method in the aspx.cs page?

    Here is the code produced by flash as an example... BTW the movies get all screwy in IE. If anyone knows why please let me know what I need to do.

    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="688" height="538" id="Briefcase" align="middle">
    <param name="movie" value="Briefcase.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="transparent" />
    <param name="scale" value="showall" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <param name="allowScriptAccess" value="sameDomain" />
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="Briefcase.swf" width="688" height="538">
    <param name="movie" value="Briefcase.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <param name="play" value="true" />
    <param name="loop" value="true" />
    <param name="wmode" value="transparent" />
    <param name="scale" value="showall" />
    <param name="menu" value="true" />
    <param name="devicefont" value="false" />
    <param name="salign" value="" />
    <param name="allowScriptAccess" value="sameDomain" />
    <!--<![endif]-->
    <a href="http://www.adobe.com/go/getflash">
    <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
    </a>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
    </object>
     

Share This Page