Why does Lightroom not see my teathered camera in Windows 8?

When I teather my Nikon D300 in Lightroom 4, It seem as the Windows 8 operating systems takes over the function and Lightroom does not automatically open captured image.  Instead, Windows' picture window appears.  I have not been able to figure out how to override the windows function so that Lightroom opens the captured image.  Need Help!!!

Where is that in the menu...couldn't locate it?
Sent via the Samsung Galaxy S™III, an AT&T 4G LTE smartphonessprengel <[email protected]> wrote:Re: Why does Lightroom not see my teathered camera in Windows 8?
created by ssprengel in Photoshop Lightroom - View the full discussion
Also make sure you have your camera set to Point-to-Point not Mass-Storage mode:
Menu/Wrench/USB/'M/P'
Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5226836#5226836
Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5226836#5226836
To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5226836#5226836. In the Actions box on the right, click the Stop Email Notifications link.
Start a new discussion in Photoshop Lightroom by email or at Adobe Community
For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Similar Messages

  • Why does lightroom not display photos ?

    Hello,
    all of a sudden lightroom tells me "no photo selected " when I try to open a folder.All the folders are visible but the photos cannot be displayed.I am using lightroom 4.1
    The last editing was done less then 12 hours ago without any problems.
    Your help would be much appreciated.
    Thank you very much,
    1journey

    Thank you so much for your reply.I solved the problem after fretting over it for some time. A filter was not turned off and once I turned it off all was well. Live and learn.
    Thank you kindly ,
    nihonbashi
    Date: Sun, 10 Nov 2013 08:54:35 -0800
    From: [email protected]
    To: [email protected]
    Subject: why does lightroom not display photos ?
        Re: why does lightroom not display photos ?
        created by F. McLion in Photoshop Lightroom - View the full discussion
    Does it show an image count on the folders in the folder panel?
    What does show if you select a folder in library?
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5830261#5830261
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5830261#5830261
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5830261#5830261. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Lightroom at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Why does Lightroom not have custom keyboard shortcuts?

    Lightroom is a workflow app. It's not just about raw conversion, which could be done in ACR, but about speeding up the whole process of selecting, editing and cataloging photos. 
    It seems to me that out of all Adobe apps, Lightroom is the one which should have customisable keyboard shortcuts.
    I've been using lightroom since shortly after it came put and I've been using the open-source plug-in keyboard customizer Paddy for several years which works okay at the moment. Each lightroom release breaks Paddy in some way and it's not as smooth as it could be if it was built in. Even so, I estimate I'm 2-10 time faster editing many photos with paddy than I would be without.
    I know that even adobe's resources are limited, but adding keyboard shortcuts should be easy, certainly compared to re-verse engineering RAW file formats or fixing complex lens distortions!
    At this point it seems clear that Adobe are choosing not to let us customise keyboard shortcuts. I'm not trying to change their mind, but I really want to know w
    It perplexes me, why don't Adobe add what seems liek a simple feature which could speed up Lightroom use by an order of magnitude???

    On Victoria Bampton's website she has a downloadable PDF file named "Adobe Lightroom 5 Windows Keyboard Shortcuts." (Windows, not sure about Mac). Its about 12 pages long. I assume that this is what you are looking for. www.lightroomqueen.com.

  • HT201413 Why does iTunes not see my iPod when connected?

    My computer does not see my ipod when I connect it to it.  Nor does it come up in iTunes.  How can I sync my music with this problem going on?

    Try one or more of the following:
    > Restart your computer
    > Uninstall & Reinstall iTunes
    > Reset iDevice Settings (will not delete everything)
    > Go to My Computer (Windows XP) or Computer (Windows Vista & 7) and see if your iDevice shows (should show as a digital camera)
    > Restore iDevice completely (will delete everything)
    > Make sure both iTunes and iOS firmware is Up-To-Date
    iPod Classic driver not recognized in Windows 7. Tried to "troubleshoot," message says "Not Fixed." No recommendations - Microsoft Answers
    iPod not recognized in 'My Computer' and in iTunes for Windows
    Hope this helps.

  • Why does Find not see a visible file at Volume level?

    I recently searched (Find) my iMac's internal hard drive for a file that I knew I had created ("MAC addresses.doc"), but it found no such file, either by File Name or Contents. I had to try to remember where I filed it, and then I found it in [Macintosh HD] > Library > Documentation > User Guides and Information. Searching (Find) again at the level of any folder within the volume, even Library, finds the file immediately, both by File Name and Content. The file has no unusual properties, and its Permissions allow everyone to at least Read it. This occurs even after repairing permissions of the volume. Why should the OS be unable to Find this file for me when searched on the volume name? Should I change some setting/preference in order to allow that (all files to be found at Volume level)?

    Thanks Frank,
    SYSTEM_PARAMETER is a table owned by X.  If I qualify the select statement by adding the owner it works, but of course I do not want to do that.  Here is the DDL for creating SYSTEM_PARAMETER:
    create table SYSTEM_PARAMETER
      name         VARCHAR2(256) not null,
      date_value   DATE,
      number_value NUMBER,
      string_value VARCHAR2(512),
      comments     VARCHAR2(512)
    alter table SYSTEM_PARAMETER add constraint PK_SYSTEM_PARAMETER primary key (NAME);
    Again, if I rewrite the procedure to the following (only difference is the red X.), it works:
    create or replace  procedure ztm_get_debug_level is
      vc_pkg_name  system_parameter.name%TYPE := 'DEBUG_LEVEL_PKG_BASE_KEYS';
      vn_error     services.debug_log_level.debug_level_id%TYPE := 30;
      v_debugLevel   system_parameter.number_value%TYPE;
      function get_owner return varchar2 is
        cursor c1 is
        select owner from all_tables where table_name = 'SYSTEM_PARAMETER';
        v_Ret_Val VARCHAR2(30);
      BEGIN
        OPEN C1;
        FETCH C1 INTO v_Ret_Val;
        CLOSE C1;
        RETURN v_Ret_Val;
      END;
    begin
      DBMS_OUTPUT.PUT_LINE('AAAA - ' || get_owner);
      select s.number_value
      into   v_debugLevel
      from   X.system_parameter  s
      where  s.name = vc_pkg_name;
      DBMS_OUTPUT.PUT_LINE('BBBB');
    exception
      when no_data_found then
        NULL;
      when others then
       DBMS_OUTPUT.PUT_LINE('p_get_debug_level.WHEN OTHERS');
       raise;
    end;
    This procedure exists in 4 other environments where there are no issues.  It can't be a privileges issue as the table is owned by user X and as you can see by the lookup (which was added for debug) against ALL_TABLES the owner is clearly X.  So, why can X not select from it's own table unless we include the owner?
    Thanks,
    Thomas

  • Why does Lightroom not update all my previews after a batch change?

    Hi!
    I imported more 2,000 pictures. Then I did one batch change (adjusting the curve (tonality) by Lightroom).
    But it looks like, only on the page, I actually see, the previews are updated.
    If go to the next page of 24 pictures. At first I see the old preview. Then the CPU and hard drive activity is increasing and picture by picture the preview is updated. So I've to wait 15 seconds, until I can decide, if the settings of the pictures are a good start or not. And then I've to page again and wait 15 seconds
    I expect, that Lightroom does it:
    in background
    in parallel and not only one picture by picture (15 seconds are cause by sequencially processing; I've an Intel i7 with 4 cores and 3.6 GHz, it's not the slowest machine, but Lightroom only use up to 25% of my whole CPU resources :-( )
    Sorry, but I do not understand, how I should be able to handle a mass of pictures, if I have to page and wait always.
    Is there any magic shurtcut, command, setting, to enforce such an auto update?
    Thanks a lot!

    Dunno whether this would offer sufficient improvement or not:
    It doesn't automate preview generation, but does give a button (2 actually) for quick-building of previews.
    OttoMate
    PS - Adobe did provide a function in Lr5.2 SDK for building previews, unfortunately the fine print taketh away too much of what the big print giveth (e.g. doesn't work in develop module), so not viable for auto-preview generation, yet.
    ~R.

  • Why does Finder not see files on formatted DVD-RW?

    I recently did a drag and drop of more than 90 text and pdf files onto a formatted DVD-RW.  The DVD now shows up as a blank disc.  I swear that I managed to add a couple of files and see them in Finder at least twice.  How do I get back into the files?  Disc was formatted for RW using Disc Utility which still sees the 1.7 GB of data on the disc in Info.  What happened? 

    Thanks Lex:
    I don't think Invisible will help.  Because I left the DVD-RW open after dragging and dropping files onto it there is no lead-out and the optical drive sees it only as a blank disc.  Somehow I got back into the disk before but since the last OS update 10.8.4 I am unable to get the disc to mount.  Seems I remember Bonjour finding and opening it once.  Nothing since.  Right now I'm leaning toward recreating the archive disc and then closing it as a data disc so I can mount it.  I recall doing this open RW in years past so I could continually add other files until the disc was full.  Protocols must have changed.  Bob Mehaffey

  • Why Does Java not see 0 or 1 as false and true

    hello,
    all other languages i have worked with see a 0 and 1 as a true or false value
    for instance...in perl this would be the case
    if ( 0 ) same of javas if ( false )
    or
    if ( 1 ) same as javas if ( true )
    same with javascript
    im am asking if there is a way in java to use the boolean type or object in this way. seems strange to me to store "true" or "false" as a varchar in a database when with all other languages you can store 0 or 1...faster to store int's

    Many of the differences the creators of Java made in the language were to address what they saw as problematic features in other languages. This is one of those cases.
    How many nasty, hard-to-find bugs in C or Perl do you think have been caused by this kind of mistake: int cnt ;
    cnt = howMany() ;
    if (cnt = 0)      /* whoops: should be == */
    [/code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • ITunes says 3.2.2 is current for iPad. Why does it not see the new 4.2

    My computer is running Vista. I have been using the newest iTunes 10.1.0.54 for a while now, but when I plug my iPad in, iTunes tells me that my iPad is up to date with 3.2.2.
    Can anyone shed some light on why it's saying this. I have no other way of downloading the new OS?

    If history is to be trusted, it should hit at roughly noon my time (central). So 10:00 by Cupertino time. Sorry, I don't know about UK time zones. I would say 8 more minutes, give or take an hour.

  • Why does displaydriver not work on my G530 with windows 7 64bit?

    Hi,
    I installed my Windows 7 64 bit and all driver works except the displaydriver. Does anyone know how to solve the problem? Following messages comes by trying to install the existing driver from Lenovo:
    http://img691.imageshack.us/img691/4537/fehlermeldungz.jpg
    http://img693.imageshack.us/img693/8244/fehlermeldung2.jpg
    http://img716.imageshack.us/img716/5597/systeme.jpg
    I don`t know what to do. It`s not possible to change the brightness of my display.
    Thank you for helping
    Christoph
    p.s.: does anyone know how to post pictures directly?

    I downloaded the driver here: http://consumersupport.lenovo.com/en/DriversDownloads/drivers_list.aspx?CategoryID=10 There is a 64bit driver and I tryed to install it. Than the popup I already posted came on my screen. I also checked Nvidia and Microsoft Update, but they always say I need special driver for Hotkeys and so on from Lenovo. ahrgh...what can I do?
    Thanks for helping me

  • Why does Lightroom CC fail to launch on two windows 7-64 machines?

    I'm in the process od updating two Windows 7-64 machines from Lightroom 5.7 to CC. It asks if I want to let the program open and I give permission. It will stat loading and then just quits on both machines.

    first try, http://helpx.adobe.com/photoshop/kb/cc-applications-crash-immediately-launch.html
    if that doesn't help:
        Un-install Photoshop CC.
        Un-install Adobe CC.
        Go to: C:\Program Files (x86)\Common Files\Adobe and find SLCache and delete it.
        Go to: C:\ProgramData\Adobe and find SLStore and delete it.
        Restart.
        Install Adobe CC.
        Install Photoshop.
        Restart.

  • Why does iPhone not update photos

    Does anyone know why iPhone will not update from PC using latest iTunes?

    Thank you so much for your reply.I solved the problem after fretting over it for some time. A filter was not turned off and once I turned it off all was well. Live and learn.
    Thank you kindly ,
    nihonbashi
    Date: Sun, 10 Nov 2013 08:54:35 -0800
    From: [email protected]
    To: [email protected]
    Subject: why does lightroom not display photos ?
        Re: why does lightroom not display photos ?
        created by F. McLion in Photoshop Lightroom - View the full discussion
    Does it show an image count on the folders in the folder panel?
    What does show if you select a folder in library?
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5830261#5830261
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5830261#5830261
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5830261#5830261. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Lightroom at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Why does brasero not burn a DVD?

    I have a DVD to burn, but every time I run Brasero I get a message to insert an empty disk or otherwise it will attempt to make an image. With the empty disk inserted seems like brasero does not see the device and disk.
    With my external DVD writer connected I can't burn anything to it. The user is added to optical group and the device is found. Growisofs however works with the provided path. Why does brasero not see the writer and how do I make it burn the dvd?
    Last edited by tasty_minerals (2012-07-22 23:04:14)

    A likely cause of this error is that some program did not report memory usage correctly to the OS.
    This ARTICLE will give tips on finding "clues" as to what was happening at that moment. Chances are good that that program, or Process is identified somewhere in the Event Viewer. Now, be prepared to do a bit of reading, but follow EVERY link in any of the error, or warning messages.
    Good luck,
    Hunt

  • After importing images from my card using LR 5.4, the GPS data does not show in the metadata panel. However, when I look at the imported images using Bridge, the GPS data is visible. Anybody know why LR is not seeing the GPS data? Camera is Canon 6D.

    After importing images from my card using LR 5.4, the GPS data does not show in the metadata panel. However, when I look at the imported images using Bridge, the GPS data is visible. Anybody know why LR is not seeing the GPS data? Camera is Canon 6D.

    Ok, the issue seem to be solved. The problem was this:
    The many hundred files (raw and xmp per image) have been downloaded by ftp in no specific order. Means - a couple of files in the download queue - both raw and xmps. Most of the time, the small xmp files have been finished loading first and hence the "last change date" of these xmp files was OLDER than the "last change date" of the raw file - Lightroom then seem to ignore the existence of the xmp file and does not read it during import.(a minute is enough to run into the problem)
    By simply using the ftp client in a way that all large raw files get downloaded first followed by the xmp files, we achieved that all "last changed dates" of the xmp files are NEWER than the related raw files. (at least not older)
    And then LR is reading them and all metadata information has been set / read correctly.
    So this is solved.

  • Why does iphoto not import my photos from my camera?, why does iphoto not import my photos from my camera?

    why does iphoto not import my pictures?  is it because i used to have a pc and the camera is set up for that?  i photo can view the pictures but will not save them.

    What happens when you try?
    What brand of camera?
    Regards
    TD

Maybe you are looking for

  • Does anyone knows how can I get a thorough guide (not the "short-cut" one) to OS X Lion?

    Does anyone knows how can I get a thorough guide (not the "short-cut" one) to OS X Lion?

  • IPad Full Screen Video Encode Settings

    This seems like such a basic question but I can't seem to find it. I want to transcode a video to play in 1024x768, which is the dimension of the iPad. However one of the presets in AME (CS6) for either Apple or iPad have this setting. What are peopl

  • Recommended solution for missing TOC not working

    So--why does a help project with the following text at the top of the .hhp not show a TOC or index, only search, in the .chm? I've run through the steps in the tech database note several times, and this is what it's looked like every time, but no TOC

  • Instantiating a nested class from JNI

    Im able to instantiate my public member class "Inner" as long as the constructor does not take any arguments. If it requires arguments in the constructor, I get a crash report. I need to be able to instantiate the object with supplied initial argumen

  • CS5 New Image is Always Square

    Every time I create a new document, no matter what dimensions I put, it always makes it a square. Just tonight it has. I've been using the program for almost a year now and havent had this issue at all. I don't think I messed with any settings or any