"Cannot find movie..." alert message

Everytime I open iphoto 6.06 I get an alert saying "cannot find such and such a movie." Whether I hit cancel or find movie I get the rainbow death wheel and have to force quit the application. My iphoto library is stored on an external networked drive, but I've had this trouble even when the library has been on my computer. Any ideas?

alhagar
You deleted them using the Finder right?
Well, unfortunately, no there isn't. You'll need to make a new library:
Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums back.
Regards
TD

Similar Messages

  • How can I open my file after 'cannot find -filename-' error message?

    OK, the bottom line is, InDesign crashes and I cannot recover my file. I get a 'Cannot find file' error message when I try to open the file.
    I am using CS6 on a MacBookAir, OS X Yosemite.
    I have tried finding the 'InDesignFileRecovery' folder, I cannot find it anywhere, it's not in my Library or Caches folder.
    However, I do work in dropbox, so I just headed over to dropbox to recover from their 'previous versions'. It starts to get weird. There are lots of previous versions (I save very regularly) but when I download a previous version (that I know was fine) it downloads with a indd.txt extension. So I remove the txt extension and keep the indd and everything looks fine, but then that recovered file gives the same message. I tried renaming the recovered file and opening that, same 'cannot find file' error message.
    I can open InDesign and open the file from the day before, but none of the dropbox earlier versions of that day's work. I am SO sick of this happening. It happened to me last week to, so far I have lost 20 hours work :-(
    I have tried quitting InDesign and restarting the Mac, doesn't help. The only thing I can think of is to 'save as' every couple of hours, at least then hopefully I only lose 2 hours work.

    Thanks, when you say 'hidden by default' then how does one find it? I have already tried the path you mention and there is no sign of a cache folder with Adobe files. Spotlight doesn't reveal anything either.

  • How do I resolve the "Mozilla cannot find runtime" error message when I try to start Firefox?

    Mozilla Firefox updated to version 36.0. When I click on the Firefox icon to open it I receive the message: "Mozilla cannot find runtime" I receive the same message if I try to open Firefox by selecting "firefox.exe" from within the Program Files. I subsequently uninstall Mozilla Firefox and reinstall it. It will open and run normally right after the re-installation. Then if I close the program and try to re-open it again, I get the same "Mozilla cannot find runtime" error message.
    The only way I can get Firefox to open is if I uninstall and re-install it every time I want to open it after the initial re-installation.

    ''sage68 [[#answer-700841|said]]''
    <blockquote>
    Hi Adriel,
    The "Mozilla cannot find runtime" problem has returned. It occurs in two situations:
    1. When Firefox tries to download updates using "updater.exe" (version 36.0.0.5531), which causes my "Norton Internet Security" program to notify me with the message: "Auto-Protect has removed security risk Suspicious.Cloud.9.B" This message is shown every time "updater.exe" activates.
    </blockquote>
    I also have experienced this during several upgrades, not just the latest. (I am using Windows XP and Norton Security Suite.) Norton identifies c:\program files\mozilla firefox\updated\xul.dll with the Suspicious.Cloud.9.B virus and removes the file. I can set the Norton installation to accept xul.dll but it would make more sense for a Mozilla expert to contact Norton and work out a permanent solution, for all who are facing this problem.

  • "Cannot find Symbol" error message

    I have a "cannot find symbol" error message on line 5 below in
    the driver class.
    Thank you for your assistance
    1 public class GameLauncher
    2 {
    3  public static void main(String[] args)
    4 {
    5   GuessGame game = new GuessGame();
    6   game.startGame();
    7 }
    8}
    public class GuessGame
      public void startGame()
      Player p1;
      Player p2;
      Player p3;
      int guessp1 = 0;
      int guessp2 = 0;
      int guessp3 = 0;
      boolean p1isRight = false;
      boolean p2isRight = false;
      boolean p3isRight = false;
      int targetNumber = (int) (Math.random() * 10);
      System.out.println(" I'm thinking of a number between 0 and 9....");
      while(true)
        p1.guess();
        p2.guess();
        p3.guess();
        guessp1 = p1.number;
        System.out.println("Player one guessed " + guessp1);
        guessp2 = p2.number;
        System.out.println("Player two guessed " + guessp2);
        guessp3 = p3.number;
        System.out.println("Player three guessed " + guessp3);
        if (guessp1 == targetNumber)
          p1isRight = true;
        if (guessp2 == targetNumber)
          p2isRight = true;
        if (guessp3 == targetNumber)
          p3isRight = true;
        if ( p1isRight || p2isRight || p3isRight)
          System.out.println("We have a winner ! ");
          System.out.println("Player one got it right? " + p1isRight);
          System.out.println("Player two got it right? " + p2isRight);
          System.out.println("Player three got it right? " + p3isRight);
          System.out.println("Game is over ! ");
          break; //game is over so break out of loop
        else
          //we must keep going because no one guessed the number !
          System.out.println(" Players will have to try again ! ");
        } // end of if/else
      } // end of loop
    } // end of startGame() method
    } //end of class
    public class Player
      int number = 0;   // the guess is stored here
      public void guess()
        System.out.println(" I'm guessing " + number);
    ---------------------------------------------------------------  

    Thank you . You were right . I didn't set up the classes correctly.
    I corrected a few other errors and the program runs ok !
    Below is the corrected code and the output
    public class GameLauncher
      public static void main(String[] args)
       GuessGame game = new GuessGame();
       game.startGame();
    /* One possible set of output is
    I'm thinking of a number between 0 and 3....
    I'm guessing 1
    I'm guessing 3
    I'm guessing 0
    Player one guessed 1
    Player two guessed 3
    Player three guessed 0
    We have a winner !
    Player one got it right? true
    Player two got it right? false
    Player three got it right? false
    Game is over !
    public class Player
      int number = 0;   // the guess is stored here
      public void guess()
        number = (int)(Math.random() * 4);
        System.out.println(" I'm guessing " + number);
    public class GuessGame
      public void startGame()
        int x = 0;
      Player p1 = new Player();
      Player p2 = new Player();
      Player p3 = new Player();
      int guessp1 = 0;
      int guessp2 = 0;
      int guessp3 = 0;
      boolean p1isRight = false;
      boolean p2isRight = false;
      boolean p3isRight = false;
      int targetNumber = (int) (Math.random() * 4);
      System.out.println("\n I'm thinking of a number between 0 and 3....\n");
      while(x <5)
        p1.guess();
        p2.guess();
        p3.guess();
        guessp1 = p1.number;
        System.out.println("\nPlayer one guessed " + guessp1);
        guessp2 = p2.number;
        System.out.println("Player two guessed " + guessp2);
        guessp3 = p3.number;
        System.out.println("Player three guessed " + guessp3);
        if (guessp1 == targetNumber)
          p1isRight = true;
        if (guessp2 == targetNumber)
          p2isRight = true;
        if (guessp3 == targetNumber)
          p3isRight = true;
        if ( p1isRight || p2isRight || p3isRight)
          System.out.println("\nWe have a winner ! ");
          System.out.println("Player one got it right? " + p1isRight);
          System.out.println("Player two got it right? " + p2isRight);
          System.out.println("Player three got it right? " + p3isRight);
          System.out.println("Game is over ! ");
          break; //game is over so break out of loop
        else
          //we must keep going because no one guessed the number !
          System.out.println(" Players will have to try again ! ");
        } // end of if/else
        x = x + 1;
      } // end of loop
    } // end of startGame() method
    } //end of class 

  • Cannot play movie error message

    I am trying to stream off the bbc iplayer via wi-fi onto my ipod touch.
    It keeps coming up with the error message 'Cannot Play Movie'.
    Any ideas please??

    That means that the dock is not HDCP complient..
    HDCP stands for High-Bandwidth Digital Content Protection and was developed by Intel Corporation. It's nothing more than a security feature requiring compatibility between the sender and receiver, like HD cable set-top box and the TV. By compatibility, I mean HDCP technology built into both devices.
    Think of HDCP as a security license key like you would input when installing a computer program. Only this security key is invisible to you and me but not your TV.
    http://tv.about.com/od/hdtv/a/hdmidvihdcp.htm

  • Cannot find movies in itunes on ipad

    i have syncronised movies from my itunes library on my computer to my ipad but then cannot find them.
    please help

    How many movies are listed on the device under Settings > General > About ? i.e. does that figure agree with what you think the number should be ?
    Also have you tried a reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Cannot find movie that I downloaded

    I downloaded a movie and I cannot find it....it was in the download window now it is gone.......I tried downloadeding it again and it wont let me.  tells me it has been downloaded.

    Were you downloading the movie on an iOS device?
    If you can't find the movie you downloaded on your iPad, iPhone or iPod Touch, check inside your Videos App

  • I am a CS6 user. Recently I find an alert message telling something is missing whenever I launch AE. So I just try to uninstall the CS. Before reinstall, I have run the CS cleaning tool. Finally most of the application cannot be installed successfully. I

    BELOW IS THE ERROR DETAILS
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DF012, DF024 ... WARNING: DF029, DF054 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 16 error(s), 7 warning(s)
    ----------- Payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 -----------
    WARNING: DF029: ARKServiceControl::StartService: Service not started/stopped SwitchBoard. Current State: 0 Exit Code: 0 Service Specific Exit Code: 0(Seq 1)
    ----------- Payload: {8085C16A-3148-40B4-BC8B-12ED59C9C478} Recommended Common Fonts Installation x64 2.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Windows\Fonts\BrushScriptStd.otf'(Seq 22)
    ERROR: DF012: Unable to find file(Seq 22)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\BrushScriptStd.otf" Error 32 程序無法存取檔案,因為檔案正由另一個程序使用。(Seq 22)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 22)
    ----------- Payload: {63594DD4-0241-422A-93A5-B6530040E1C7} Required Common Fonts Installation x64 2.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Windows\Fonts\AdobeArabic-Regular.otf'(Seq 7)
    ERROR: DF012: Unable to find file(Seq 7)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\AdobeArabic-Regular.otf" Error 32 程序無法存取檔案,因為檔案正由另一個程序使用。(Seq 7)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 7)
    ----------- Payload: {DE7C6FA1-AF75-48A8-B495-CFAD529BCC3D} Recommended Common Fonts Installation 2.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Windows\Fonts\BrushScriptStd.otf'(Seq 21)
    ERROR: DF012: Unable to find file(Seq 21)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\BrushScriptStd.otf" Error 32 程序無法存取檔案,因為檔案正由另一個程序使用。(Seq 21)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 21)
    ----------- Payload: {311CDC89-AC18-4344-9EC9-0225328C73D3} Required Common Fonts Installation 2.0.0.0 -----------
    WARNING: DF054: Unable to read Adobe file version for file path 'C:\Windows\Fonts\AdobeArabic-Regular.otf'(Seq 6)
    ERROR: DF012: Unable to find file(Seq 6)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\AdobeArabic-Regular.otf" Error 32 程序無法存取檔案,因為檔案正由另一個程序使用。(Seq 6)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 6)
    ----------- Payload: {CA7C485C-7A89-11E1-B2C8-CD54B377BC52} Adobe Fireworks CS6 12.0.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS6\payloads\AdobeFireworks12-mul\OEM(Seq 2141)
    ----------- Payload: {89687707-7A92-11E1-A6FA-922C5FF2EC7B} Adobe Fireworks CS6_AdobeFireworks12zh_TWLanguagePack 12.0.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS6\payloads\AdobeFireworks12zh_TWLanguagePack\OEM(Seq 77)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Required Common Fonts Installation: Install failed
    ERROR: DW050:  - Required Common Fonts Installation x64: Install failed
    ERROR: DW050:  - Recommended Common Fonts Installation x64: Install failed
    ERROR: DW050:  - Recommended Common Fonts Installation: Install failed

    Nhlai either the file permissions for several of your fonts have been compromised or the files themselves have been damaged.  I would recommend removing any installed Adobe Creative applications and then removing the damaged fonts referenced in the installation log file.
    For information on how to locate and interpret the installation log files please see Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • "cannot find origional file" message

    i have the "origional file cannot be found" message popping up for most of the songs on my itunes which i added from cds.. i do have an automatic backup on my computer but it was getting filled up so i went into the backup memory and deleted some of the un-updated music files so i would have enough room to make a new full backup. thats when the "origional file cannot be found" message started popping up. but i cant find the files! it took me a really long time to organize all my music and i still have the right organization on my itunes, just when you go to listen to most of the songs i get the message. is there any way to find the files which are "missing?" someone please help me!!

    i have the "origional file cannot be found" message popping up for most of the songs on my itunes which i added from cds.. i do have an automatic backup on my computer but it was getting filled up so i went into the backup memory and deleted some of the un-updated music files so i would have enough room to make a new full backup. thats when the "origional file cannot be found" message started popping up. but i cant find the files! it took me a really long time to organize all my music and i still have the right organization on my itunes, just when you go to listen to most of the songs i get the message. is there any way to find the files which are "missing?" someone please help me!!

  • Cannot find movie half watched

    cannot resume watching The Conjure after renting the movie

    Were you downloading the movie on an iOS device?
    If you can't find the movie you downloaded on your iPad, iPhone or iPod Touch, check inside your Videos App

  • Cannot find movie in Imovie in any drive?

    Movie plays well in Imovie but I can't find the specific file for it. I'm fairly certain that it's in a large folder on the external drive but when I copied it to the internal, and set the external folder in the trash, and tried to open it in Imovie it said it couldn't open it because it was in the trash.
    I changed the name of the project from the name of the big folder to another name about 3/4 of the way through editing.

    if you can get it open by any method, Save As... to another project.
    - gws

  • Firefox worked briefly but now I get xul cannot find application.ini message and it will not start. Tried reinstalls.

    Love Firefox but now it will not open. When I try to open it, I get an error message that xul can't find the application.ini.
    == This happened ==
    Every time Firefox opened
    == two days after I installed it. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; GTB6; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    Hello.
    Hopefully this support article is what you need:
    https://support.mozilla.com/en-US/kb/Firefox+will+not+start
    In any case, it's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem is not disappears when all add-ons are disabled, please tell me, so we can work from there.

  • Cannot find created Alert monitor in RZ20 being asigned to any moni context

    Dear colleagues!
    I have created my own monitoring object in rz20 (of virtual type).
    But I cannot see It in any so called monitoring contexts -> segments.
    Example: there is one monitoring segment on each instance:
    SAP_CCMS_<hostname>_<SID>_<ID>
    And several monitoring contexts which assigned to that segment.
    How & where can I find my own monitoring object to be asigned to some context?
    Please help!
    Best Regards,
    Ivan

    Hi,
    Try adding faces string after your context root when you request a page.
    That is :
    http://<host>:<port>/<context-root>/faces/<what-ever.jsp>
    -Amol

  • After installing update I have the "cannot find original file" message

    After installing the latest version of iTunes to my pc today, the vast majority of my songs have a message "The song XX could not be used because the original file could not be found.  Would you like to locate it?"  Yes I would!  Any help much appreciated.

    The "missing file" error happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, one of its parent folders, or the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout, or vice-versa, and so is looking in slightly the wrong place. (In the case of a library moved from one system to another there are also potential permissions issues. See Repair security permissions for iTunes for Windows if this might apply.)
    Select a track with an exclamation mark, use Ctrl-I to Get Info, then click No when asked to try to locate the track. (Due to a bug in iTunes 12 you currently have to say No twice!) Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, a folder renamed, or a drive letter has changed, it should be possible to reverse the actions. If the difference between the two paths is an additional Music folder in one path then this is a layout issue. I can explain further if that is the case.
    In some cases iTunes may be able to repair itself if you go through the same steps with Get Info but this time click Locate and browse to the lost track. It may then offer to attempt to automatically fix other broken links. Although it says something like "use the same location" it expects to find the tracks in the same artist & album layout that it generates, not all in one big folder.
    If another application like Windows Media Player has moved/renamed the files then the chances are that subtle differences in naming strategies will make it hard to restore the media to the precise path that iTunes is expecting. In such cases, as long as the missing files can be found somewhere, you should be able to use my FindTracks script to reconnect them to iTunes. See this post for an explanation of how it works.
    tt2

  • IMovie-cannot find movies on gallery.

    After upgrading to ios6, iMovie projects (new and existing ones) are not synchronizing with movies that are in the gallery. When I try to search for that movies on iPad via iMovie, it appears an error. How can I solve this problem?

    How many movies are listed on the device under Settings > General > About ? i.e. does that figure agree with what you think the number should be ?
    Also have you tried a reset ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Maybe you are looking for

  • HT1414 Switching on I get an iTunes, blue,circular logo and an usb plug pointing to the logo?

    When I try to switch on my iPad I do not receive the usual password window instead I receive an iTunes blue, circular logo in the centre of screen with an USB plug and cable pointing to the logo?

  • Integrate Upload Videos

    I have a client who would like to upload video as part of their database records. What I would like to do is to have CF incorporate that video, (wmv) into a Flash SWF file that is precreated on the public side. Can anyone direct me to some tutorial o

  • Is there any option of hiding ( no display)  a field from the output list.?

    Hi,    i have a requirement where  i should not be display the field in the output but need to use the field in the write stmt . example : write : / itab-field1 ,              itab-field2. but in the output list i dont want the field 2 to be dispalye

  • Scrollbar width

    I'm new to this board, and so forgive me if I haven't looked deep enough in the archives, but anyone here know if there is a way of setting the width of a scrollbar? I see how to change the colors, et cetera, but I was looking to get a scrollbar on m

  • Parse html (a href) using regex

    Hello, i would like to extract all the urls from a website that are included in < a href=" parse string"> I have already the regex which is String regex = "< *a.*href *= *['|\"]"; May you please advise me which method in Pattern or Matcher classes sh