Why does Adobe Bridge and Lightroom not recognise some jpeg files?

I am trying to use Adobe Bridge and/or Lightroom to add tags to a large number of images that I have. However when adding images, almost 1000 of the 6900 images fail to import to the Lightroom gallery and the same images do not preview and will not let me edit their metadata in Bridge.
If this has happened to anybody else I would greatly appreciate some help.
Alternatively if anybody knows of other programs i can use to easily add tags to many many images please let me know =)
Samples of Files that work and files that don't:
http://files.filefront.com/FileSamplerar/;13605286;/fileinfo.html

I downloaded same, but the folder marked "Don't work" comes up empty.

Similar Messages

  • Why does the new operating system not delete the moved files from their original location - it seems like an enormous waste of space, time and effort to clean up every file once you've moved it

    Why does the new operating system not delete the moved files from their original locations - it seems like an enormous waste of space, time and effort to clean up every file once you've moved it - also, when transferring large amounts of files it becomes a very large problem remembering which files were transferred and which not.

    You're going to need to be more specific, as I'm not quite sure I understand what you're talking about.
    If you're referring to copying from an external hard drive or flash drive, and you want to actually move files rather than copy them, you can hold down the option key to force it to do a "move" rather than a "copy." This is not new behavior, though... the Mac OS has worked this way as long as I can recall (and I've been using it since 1984).
    If you're having a problem with trying to move files from one place to another on a single drive causing them to be copied instead, that is likely because of some permissions issue preventing you from actually being able to move them.

  • Why does iPhoto 9.4.3 not recognise RAW files from a Pentax K3 camera?

    Why does iPhoto 9.4.3 not recognise RAW files from a Pentax K3 camera? It does from a K7.

    Because it requires Mavericks - http://support.apple.com/kb/ht5955
    OS X Mavericks provides system-level support for digital camera RAW formats from the following cameras.
    Supported by Digital Camera RAW Compatibility Update 5.04*
    Fujifilm X-E2
    Fujifilm X-T1
    Nikon D3300
    Nikon 1 AW1
    Panasonic LUMIX DMC-GM1
    Pentax K-3
    LN

  • HT204370 why does my video and sounds not play at the same time when watching movies

    why does my video and sounds not play at the same time when watching movies

    Welcome to the unity.
    Upon which device are you watching your movies and are you using a home theatre system for your audio.

  • HELP! Why does my Drag and Drop not work Completely?

    Hello! I'm working on an ActionScript 3 movie clip in Adobe Flash. In the interactive movie I want the user to create a snowman with the parts on the left side. (Picture below.)
    On the right side I have the snowman slightly visible, so the user knows where to put the parts. Most of it seems to work... but after I put on the body, hat, and arms the other pieces don't work; like the eyes, nose, mouth, etc. Why does it not work? Can someone help me?
    This is how it should look at the end, when the user complets it.
    I think I coded this correctly. But I'm not sure. Please take a look at my code and see what the problem is. Thanks!!!
    var startX:Number;
    var startY:Number;
    var counter:Number = 0;
    SNOWMAN1_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    SNOWMAN1_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    SNOWMAN2_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    SNOWMAN2_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    SNOWMAN3_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    SNOWMAN3_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    LEFTARM_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    LEFTARM_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    HAT_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    HAT_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    RIGHTARM_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    RIGHTARM_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    SCARF_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    SCARF_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    EYES_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    EYES_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    MOUTH_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    MOUTH_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    CARROT_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    CARROT_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    COLE1_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    COLE1_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    COLE2_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    COLE2_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    COLE3_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    COLE3_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function pickUp(event:MouseEvent):void {
    event.target.startDrag(true);
    MYTEXTBOX.text = "";
    event.target.parent.addChild(event.target);
    startX = event.target.x;
    startY = event.target.y;
    function dropIt(event:MouseEvent):void {
    event.target.stopDrag();
    var myTargetName:String = "T" + event.target.name;
    var myTarget:DisplayObject = getChildByName(myTargetName);
    if (event.target.dropTarget != null && event.target.dropTarget.parent == myTarget){
    MYTEXTBOX.text = "Good Job!";
    event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
    event.target.buttonMode = false;
    event.target.x = myTarget.x;
    event.target.y = myTarget.y;
    counter++;
    } else {
    MYTEXTBOX.text = "Try Again!";
    event.target.x = startX;
    event.target.y = startY;
    if(counter == 13){
            MYTEXTBOX.text = "Congrats, you're finished!";
    SNOWMAN1_mc.buttonMode = true;
    SNOWMAN2_mc.buttonMode = true;
    SNOWMAN3_mc.buttonMode = true;
    LEFTARM_mc.buttonMode = true;
    HAT_mc.buttonMode = true;
    RIGHTARM_mc.buttonMode = true;
    SCARF_mc.buttonMode = true;
    EYES_mc.buttonMode = true;
    MOUTH_mc.buttonMode = true;
    CARROT_mc.buttonMode = true;
    COLE1_mc.buttonMode = true;
    COLE2_mc.buttonMode = true;
    COLE3_mc.buttonMode = true;

    Below is a more efficient code. I am not sure about chasing parents you do in the code (always bad idea) so this code may be buggy:
    var startX:Number;
    var startY:Number;
    var counter:Number = 0;
    // reference to currently dragged object
    var currentTarget:Sprite;
    var objectCollection:Array = [SNOWMAN1_mc, SNOWMAN2_mc, SNOWMAN3_mc, LEFTARM_mc, HAT_mc, RIGHTARM_mc, SCARF_mc, EYES_mc, MOUTH_mc, CARROT_mc, COLE1_mc, COLE2_mc, COLE3_mc];
    activateObjects();
    function activateObjects():void {
         for (var i:int = 0; i < objectCollection.length; i++) {
              currentObject = objectCollection[i] as Sprite;
              currentObject.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
              currentObject.buttonMode = true;
    function pickUp(event:MouseEvent):void {
         currentTarget = event.currentTarget as Sprite;
         currentTarget.startDrag(true);
         MYTEXTBOX.text = "";
         currentTarget.parent.addChild(currentTarget);
         startX = currentTarget.x;
         startY = currentTarget.y;
         stage.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function dropIt(event:MouseEvent):void {
         stage.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
         stopDrag();
         var myTarget:DisplayObject = getChildByName("T" + currentTarget.name);
         if (currentTarget.dropTarget != null && currentTarget.dropTarget.parent == myTarget){
              MYTEXTBOX.text = "Good Job!";
              currentTarget.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
              currentTarget.buttonMode = false;
              currentTarget.x = myTarget.x;
              currentTarget.y = myTarget.y;
              counter++;
         } else {
              MYTEXTBOX.text = "Try Again!";
              currentTarget.x = startX;
              currentTarget.y = startY;
         if (counter == 13) MYTEXTBOX.text = "Congrats, you're finished!";
         currentTarget = null;

  • Why does adobe bridge come on when I plug in my phone?

    when i plug my phone or ipod touch into the computer sync cable the photo downloader comes on (this i like) but also adobe bridge. How can I make it not do that?thanks
    kt

    You can do it.
    Un-check the box as described before, then connect your device(s) & open Image Capture from /Applications.
    Select each device in the left pane, & use the 'connecting this camera opens...' dialogue, choosing
    the Photo Downloader.app inside Bridge.
    First, open a Finder window & select your Bridge application. Right (ctrl) click it & choose 'show package contents'. Open the Contents/MacOS folder inside & locate Photo Downloader.
    When you use Image Capture  : choose 'Other...' from the list, then drag the Photo Downloader app from the Finder window onto the selection window that opens.
    The next time you connect the device, Photo Downloader should open (it does here), with a dialog window including the option to 'Open Adobe Bridge' which you will want to un-check.

  • Adobe id and password not recognised when sent from phone.

    I can access CC from PC, Laptop, and iTablet but not when using PS Touch on android phone -- although it has worked in the past. Now I get error that ID/pw not recognised by CC.
    Any ideas?

    Thanks for the interest. I don't know how to provide screen shot from phone. Message says "The Adobe ID and password do not match. Please try again"
    Using Samsung Gallaxy III, Android ver.4.3, Baseband ver. i535VRUCML1, Kernal Ver. 3.0.31
    Tried it many times -- reinstalled app --re-typed password (which works from PC, Laptop, and iPad)
    Any ideas greatly appreciated.
    Thanks

  • I am a CC subscriber, why does Adobe insist I am not?

    I'm a creative cloud use since august 2014. I paid for 1 year up front. Today I tried to download a file from Creative Cloud Market and I got a message telling me these files are only available to Creative Cloud Subscribers. What??? I pay over €1000 a year, what does Adobe expect from me?

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Why do Adobe Reader and Flashplayer not install

    I download bot Adobe Reader and Flshplayer installers to my hard drive then run the installer file.  Get promped for permission to run.  The installer seems to start and the installer file gets removed from the hard drive but neither product installs?   Looking in Task Manager, the installer stays there (forever).  This is windows Vista, 32 bit

    The Flash Player installers from my link also have different names from the AIH installers.  Here are the direct download links
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)

  • Ipad not showing some jpeg files

    My i pad is not showing some of jpeg files received on mail as attachment,  these are being displayed completely blacked out , i have also tried saving them on ipad and then tried opening them with other apps also but same result !!!!??? However the same files are properly displayed when i see them on pc or on my blackberry .... Can somebody help me find out what is the issue and how can it be resolved??

    salma15 wrote:
    why is my ipad not showing some music icons?
    You are speaking about album art I assume? Is the album art in iTunes on your computer?
    Like some of them do have them and some of them dont also my computer ad ipad doesnt have the same music
    Probably because all of the Music wasn't selected to sync from iTunes. When the iPad is connect to iTunes on your computer, you can select Sync Entire Library in the Music Tab of iTunes if you want all of your music on the iPad.
    Take a look at this.
    http://support.apple.com/kb/ht1351
    this one might help as well.
    http://support.apple.com/kb/PH12313

  • Iphoto will not import some jpeg files after many attempts to 'fix"

    I have scande images into my iphoto until i updated to iphoto 9. now it does not import jpeg for some reason. some jpegs are more equal than other how ever some go in some do not. So what is wrong with iphoto 9 and do i need to reset some profile something somewhere.
    mac book pro 17 standard edition no mods 2.6 intel core 2 duo 4 gigs memory 1067 mhz ddr3
    files are saved to desk top folder as a jpeg in either color or black and white using the system Image Capture software.
    1) the error is -20
    2) i tried importing some old files in and out they seem to work
    3) shut down restarted and tried again no joy with the scanned images
    4) all images are openable by preview and can be changed to tiff
    5) iphoto allows tiff in but not the jpeg or any kind
    6) upgraded to iphoto 9 and this started is there a profile file i should through away and what is the implications of doing this ? i have many thousands of photos i do not want to lose.
    i need to use jpeg format for my family and work.
    any suggestoins.
    7) rand disk permission repair from install disk no problems
    8) should i start in safte mode and do a PR reset.

    1 - iPhoto does not accept grayscale images - they must be RGB even if the photo is B&W
    2 - sometimes opening a photo in preview and doing a save as and then importing the new JPEG will resolve this type of problem
    LN

  • Why does Adobe 9 and Windows 7 Internet explorer not play well?

    I just upgraded to Windows 7 and Adobe 9 came with the software package for new computer. Everytime I try to download a pdf file from Internet explorer it times me out and I end up with an error message   "there is a problem with Adobe Acrobat/Reader. Please close and try again later."  and no pdf. Explorer closes and I have to try again all over again.
    Any help out there would be great 

    Unfortunately, you have posted to the Forum Comments forum. You need to post to the Acrobat Reader forum, assuming that you are talking about Reader, otherwise post to the Acrobat Pro forum.
    Good luck,
    Hunt
    [Edit] John beat me to the URL - thanks John T.

  • Why does Adobe Reader and Adobe Flash player keep installing McaFee Security Scan on my system?

    Whenever I install the Adobe Flash player or Adobe Reader on my system, it downloads and installs McAfee Security Scan Plus at the same time. It does not ask if I want it or not, it instead forces it on me, so I have to then unistall it. I've unistalled it 3 or 4 times in the last week. I DO NOT WANT MCAFEE PRODUCTS on my computer!
    Please make this an option, give the users a choice so we don't have to keep removing the stupid thing.

    Did you 'Uncheck" the relevant box pointed by the red arrow ? If not you accepted the installation with McAfee.

  • Why does Adobe think I'm not in the US?

    I'm trying to buy a Creative Cloud subscription and when I click buy now  I get a this messages: (I'm in Spokane, Washington, United States of America)
    Creative Cloud Membership isn't currently offered in your country or region (Wallis and Futuna), but if you like, we can notify you when it becomes available. If you no longer live in this country or region, login to update your account or create a new Adobe ID for your current country of residence. For a list of countries in which Creative Cloud is available, please visit our Tech specs and Language availability page.
    I tried in Chrome and Firefox on a Windows 7 PC. I use Comcast Cable Internet.

    Hi there
    The country associated with your Adobe ID is Wallis, Futuna.
    We don't have the option of changing the country, but if you wish to set up a new Adobe ID using the same email address please follow the workaround given here - https://helpx.adobe.com/x-productkb/policy-pricing/change-country-associated-with-adobe-id .html
    Thanks
    Bev

  • Why is my iPad and iPod not recognising connection to bt keeps noting not connected and to check incoming mail server what is that all about?

    I have upgraded to bt hub 4 but my iPod picks up a full signal then when opening safari it says cannot open as there is no connection but iPod showing full connection. I have upgraded to the latest software  can anyone help pleas ?

    Does the iOS device connect to other networks?
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                 
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

Maybe you are looking for

  • Unable to activate Genius

    I am unable to activate Genius since upgrading to Windows 7. Prior with Vista and iTunes 9 Genius worked fine. Upgrade to Win7 and I cannot activate Genius. It goes through step 1 fine then goes into step 2. It pops up an error message after about a

  • How to Install Solaris 10 on Sun Server

    Dear All, Can any one help me to Install Solaris 10 on Sun Server. Or if you guys can suggest me which document i can refer for Solaris 10 installation. Thnaks in advance to all. Rgds, Shrinet

  • Pass values from report1 to report2 but without displaying the web element

    Need to pass a string value from report1 to report2.This can be done by using web elements. But in that case the web element is showing up when we run report1.So what is the way to avoid display of web element but still pass the value to report 2. Th

  • Analytic Services failed to register product at Shared Services

    We have OAS as our App Server and created a OC4j instance for HSS. We then installed Essbase,registered with HSS and externalized the users to HSS. Also installed EAS along with it. However launching Essbase we get the following error message "Analyt

  • Old Feature Phones

    I was wondering if anybody knew or had a list of phones that could be used as a feature phone? I don't want to pay $9.99 a month for any data plan but want a new phone. So i wanted to look into buying an older phone off of amazon or ebay. Currently i