HT204655 Photos for Mac does not support semi professional camera Nikon D7000!

Since Nikon does not support USB storage mode, the (semi)professional line of Nikon cannot be used to import pictures!!
This is a serious flaw in the program. Aperture supports Nikon D7000, Image Capture supports the camera but the latest and greatest has forgotten all about supporting market leader's camera's?
The main and only reason NOT to use Photos... Or did I miss something here?

Sorry guys, forget all about it. I switch my camera off and on again (while it was connectoed to the Mac) and it appeared in Photos.
No idea what happened, but I can import my pictures.
Cheers,

Similar Messages

  • Photos for mac does not see my Canon XT1

    Canon XT1, how does one import photo's from this camera into Photos for Mac? No problem with Aperture.....

    I have an SD card from an Olympus OMD, in Aperture it always recognized the card at the Import tab, Photos shows this in finder but the folder is grayed out and I cannot import the pictures. I hope this will be addressed soon, it's very inconvenient.

  • I want to use icloud on my macbook and cant because I am using OSX10.6.8 - I want to upgrade this but I cant upgrade to mountain lion as my mac does not support this - cannot find a way to go to Version 10.7.4 which i understand supports icloud - help

    want to use icloud on my macbook and cant because I am using OSX10.6.8 - I want to upgrade this but I cant upgrade to mountain lion as my mac does not support this - cannot find a way to go to Version 10.7.4 which i understand supports icloud - help to do this please

    If you purchased Lion for your iMac, just log into the Mac App Store from your MacBook using the Apple ID under which you purchased Lion and go to the Purchases page. You will be able to download and install Lion there. 
    searching the internet i found a link to upgrtade to 10.7
    The only place you get get Lion is from the Mac App Store. If you found some other site, that was an illegal copy and almost certainly tied to someone else's Apple ID and hence unusable by you. If the link was just to the Mac App Store, see above.
    As to the problem with synchronization to iCloud, that's not a 10.6 question, so I'd suggest you take up that specific issue in either the Lion or iCloud forums, providing full details, and someone there can probably help you sort things out.
    Regards.

  • Adobe Photoshop Elements 12 for Mac does not show up in Applications. Tutorial for editing from iPhoto shows selecting the Adobe software in Applications. Am I missing a step in registering product?

    Adobe Photoshop Elements 12 for Mac does not show up in Applications. Tutorial for editing from iPhoto shows selecting the Adobe software in Applications. Am I missing a step in registering product?

    I answered my own question: There's a difference between "download' and "install." Hunt for "install" (1.5 hrs in my case) and line up your passwords, Adobe ID, etc, then install. Took 15 min. The right choice shows up in Applications. Now it's on to figuring out why photo selected for edit in iPhoto does not show up on screen in Elements.

  • Quicken for Mac is not supported by Quicken Canada or Quicken US

    I had an issue with download my ING Direct transactions into Quicken 07 Mac. When I contacted quicken.com support they asked to contact quicken.ca support. Below is what I received from quicken.ca when I submitted my issue to them:
    "I would like to inform you that we no longer supports Mac version in Canada because of the following reasons. If you want support for your existing version then please contact www.quicken.com
    Why does Intuit not offer a Canadian Mac product?
    Intuit always wants to provide our customers with the best possible end-to-end experience with our products and services. We do not feel that the US Quicken for Mac product will deliver this experience for Canadian users.
    Can I use the US version of the product?
    There is a US version of Quicken for Mac; however, it does not offer a full feature set to Canadian customers. This product is also experiencing some issues with downloading stock quotes. This is why we recommend our customers use a Canadian version of Quicken for the best product and experience.
    Will the windows version of Quicken work on a Mac running XP, Vista or through an emulator?
    We have not tested Quicken on the new Mac platform yet so we aren’t sure. We do offer a 60 day money back guarantee if you are not satisfied with the product or it doesn’t work on your system.
    Why did you recommend the US product in the first place?
    Although there are workarounds and modifications that can be made to the US product so it can work for most users in Canada, we found over time that the experience for our customers was not as good as it is for users of Canadian Windows-based users.
    What issues might a Canadian user face using a product geared for the US Market?
    · Quicken for Mac is a US product that hasn’t been specifically developed for use in Canada
    · Quicken for Mac does not have the ability to print Canadian cheques based on the new standard from the CPA.
    · Quicken for Mac’s sales tax functionality is not as flexible as CDN versions of Quicken. Can be more cumbersome than time saving.
    · Customers who deal in multiple currencies will not be able to do so in the US Mac version.
    · Customers who track their investments in the Mac version are not able to use average cost basis, as required by CCRA
    Kavita D
    Quicken Product Support
    Intuit Canada

    Thank you for the information. I currently use Quicken 2002 for Mac and am pretty satisfied with the tracking of personal data. Now I am planning to upgrade to a new iMac and wondering if my Quicken will run on the new machine. I would readily consider buying a new version of Quicken but as you have pointed out, Intuit Canada no longer produces a version for the Mac. Dang!
    I'm not sure if a U.S. version would be able to import my data and allow me to carry on. I just want to be able to track bank deposits and chequing, credit cards and loans. I also need to be able to generate transaction reports - Quicken has been excellent for this feature. Downloading of bank account data for reconciliation is nice but not absolutely necessary for me. If anyone knows of an application that I could use in place of Quicken and could import all my old Quicken data, I would like to hear about it.
    Paco

  • ORA-02070 database does not support semi join in this context

    The following merge sql on Oracle 11g throws "ORA-02070 database does not support semi join in this context".
    MERGE INTO ORDERS tgt
    USING
    SELECT C.short_name, C.customer_id
    FROM customers C
    WHERE customer_id IN ( SELECT distinct customer id FROM orders O WHERE O.order_date > SYSDATE - 3 )
    )src
    ON ( tgt.customer_id=src.customer_id )
    WHEN MATCHED THEN
    UPDATE SET tgt.short_name=src.short_name;
    Any ideas? This piece of code was working on an earlier version of Oracle 11g.
    Thanks,
    Anu

    Hi, Anu,
    You can try this:
    MERGE INTO ORDERS     tgt
    USING
            SELECT  C.short_name, C.customer_id
         FROM      customers C
    )                src
    ON (     tgt.customer_id = src.customer_id
       AND     tgt.order_date     > SYSDATE - 3
    WHEN MATCHED THEN
         UPDATE  SET     tgt.short_name = src.short_name; It's surprising that the error message mentioned a semi-join, because you weren't doing a semi-join. An example of a semi-join is:
    MERGE INTO ORDERS     tgt
    USING
            SELECT DISTINCT
                   C.short_name, C.customer_id
         FROM        customers C
         JOIN       orders    o     ON  c.customer_id  = o.customer_id
         WHERE       o.order_date     > SYSDATE - 3
    )                src
    ON (tgt.customer_id = src.customer_id)
    WHEN MATCHED THEN
         UPDATE  SET     tgt.short_name = src.short_name; but perhaps the optimizer re-wrote your IN sub-query as a semi-join.
    An EXISTS sub-query is another way to get the results you want, unless it causes ORA-02070, also. Natrually, I can't test anythihng, since you didn't post any sample data.
    Edited by: Frank Kulash on Apr 5, 2011 11:34 AM

  • Imac-- Upgrading elements 10 to elements 12. Did successful backup of 10.  When restore to 12 message said the disk in drive My Passport for Mac does not contain a valid backup

    IIMac      doing upgrade of Elements 10 to Elementys 12.  Did full backup of 10 on my external hard drive "MY Passport".  Rec'd message backup successful.  Did restore on 12 and rec'd message "The disk in drive My Passport for Mac does not contain a valid backup".  Any help suggestions?

    The funniest part of the whole situation, Apple Care explained it to me as some kind of feature. The told me how to adjust the time when my computer sleeps and recommend I don't shut it down, let it sleep and "instant wake". I would bet if you called them about your Macbook, they would suggest you just close the lid and let it sleep rather than shutting it down.
    Basically shutdown and restart have a problem and the solution is to not shutdown is how they explained it to me. They kept saying buzz words like "instant on" and "fast wakeup". My computer already could sleep and wakeup fast, but now shutdown and restart don't work right. I called them 3 times about it, but since they use these buzzwords, sounds like Lion is meant for a Macbook Air or a Mac with an SSD. If you have a normal hard disk, some of the saving/versions/resume features take too long to be written to the disk on shutdown. And when you start again, it takes a long time to reload the system to it's previous point.
    Even if I uncheck the box to reopen windows on next start, it reopens them anyways.
    If they can't give me a better explaination or some kind of fix, I will have to go back to Snow Leopard. I use my Mac in a production environment and depend on stability. They assured me before I upgraded that it would be stable and all the new saving and versions features could help my productivity. So far it's not helping me and downright annoying. You need to close all your windows before you close the program... if you have 5 windows open in terminal or textedit... every time you launch, they will launch all those windows. I just really want versions, not resume it seems.
    But I can deal with it opening a million windows, just can't take it getting stuck on booting or not shutting down properly. This is a "feature" that should be fixed. LOL

  • My outlook for MAC does not upload emails unless I hit send/receive.  This is even when I leave it open for period of time.  I want it to upload anytime a email comes.  How?

    My Outlook for Mac does not upload emails unless I hit send/receive even though it is left open.  How do I change the schedule?

    Outlook is a Microsoft product, there is a forum specifically for Office for Mac's at:
    http://www.officeformac.com/productforums/
    My recommendation would be to repost there.

  • Adobe Reader for Blackberry Does Not Support Fillable Forms

    I've discovered that the version released for Android does support fillable forms, but the version for Blackberry does not.  I assume Blackberry did not develop the app so what gives? 

    Mehwish,
    Thank you so much for responding, and so quickly. I appreciate it.
    It does not appear as though the PDF I am trying to read would have an element in it that would block it from reflow, but that is always possible. It’s a textbook, and I understand that toward the end of the book there are some charts and diagrams, but I haven’t gotten to those chapters yet. So far, I’ve just been trying to use the Adobe Reader to read the introduction and first chapter and nothing I have done has made it reflow.
    I’m enclosing a copy of the entire book. Perhaps you can uncover something in it that I didn’t see.
    Thanks again for you help.
    Stan
    Dr. Stan G. Duncan
    123 Sumner St.
    Quincy, Massachusetts 02169
    617-855-7539 (hm)
    781-504-6875 (cell)
    215-647-7583 (fax)
    508-295-1630 (Ch)
    <mailto:[email protected]> [email protected]
    <http://homebynow.blogspot.com/> http://homebynow.blogspot.com
    <http://www.huffingtonpost.com/stan-duncan> http://www.huffingtonpost.com/stan-duncan

  • Taking Z1 back to shops!! going back to Apple: Sony Bridge for Mac does not work

    Been an Iphone owner. really, really wanted to try a good  android phone, and the z1 looked the best. However
    I have had the most frustrating experience- this junky bridge software looks slick but it simply does not work on a mac .
    I have spent nearly a week mucking around on forums, reading technical 'get arounds' this is a £600 phone and its not good enough. It might be Apples fault for being so locked down, but sony should not claim it works when it has so many issues.
    1) it spent 3 days trying to load my media. It eventually got stuck on 10 min remaining. I pulled the cable.
    no contacts had even been added, however 1/2 the photos have, but they are a little jumbled up from when they were on my iphone.
    2) i try to download the lastest sony for Mac update 3 times- it cant even do this and gets stuck
    3) i then try to update the z1 with the latest software, again this also it gets stuck and hangs. OMG how can i update my software, do i have to buy a PC to go with the phone.
    im annoyed now and cant play with my new phone
    4) connect phone again and just ask it to do my notes, messages and contacts. This seems to work , but all the messages to my Girfriend are completley missing?? why?
    5) i try to load a few folders, the pictures on the bridge pop up window seem to freeze , ai cant even drag these across, the same happens with my music
    6) i have a lot of photos on my mac form my iphone 3000. If i choose to load them it only allows me to load all of them and not browse.
    can i avoid bridge and view my z1 as a drive? also why wont any of the software update?
    the next thing is it seems to have infected teh mac, the new version f itunes will not install correctly!! this is very unusual.
    some one please helpme before i rant in my blog!

    Hi Inventsc,
    I apologize for the late answer. I'm sorry you haven't had a pleasant experience using Bridge. We are aware of the problems you mention and are working on it. As mentioned, you can connect your phone in MSC (mass storage mode). To do this, disconnect the phone, find USB connectivity settings and set it to MSC mode before plugging it in again.
    Again, I am sorry it's not working properly for you.
    Best Regards,
    David

  • BB desktop for Mac Does not work Curve and G5 OSX 10.5

    The RIM software simply does not work very well. I will keep it to update software, but as a product to sync my data between my BB and my 2 macs, it simply does not do what is needed.
    Sync did not move the Address Book groups data over. The groups moved to the BB, but the groups were empty. Most of the address book contacts did have the group information in each file, but I could not filter by group as each group was empty. Also, a disturbing number of entries were duplicated, with the duplicated entries missing the group information.
    The sync from the iCal application did not seem to go very well either as I received error messages on my Mac.
    I am disappointed that RIM would not have a 32 bit version available for OS 10.2 - 10.5 and a 64 bit version for 10.6
    I am surprised and disappointed that RIM would release a product with less functionality than the Mark/Space offering, and have a lack of bluetooth syncing.
    I have gone back to "The Missing Sync" as that product does work and their support is very good. Unfortunately I had to play around with setting up a test account with no data in iCal and Address Book to zero out the errors that the RIM product put into my BB. I then had to do a second overwrite, this time with my main Mac account and my iCal and Address Book data.
    My BB is back to running and syncing, but not on the RIM software.
    I hope that RIM will revisit the Mac software and provide a product that answers the needs of the Mac community. 

    Hey Everyone, 
    You may find some useful information in this article http://bbry.lv/9y2tHa
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • ISO 7 move and scale photos for wallpaper does not work

    Move and scale photos does not work when using photos as wall paper

    What a nightmare! Had I known what was in store for me, I would never have updated my iPAD Mini to iOS7.
    The calendar with it's ultra-thin Helvetica is near impossible to see. To add insult to injury, not being able
    to move and size a wallpaper photo is just totally unacceptable. So annoying when software is thrown out
    there for the general public when it's obviously not ready. I tried the solution:
    Go to Settings > General > Assessibility > Reduce Motion "set to OFF" 
    Next, in Settings > Wallpapers & Brightness > Choose Wallpaper (pick the wallpaper) - you should now be able to "Move and Scale" the photo that you've chosen for your wallpaper. 
    After you've SET the wallpaper, you can go back to Parallax motion by turning Reduce Motion to "ON" (see step 1)
    And it just DOES NOT WORK. Plain and simple. I am so tired of Apple products that have bugs that we are all expected to work through and work out while paying anywhere from $500 to $2000 for a product. And of course you can't get online support in a quick, efficient manner. My big old $600 bite out the Apple is tasting mighty sour at the moment.

  • Firefox desktop for mac does not save history

    Using firefox desktop for mac. Recently it stopped saving my history. Forward and back buttons still work, typing something in the address window will make it pull up places I've visited in the past, but only ones I visited two or three weeks ago. Nothing recent. "Show all history" brings up the window, but there is nothing in it."
    Private browsing is not enabled. I have enabled "remember my browsing and download history."
    Another answer suggested I might have an anti virus or something that is disabling history. I looked, but I don't have anything doing that. Safari and Chrome are both saving their histories normally.
    Any help would be appreciated. Thanks.

    ''blatay [[#question-1060287|said]]''
    <blockquote>
    Using firefox desktop for mac. Recently it stopped saving my history. Forward and back buttons still work, typing something in the address window will make it pull up places I've visited in the past, but only ones I visited two or three weeks ago. Nothing recent. "Show all history" brings up the window, but there is nothing in it."
    Private browsing is not enabled. I have enabled "remember my browsing and download history."
    Another answer suggested I might have an anti virus or something that is disabling history. I looked, but I don't have anything doing that. Safari and Chrome are both saving their histories normally.
    Any help would be appreciated. Thanks.
    </blockquote>
    The "places maintenance" add on found that something had become corrupted. It had me restart, and it was replaced. Working fine now. Thanks.

  • Face Time for mac does not show contacts window or allow me to sign in

    My Facetime for Mac launches but does not show me my Contacts sidebar or allow me to 'Sign In'. Preferences is grayed out as well.
    It works under a new user account (System Preferences > Accounts). I added a contact into the blank address book to test it out. I'm troubleshooting it right now to get it to work under my account, I think it has something to do with not fully accessing the keychain.
    The tell-tell sign for me is when I launch FaceTime for Mac the preview window does not show immediately. I have to click on the app a second time for the window to appear. This does not happen under the new account
    I have already:
    - Restarted
    - Removed preferences and Caches
    - Re-installed Face Time
    - Repaired and reset keychains
    - Signed in under a different MobileMe account in System Preferences
    Any other suggestions
    Message was edited by: helps
    Message was edited by: helps

    SOLVED !!
    After many, many more steps and close to total ruin of my MobileMe sync structure, I have the found the hidden files to remove that solved my problem.
    ~/Library/Preferences/.GlobalPreferences.plist
    ~/Library/Preferences/.GlobalPreferences.plist temp
    ~/Library/Preferences/.GlobalPreferences.plist .6Va7JFn [+these letters may be than different yours+]
    Logged out, then back in again
    When I launched Facetime it worked exactly as it does on my test user account.
    here are the terminal commands to try for your solution
    cd ~/Library/Preferences/
    ls -A [+To get the letters for the third file+]
    rm ~/Library/Preferences/.GlobalPreferences.plist
    rm ~/Library/Preferences/.GlobalPreferences.plist\ temp
    rm ~/Library/Preferences/.GlobalPreferences.plist\ .[+your letters+]
    Please Post any problems you run into or if it doesn't work.
    Message was edited by: helps

  • LATEST DESKTOP MANAGER FOR MAC DOES NOT WORK!!!

    I have a Blackberry Bold 9700 and an iMac running 10.6.4 with the latest Blackberry Desktop for Mac (v1.0.4 build 10) that just came out August 2010 and it will NOT allow me to update the handheld software either.  It is for a different reason. It says I don't have enough memory on my handheld, but that does not make any sense since I have totally wiped my handheld.
    Is RIM every going to figure this software out??  Years in the making and they still can't get a functioning software app for the Mac !
    Lance

    Hey Everyone, 
    You may find some useful information in this article http://bbry.lv/9y2tHa
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for