When browsing for photos, why does it not recognize the most recent iPhoto photos?

Whether I'm browsing for a photo to upload to a website, or to put into a word document and use the "Photo" directory which looks at my iPhoto photos it doesn't seem to register photos that I've put into iPhoto recently. I'm not sure if there's a way to "refresh" this directory or not, and there's no exact time that I've been able to recognize where the photos are available through this browser. It's kind of annoying, as I'm using iPhoto to manage all my photos.
Anyone run in to this?

You can't and shouldn't access image files inside the library via the Finder.  The following is from a post by Terence Devlin on accessing photos for use outside of iPhoto.  It's the definitive treatise on the subject.
There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
     (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
     You can access the Library from the New Message Window in Mail:
     There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
     If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
               If you want to access the files with iPhoto not running:
     For users of 10.6 and later:  You can download a free Services component from
                                                  MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
     Using the Services Preference Pane you can even create a keyboard shortcut for it.
     For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility
                                                  Karelia iMedia Browser
     Other options include:
               Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
               File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
               Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
     b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.
OT

Similar Messages

  • Why does IBA not include the table of contents when exporting to PDF?

    Why does IBA not include the table of contents when exporting in PDF? I can seee the TOC in iBooks Author but when I want to see what it looks like in a regular PDF, the TOC does not show up.

    Strange question you ask here. Not sure why that is relevant to "why" IBA won't publish a table of contents in a PDF.
    But since eyou asked, it's simple, I want to author some books in IBA and also see what they look like - completed - in PDF. Again, any suggestions as to a work around so I don't have to cut and paste back into Pages?

  • Elements 11 - why does it not recognize RAW photos from Canon 70D?

    Elements 11 - why does it not recognize RAW photos from Canon 70D?

    Hi,
    The 70D requires Camera Raw 8.2 which is not compatible with Photoshop Elements 11.
    Your choices are
    1) Upgrade to Photoshop Elements 12
    2) Use the Canon DPP application to convert the CR2 files to TIF files and then import the TIF files into the organizer
    3) Use the free download of the Adobe DNG converter to convert the CR2 file to DNG files and then import the DNG files to the organizer.
    Note: if you are running on XP or Vista, you need version 8.3 of the converter - the latest (8.4) will not work.
    DNG  Converter 8.4
    Windows: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5739
    MAC: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5738
    DNG Converter 8.3
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5694
    Brian

  • Why does apple not remove the malware Genieo

    Why does apple not remove the malware Genieo - it takes over the Safari browser even with extensions turned off - firefox works fine but the malware is still alive and kicking on my mac.  Should I just uninstall safari and hope the malware is not doing more damage in the background?

    Hi Sickof --
    Apple has never had anything to do with Genio.  It is sneakily installed with other apps you think would be helpful. It is very sickening, IMHO. 
    Here's a thread here -- It's long, I know, but it's got great information for you.
    https://discussions.apple.com/thread/4497906?start=0&tstart=0
    Keep reading.  It's worth it.

  • Why does is not show the radio buttons

    I want to display the buttons in a row then radio button in a row under the button and then log scroll pane under the radio buttons. This is my code:
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.CENTER);
            add(logScrollPane, BorderLayout.CENTER);When i run it it display the buttons and the logsrollpane. Why does it not display the radio buttons?

    Thanks guys.
    This is my problem. We have a big system that produce lots of log files and the software testers have to manually have to go through the logs file and look for a certain XML tags in the log file.
    What I want to do is help the software testers my developing a small tool that will allow them to open a log file and then click on a radio button corresponding to a xml tags that they are looking for and automatically highlight the tags in the file in yellow color .
    I am not sure how feasible this is and I am stuck.
    This is what I have done so far.
    Can you please guys help me go forward.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JPanel
                                 implements ActionListener {
        static private final String newline = "\n";
        JButton openButton;
        JButton clearButton;
        JTextArea log;
        JFileChooser fc;
        // Radio Buttons
        static String em01 = "EM01";
        static String em07 = "EM07";
        /*static String dogString = "Dog";
        static String rabbitString = "Rabbit";
        static String pigString = "Pig";*/
        public FileChooserDemo() {
            super(new BorderLayout());
            //Create the radio buttons.
            JRadioButton em01Button = new JRadioButton(em01);
            em01Button.setMnemonic(KeyEvent.VK_B);
            em01Button.setActionCommand(em01);
            em01Button.setSelected(true);
            JRadioButton em07Button = new JRadioButton(em07);
            em07Button.setMnemonic(KeyEvent.VK_C);
            em07Button.setActionCommand(em07);
            //Group the radio buttons.
            ButtonGroup group = new ButtonGroup();
            group.add(em01Button);
            group.add(em07Button);
            //Register a listener for the radio buttons.
            em01Button.addActionListener(this);
            em07Button.addActionListener(this);
            //Put the radio buttons in a column in a panel.
            JPanel radioPanel = new JPanel(new GridLayout(0, 1));
            radioPanel.add(em01Button);
            radioPanel.add(em07Button);       
            //Create the log first, because the action listeners
            //need to refer to it.
            log = new JTextArea(40,60);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            JScrollPane logScrollPane = new JScrollPane(log);
            //Create a file chooser
            fc = new JFileChooser();
            //Uncomment one of the following lines to try a different
            //file selection mode.  The first allows just directories
            //to be selected (and, at least in the Java look and feel,
            //shown).  The second allows both files and directories
            //to be selected.  If you leave these lines commented out,
            //then the default mode (FILES_ONLY) will be used.
            //fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            //fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            //Create the open button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            openButton = new JButton("Open File");
            openButton.addActionListener(this);
            //Create the save button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            clearButton = new JButton("Clear Text Area");
            clearButton.addActionListener(this);
            //For layout purposes, put the buttons in a separate panel
            JPanel buttonPanel = new JPanel(); //use FlowLayout
            buttonPanel.add(openButton);
            buttonPanel.add(clearButton);
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.LINE_START);
            add(logScrollPane, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            //Handle open button action.
            if (e.getSource() == openButton) {
                int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                     log.setText("");
                    File file = fc.getSelectedFile();
                    try{
                         BufferedReader in = new BufferedReader(new FileReader(file));
                             String data;
                             while ((data = in.readLine()) != null) {
                                  log.append(data + newline);
                    }catch(IOException ioe){
                log.setCaretPosition(log.getDocument().getLength());
            //Handle save button action.
            }else if (e.getSource() == clearButton) {
                  log.setText("");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("PROGRESS Message Viewer");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new FileChooserDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • Just purchased a office jet 6500A Plus so that I can print from my iPhone and iPad. I can print form my iPhone but my iPad 2 tells me there is no air printer available.  Why does one device recognize the air printer but the other device does not?

    Just purchased a office jet 6500A Plus so that I can print from my iPhone and iPad. I can print form my iPhone but my iPad 2 tells me there is no air printer available.  Why does one device recognize the air printer but the other device does not?

    I have the 6500A without plus and it is with a LAN cable connected with my Router.
    First make sure you have the latest printer firmware installed.
    Next restart the printer and the Router.
    I had the same. Problem but it went away after rebooting the Router.

  • HT204406 I have subscribed to match on iTunes and organized my music on my Mac Book.  Why does it not appear the same way on my iPad

    I would like my music to appear organized in the same way on my iPad as I have done it on my Mac Book.  (and on my iPhone as well)  Since it is in the cloud, why does it not appear the same way in all devices?

    The purpose of iTunes match is to make your music library available to all of your devices anywhere. It will sync Playlists, but no other type of organization you may have made.
    If you're having trouble, be sure you are logged into the same Apple ID on all devices but be sure to read this article and pay special attention to associating your devices with an Apple ID. There are important restrictions you should know about.

  • How can I convert my Open Source document files into Word document files? I cannot download Pages since my Macbook Air does not have the most recent software.

    How can I convert my Open Source document files into Word document files? I cannot download Pages since my Macbook Air does not have the most recent software. I downloaded open office to my mac to try and save money. It worked well for a while. Now I get this pop-up message that asks me to "Reopen" and when I select the option, nothing happens. I cannot save my documents anymore and I cannot convert them to word. Help!

    dwb wrote:
    Does OpenOffice output Word documents by default or do you have to select it manually?
    You have 17 options to save as in Open Office, one of which is .doc  files,  yes it needs to be saved manually.
    You may be able to default to DOC, but have not tried same.
    Since Open Office is 99% same as Word, I use it, or Word, either one.  Open Office is a bit less buggy than Word 11'

  • How to see ALL purchases? (Not just the most recent 2000)

    So I got a new MacBook and I want to sync my iPod 5 to it. The problem with this is that it erases all of your iPod's information. I'm okay with this, I just want to be able to put all my songs back onto it. So I go to the iTunes store, click purchases, and it shows me the most recent 2000 purchases. Some of the music I want is farther back from 2000. How can I see ALL of my purchases, not just the most recent 2000, so that I can download them into my new music library?
    Another solution would be to locate this music in the iTunes store. When I find one of the albums that I have already purchased, I click on where it says "purchased" and it gives me these options: gift this item, tell a friend, share on facebook, share on twitter, and copy link. None of which gives me the option to download it again. What should I do?
    Any help is much appreciated!
    I have a MacBook Pro, iPod 5, and iTunes 12.0.1.26

    All of your content should be in iTunes on the computer or on a backup of your computer.
    Apple has never stated that iTunes in the Cloud and the ability to redownload content is a replacement for backing up your media.
    If you are unable to download it again and there is no backup, then it is gone.

  • I am about to buy my first Macbook Pro, should I wait for the possibility for a 2015 macbook, or just get the most recent model currently? (9-22-14)

    I am about to buy my first Macbook Pro, should I wait for the possibility for a 2015 macbook, or just get the most recent model currently? (9-22-14)

    No one knows if there will be a new model and if so, when that would be. However, there always will be something bigger, better, and newer around the corner, so you'd be waiting forever.
    Buy it when you want or need it.
    FWIW, here are the specs of the latest models (which happen to be mid 2014):
    Apple - Support - Technical Specifications

  • Why does Canon NOT support the Canon Utilities software?

    The Canon Map Utility software can not detect my Canon GPS Receiver GP-E2.  Over the phone, Canon "Customer Support" had me uninstall all 10 Canon Utilities that I had previously installed, and then let me install only 8 older versions of Canon Utilities.  And, the Canon Map Utility software STILL could not detect my Canon GP-E2. 
    Why doesn't Canon have ANYONE who knows the Canon Utility software?  The first support rep had NEVER used any of the software!  And the second support rep, whom I was transfered to by a Supervisor who told me that this was the most experienced support person for the software, has only used the software ONCE!
    Why does Canon NOT SUPPORT Canon software?????
    As an old friend used to always say,
    "Keep Looking Up!"
    Calen

    When I use the GPS-E2 on my camera, the pictures have are geotagged.  It's when I try to use the GPS log that Map Utility has a problem.  I like the idea of recording where I went, not just where each picture was taken.  That way, I can see where I found nothing to take pictures of.
    Calen
    As an old friend used to always say,
    "Keep Looking Up!"
    Calen

  • Why does Encore not recognize my DVD burner?

    I recently purchased Encore to complete a video editing project I've been working on, and for some reason the software will not recognize the external DVD burner I have connected to my computer. The burner is not that old, so I don't see why Encore would show that no device was attached, especially when the computer itself recognizes the external drive. Anyone else have this problem? Anyone have any solutions? Few things are as frustrating as having software/hardware issues for no apparent reason. Thanks!
    Mike

    Things and Software to AVOID when authoring/burning a disc
    Start --> http://forums.adobe.com/thread/608660
    #2 has WHY Explained http://forums.adobe.com/thread/607390
    Plus http://forums.adobe.com/thread/562941
    Create a DVD output ISO file and then use the FREE Imgburn to write files or folders or ISO to disc for DVD or BluRay (send the author a PayPal donation if you like his program)
    Read http://forums.adobe.com/thread/1322583 for notes on installing Imgburn WITHOUT any toolbar add-ons

  • Why does CS6 not recognize my GPU?

    My laptop has a GTX 630M which should have enough stuff to run the Oil Paint filter, yet I can't select Open GL in preferences.

    can you attach your system information (ps  help>system info)?
    Usually these are video board or driver issues. Also, check this document for troubleshooting options with GPU settings and let us know what happens.
    Check the date on your driver to be sure it is the most recent. This usually fixes it.
    Pattie
    What features use the GPU and how do I troubleshoot GPU issues?

  • HT201269 i backed up my iphone to iTunes and then when i restored the back up info was not from the most recent backup, but from May!!! what can I do to get yesterdays data?1

    i backed up my iphone to itunes and tried restoring the info on to a new iphone and for some reason it used an old back up from last may.  I know that the recent back up worked as I used it to set up another phone a week ago (a phone whihc also had problems and hence I needed to use that same back up again on my second new phone.  Is there anyway I can get the most recent back up information back?

    1. Create a backup of your iPad to iTunes on your computer or to iCloud
    2. Transfer any and all photos & videos on your iPad to your computer.
    3. Erase the iPad and restore the iPhone's iCloud backup to the device.
    4. Transfer any and all photos & videos on your iPad to your computer.
    5. Restore the iPad backup you reated in step #1 back to the iPad.

  • Why does Apple not support the rSAP - Remote SIM Access Profile - for connection to car handsfree via Bluetooth

    Hello community,
    I just ordered a new car and it comes with a bluetooth based handsfree installation based on rSAP (remote SIM access profile). I learned that rSAP is the ideal thing to eliminate the unwanted radiofrequency radiation (RFR) inside the car. Now while googleing I also learned that iPhone on iOS does not support rSAP.
    I would like to point to the following page which shows some more detailed information on the rSAP topic:
    http://paulroberts69.wordpress.com/2011/02/28/android-2-2-and-rsap-compatibility /
    I find rSAP a very usefuly thing, if it really brings the GSM radiation level down inside the car and allows the full use of all GSM functions by the rSAP premium handsfree kit built into the car. I absolutely do not understand why it is not already available with iOS.
    From several web sources I understand that rSAP is available for jailbroken iPhones. That means, the chips inside the iPhone would support a rSAP service. Therefore my question: will it become available with iOS 6?
    Or do all the folks at Apple drive old cars/brands and don't even think of the rSAP feature? Can we somehow start to get a hearing by the Apple developers? According to my knowledge, rSAP is implemented with all premium handsfree factory units of the VW brands - Audi, VW, Skoda ... This should make a relevant user base!
    Any others with same wish and/or experiences? Comment here please!
    Regards,
    Olaf

    Hi Meg,
    could be several things:
    1. they forgot?
    2. none of their team members drives any VW branded car?
    3. nobody cares about the radiation inside the car?
    4. all have plugin holders for the iPhone?
    I am just surprised that rSAP is offered by a premium car maker, but Apple seems ignorant about its support.
    I am mostly concerned about the radiation when I use regular hands free. But I do understand that rSAP also has some limitations (only access to SIM contacts and other things, Wikipedia DE has a good full report, Wikipedia EN is much shorter).
    Regards,
    Olaf

Maybe you are looking for

  • How to connect Macbook to 23" Cinema Display

    I just bought a Mini-DVI to VGA adapter to connect my Macbook to my Cinema Display 23", but I am realizing this adapter is probably not what I need as the Cinema HD Display has a different, larger connector that doesn't match the other end of my adap

  • Converting pdf to editable word doc

    Does anyone know if you can convert pdf files back into an editable word document? If so, how? Thank you.

  • On what parameters based an aggragate can be decided whether it is good agg

    Hi, On what parameters based an aggragate can be decided whether it is good aggr or bad aggr. Regards, Siva Thottemopudi

  • Limit user session in ADF security

    I want single user work in web application only with a single session at any time. How can I limit user sessions?

  • Report Failure Chain

    Hi to all, I am using the Teststand 2013 5.1.0.226 and I want to add all the failure steps to my html report. After test the following examples, I it doesn´t work yet: - http://www.ni.com/white-paper/4563/en/ - http://forums.ni.com/t5/NI-TestStand/Ho