Flash movie just has a white box when previewed

Working in Flash CS4
My question is when I publish my flash movie it opens fine on my computer but when I copy the folder with all the contents to another computer the skin show up fine but I get a white box where the movie should be. The same goes if we try to place it on a website. Files are available here to view
ftp.azcaf.org
Username: rickadobe
Password: forum4HELP (case sensitive)

Hi,
I have taken a look at your .fla and seems your source file name is not matching with what is available(Bob_Dickson.f4v) & what is specified(Bob Dickson InterviewH264.f4v) in the Component Inspector panel. Either rename your movie from "Bob_Dickson.f4v" to "Bob Dickson InterviewH264.f4v" probably the easiest way or change the Source name for your flv playback component in Component Inspector panel to "Bob_Dickson.f4v" and re-publish the swf.
Hope this helps
Thanks!
ps: pls mark this post as Answered if it was helpful to you

Similar Messages

  • Flash movie just has a white box when I preview

    Working in Flash CS4
    My question is when I publish my flash movie it opens fine on my computer but when I copy the folder with all the contents to another computer the skin show up fine but I get a white box where the movie should be. The same goes if we try to place it on a website.
    When I'm in flash should I be going to
    File Publish or
    File Export SWF
    To be placed in a website.

    NAte here is the link to the page that has the flash movie that is coming up as a white box
    http://www.azcaf.org/videos/DICKSON/DICKSON.html
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>DICKSON</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
         var version;
         var axo;
         var e;
         // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
         try {
              // version will be set for 7.X or greater players
              axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
              version = axo.GetVariable("$version");
         } catch (e) {
         if (!version)
              try {
                   // version will be set for 6.X players only
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                   // installed player is some revision of 6.0
                   // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                   // so we have to be careful.
                   // default to the first public version
                   version = "WIN 6,0,21,0";
                   // throws if AllowScripAccess does not exist (introduced in 6.0r47)
                   axo.AllowScriptAccess = "always";
                   // safe to call for 6.0r47 or greater
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 4.X or 5.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 3.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = "WIN 3,0,18,0";
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 2.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                   version = "WIN 2,0,0,11";
              } catch (e) {
                   version = -1;
         return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
         // NS/Opera version >= 3 check for Flash plugin in plugin array
         var flashVer = -1;
         if (navigator.plugins != null && navigator.plugins.length > 0) {
              if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                   var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                   var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                   var descArray = flashDescription.split(" ");
                   var tempArrayMajor = descArray[2].split(".");
                   var versionMajor = tempArrayMajor[0];
                   var versionMinor = tempArrayMajor[1];
                   var versionRevision = descArray[3];
                   if (versionRevision == "") {
                        versionRevision = descArray[4];
                   if (versionRevision[0] == "d") {
                        versionRevision = versionRevision.substring(1);
                   } else if (versionRevision[0] == "r") {
                        versionRevision = versionRevision.substring(1);
                        if (versionRevision.indexOf("d") > 0) {
                             versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                   var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
         // MSN/WebTV 2.6 supports Flash 4
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
         // WebTV 2.5 supports Flash 3
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
         // older WebTV supports Flash 2
         else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
         else if ( isIE && isWin && !isOpera ) {
              flashVer = ControlVersion();
         return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
         versionStr = GetSwfVer();
         if (versionStr == -1 ) {
              return false;
         } else if (versionStr != 0) {
              if(isIE && isWin && !isOpera) {
                   // Given "WIN 2,0,0,11"
                   tempArray         = versionStr.split(" ");      // ["WIN", "2,0,0,11"]
                   tempString        = tempArray[1];               // "2,0,0,11"
                   versionArray      = tempString.split(",");     // ['2', '0', '0', '11']
              } else {
                   versionArray      = versionStr.split(".");
              var versionMajor      = versionArray[0];
              var versionMinor      = versionArray[1];
              var versionRevision   = versionArray[2];
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
              if (versionMajor > parseFloat(reqMajorVer)) {
                   return true;
              } else if (versionMajor == parseFloat(reqMajorVer)) {
                   if (versionMinor > parseFloat(reqMinorVer))
                        return true;
                   else if (versionMinor == parseFloat(reqMinorVer)) {
                        if (versionRevision >= parseFloat(reqRevision))
                             return true;
              return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();
        switch (currArg){
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
         AC_FL_RunContent(
              'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
              'width', '720',
              'height', '450',
              'src', 'DICKSON',
              'quality', 'high',
              'pluginspage', 'http://www.adobe.com/go/getflashplayer',
              'align', 'middle',
              'play', 'true',
              'loop', 'true',
              'scale', 'showall',
              'wmode', 'window',
              'devicefont', 'false',
              'id', 'DICKSON',
              'bgcolor', '#ffffff',
              'name', 'DICKSON',
              'menu', 'true',
              'allowFullScreen', 'false',
              'allowScriptAccess','sameDomain',
              'movie', 'DICKSON',
              'salign', ''
              ); //end AC code
    </script>
    <noscript>
         <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="720" height="450" id="DICKSON" align="middle">
         <param name="allowScriptAccess" value="sameDomain" />
         <param name="allowFullScreen" value="false" />
         <param name="AutoStart" value="true" />
         <param name="movie" value="./DICKSON.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />     <embed src="./DICKSON.swf" quality="high" bgcolor="#ffffff" width="720" height="450" name="DICKSON" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
         </object>
    </noscript>
    </body>
    </html>

  • My Itouch died & now it just has a white screen when I try to turn it on

    My Itouch died and when I plugged it into a friend's computer to charge it, it just has this white screen when I try to turn it on. I took it home and plugged it into my own computer, and it's doing the same thing.
    What can I do to fix this?

    I wish i was replying because i could help. I just wanted to reply because my pod did exactly the same thing. except now it turned off and will not turn back on.

  • Flash 10 just shows a white box for flash elements in IE

    I just installed the latest version of Flash 10 and went to see some of my websites that had flash video elemnts on the pages.  They all now show up as just a white box wher the elemnts resides.   I emediatly uninstalled flash 10 and went back to flash 8 & everything works fine.  Has anyone else had this issue?    Thank you.

    Please post this in the Dreamweaver forum:
    Dreamweaver

  • I have had my ipod touch for almost 2 years. When i turn ipod on it just has a white screen! nothing will show. i have restored it. i have tried everything help!

    Ny ipod touch will not do anything. it just has a white screen on it. plz help!

    - Try:
    iOS: Not responding or does not turn on
    - If not successful and you can't turn the iPod fully off, let the battery fully drain. After charging for at least an hour try the article again.
    - If still problem that indicates a hardware problem and an appointment at the genius Bar of an Apple store is in order.

  • Pngs flicker and appear as white boxes when scrolling down page in Chrome 37.0.2062.120 m

    Hello,
    I have noticed that pngs flicker and appear as white boxes when scrolling down the page in Chrome 37.0.2062.120 m in windows only. Chrome on the mac is fine and this issue doesn't occur on the windows version of chrome canary. It would appear that the pngs are reloading when I scroll.
    There is alot going on in this animation, I am going to sprite most of these pngs to reduce sever requests which may help, but im certain this isnt the root cause of this issue.
    Has anyone come across this issue before?
    Please link to the animation in question here.
    Any advice much appreciated. http://new.oliverrice.co.uk/oliverrice.co.uk.html

    So I have created a sprite for the majority of the png's that form my symbols. This has reduced the total number of sever image requests from over 70 to 5. this has worked really well and feel adobe could add a feature that creates one sprite from all the images within the library. The animation seems to run a lot faster than before and loads much quicker.
    I am however still experiencing the problem mentioned above in chrome 37.0.2062.120 m.
    The animation also runs slowly on the I pad and I phone which I guess is down to memory usage? The animation wasnt intended for the iphone, but it would be nice to see it run on the ipad.

  • Greetings, I am working in Final Cut Pro 7. In the timeline some clips show as offline. I tried going to sequence and reconnecting to media but it does not work. I can still see the video in the timeline and work with it. It just has the red box.

    Greetings, I am working in Final Cut Pro 7. In the timeline some clips show as offline. I tried going to sequence and reconnecting to media but it does not work. I can still see the video in the timeline and work with it. It just has the red box. Thanks! Olga

    If the clips are not actually missing, you could try to refresh the timeline by using cmd-0 and then going to the timeline options tab. Then select name only where it says "thumbnail display". Press ok to accept the change, then repeat the process to add thumbnails back to your timeline.

  • My mac won't boot up, just has a white screen with a blinking ? mark, any suggestions?

    my mac won't boot up, just has a white screen with a blinking ? mark, any suggestions?

    this usually means the software and hardware can't find each other for whatever reason the following article addresses this issue:
    http://support.apple.com/kb/TS1440
    can also do apple hardware test, following article on that:
    http://support.apple.com/kb/HT1509
    if you can't access the apple hardware test in the above article you can also do fsck command to check the hardware as well, following article tells how to do that:
    http://support.apple.com/kb/HT1782
    hopefully one of these articles helps w/ resolution!!

  • Today  my iPod touch 4 generation was dropped. now it just has a white screen. i tried reseting it by clicking the home and lock buttons but nothing helped. what is my problem and how do i fix it?

    Today  my iPod touch 4 generation was dropped. now it just has a white screen. i tried reseting it by clicking the home and lock buttons but nothing helped. what is my problem and how do i fix it?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar              

  • HT200197 My Apple TV just has a white blinking light.  Will not turn off.  The TV shows nothing but the Apple logo.  It worked fine yesterday.  PS - I am not an IT person.  :)

    My Apple TV just has a white blinking light.  Will not turn off.  The TV shows nothing but the Apple logo.  It worked fine yesterday.  PS - I am not an IT person. 

    pull the plug for 30sec and try reconnecting power
    if that don't help
    Apple TV (2nd and 3rd generation): Restoring your Apple TV - Apple Support

  • HT201210 ipod just has a white screen

    ipod touch just has a white screen. Can't even get to unlock screen

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Safari flashes white boxes when loading pictures or video, distorts text

    Hi,
    I have Safari 3.1.2 and a lot of times when I look at a photo on a flickr page, when the photo loads it flashes these annoying white boxes everywhere. And when I watch a youtube video it will flash white sections on them. Also, when I'm scrolling through an article, the lines will double up and distort. If I restart my computer it will adjust to normal, but the after a while it will start up again. I've singled the problem down to Safari because Firefox does not have this problem. I guess I could just use Firefox and say sayonara to Safari? Any advice?

    I have exactly the same problem with browsers, iPhoto, and also text breaking up when scrolling up and down (in Mail, for instance). I also have a Macbook Pro (15", 2,4ghz, GeForce 8600M graphics).
    I have heard about people taking the unit back to Apple and having the graphics card replaced, and some people talk about it being a video driver issue, but this has been going on for me since at least 10.5.2 (that's when I first noticed it as a problem) and if it's a software problem it's taking a long time to fix it!

  • Can I prevent the rapid flashing which occurs when testing a Flash movie which has a syntax error?

    I teach games development using Flash Professional CS6, and one of my students has photosensitive epilepsy. He is finding that the 'strobing' effect which occurs when he executes Test Movie on a movie with errors in its script is triggering headaches which can be a precursor to a fit. Obviously this is making it very difficult for him to complete his lab and assignment work. Is there any way of preventing a Flash movie from running if it contains a syntax error?
    I have created a workaround by adding a bunch of extra frames to the start of the movie which will display a "SYNTAX ERROR" message if the script doesn't run - this gives my student a few seconds margin to quite the movie before the strobing begins. I have a single frame at the start with a goto statement which jumps over those error frames if the code doesn't have any syntax errors.
    This seems to be working ok, but it's an ugly solution - does anyone know of a better way to deal with this?
    Thanks.

    1.In Preferences you can check "open test-movie in tabs".
    2. Having done that you could write a jsfl-script which switches the focus (immeadiately after you test the movie) to another tab in the same register card, thus, forcing the possible "corrupt" testmovie in the background. If are no compiler errors , the testmovie can be made available by simply switching to the test-movie tab, if there are compiler errors, you can close it without having to look at it.
    Another option would be to setup FlashDevelop as compiler trigger of Flash.
    You have to change these basic properties in your project:
    FlashDevelop will only launch the test movie if it compiles flawless, inside Flash.
    FlashDevelop will act as a "bouncer" to Flash.

  • Can I prevent the rapid flashing which occurs when testing a Flash movie which has a syntax error in

    I teach games development using Flash Professional CS6, and one of my students has photosensitive epilepsy. He is finding that the 'strobing' effect which occurs when he executes Test Movie on a movie with errors in its script is triggering headaches which can be a precursor to a fit. Obviously this is making it very difficult for him to complete his lab and assignment work. Is there any way of preventing a Flash movie from running if it contains a syntax error?

    Ask in the Flash forums.
    Mylenium

  • Firefox 4 isn't turning the cursor to pointer mode when it goes over an object in a flash movie that has the 'buttonMode' property set to 'true'. Can this be fixed?

    I make flash games for a living, and normally when I set something to 'buttonMode' inside Flash, the cursor turns into the pointer when it rolls over the object. This is how it was in the previous version of FF and how it is in Safari and IE.
    But this isn't happening in FF4. The cursor is not turning into the pointer. Kind of a bummer. This is a tool so that the kids who play the games I make know when something is clickable.

    It seems to be an issue, I just posted the same question. I hope they fix it, its a bit annoying. I wonder if they had ex-Microsoft employees working on the updates for 4.0?

Maybe you are looking for