IPhoto does not see any changes after editing a photo in Camera Raw

Hello everyone ,
I have some small problem with my iPhoto. I have set up Camer Raw in iPhoto as  External Editor, so when I click on edit in IPhoto,
automatically opens my JPG in Camera Raw. After editing in Camera Raw I'm clicking on ,,Save image" then destination is ,,Save in same location" When I go back to iPhoto to the same photo, iPhoto does not show any changes I have made in Camera Raw. 
What could it be or should I set something in iPhoto or in Camera Raw?
Is there a chance in order to deal with this?
I will be grateful for any assistance and
I'm waiting for advice
Dawid

Any time a RAW file is edited in any 3rd party editor from within iPhoto it MUST be saved to the Desktop and imported as a new file. There's no other way to do it.  So the photos you've edited and saved are somewhere in the iPhoto Library folder system but cannot be recognized and used by iPhoto.
The following is geared for Photoshop and Photoshop Elements but might have some info relevant for you:
Using Photoshop CS3 or Photoshop Elements 9 as Your Editor of Choice in iPhoto.
1 - select Photoshop as your editor of choice in iPhoto's Advanced Preference Section's under the "Edit photo:" menu.
Click to view full size
2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done. 
3 - however, if you get the navigation window
Click to view full size
that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
NOTE: With Photoshop Elements 9 the Saving File preferences should be configured as shown:
Click to view full size
s  I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
Click to view full size
NOTE: If you want to use both iPhoto's editing mode and PS/PSE without having to go back and forth to the Preference pane, once you've selected PS as your editor of choice, reset the Preferences back to "Open in iPhoto".  That will let you either edit in iPhoto using the Edit button or Control-clicking on the thumbnail and selecting "Edit in iPhoto" or in PS/PSE by Control-clicking on the thumbnail and selecting "Edit in External Editor" in the Contextual menu.
Click to view full size
This way you get the best of both worlds.
OT

Similar Messages

  • "An autonomous transaction does not see any changes made by main transact"

    Hi,
    I'm trying to reproduce the "An autonomous transaction does not see any changes made by main transaction" reffered on :
    Oracle® Database Application Developer's Guide - Fundamentals
    10g Release 2 (10.2)
    Part Number B14251-01
    chapter 2 SQL Processing for Application Developers
    Paragraph : Autonomous TransactionsI set up a simple case...
    create table emp_ as select * from emp
    begin
      update emp_ set hiredate=hiredate+100 where empno=7934;
    end;
    create or replace trigger trg_emp_
    after insert or update on emp_
    for each row
    declare
        pragma autonomous_transaction;
        emp_var emp.hiredate%type;
      begin
        select hiredate
          into emp_var
          from emp_
        where empno=:new.empno;
        dbms_output.put_line('empno: '||:new.empno);
        dbms_output.put_line('old hiredate: '||:old.hiredate);
        dbms_output.put_line('new hiredate: '||:new.hiredate);
      end;Prior to any change...
    SQL> select empno,hiredate from emp_;
    EMPNO HIREDATE
    5498 21/4/1982
    5499 11/10/1981
    5411 10/10/1981
    5410 10/10/1982
    7369 17/12/1980
    7499 20/2/1981
    7521 22/2/1981
    7566 2/4/1981
    7654 28/9/1981
    7698 1/5/1981
    7782 9/6/1981
    7788 19/4/1987
    7839 17/11/1981
    7844 8/9/1981
    7876 23/5/1987
    7900 3/12/1981
    7902 3/12/1981
    7934 23/1/1982After the change...
    SQL> begin
      2    update emp_ set hiredate=hiredate+100 where empno=7934;
      3  end;
      4  /
    empno: 7934
    old hiredate: 23/01/82
    new hiredate: 03/05/82
    PL/SQL procedure successfully completedAccording to the Oracle doc the select of the autonomous transaction should not see the change made to the hiredate column of the table in the main transaction(in the anonymous block)....
    What may i do wrong..????
    Thank you,
    Sim

    Simon:
    As Tubby pointed out, your dbms_output commands do not display the value you selected in the trigger. Your trigger based demonstration needs to be more like:
    SQL> SELECT * FROM t;
            ID DT
             1 05-SEP-2009
             2 17-JUL-2009
    SQL> CREATE TRIGGER t_ai
      2     AFTER INSERT OR UPDATE ON t
      3     FOR EACH ROW
      4  DECLARE
      5     PRAGMA AUTONOMOUS_TRANSACTION;
      6     l_dt t.dt%TYPE;
      7  BEGIN
      8     SELECT dt INTO l_dt
      9     FROM t
    10     WHERE id = :new.id;
    11     DBMS_OUTPUT.Put_Line ('ID: '||:new.id);
    12     DBMS_OUTPUT.Put_Line ('Old dt: '||:old.dt);
    13     DBMS_OUTPUT.Put_Line ('New dt: '||:new.dt);
    14     DBMS_OUTPUT.Put_Line ('Aut dt: '||l_dt);
    15  END;
    16  /
    Trigger created.
    SQL> UPDATE t SET dt = sysdate WHERE id = 2;
    ID: 2
    Old dt: 17-JUL-2009
    New dt: 25-OCT-2009
    Aut dt: 17-JUL-2009
    1 row updated.So, the automomous transaction select did not see the changed value of dt.
    I know you are just trying to understand automomous transactions here and would never do sometihg like this in production right? :-)
    Your trigger, as written, has some interesting side effects because of the automomous transaction. For example:
    SQL> INSERT INTO t VALUES(3, sysdate - 25);
    INSERT INTO t VALUES(3, sysdate - 25)
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'
    SQL> UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy');
    UPDATE t SET id = 3 where trunc(dt) = TO_DATE('05-Sep-2009', 'dd-mon-yyyy')
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OPS$ORACLE.T_AI", line 5
    ORA-04088: error during execution of trigger 'OPS$ORACLE.T_AI'John

  • IPhoto does not show any of my edited pictures

    I recently upgraded from SL to Lion. After that, all I wanted to restore was iphoto, so I restored the iphoto folder. After that all my events but five was black and showed no pictures, all thumbs was corrupt etc. So I started iPhoto while holding two keys down, like I read I should, and then I restored everything but one option. I left it for the night as it seemed to take for ever. Today everything looked fine, great! Or.. no all photos I ever edited looks as they originaly did. All modifications are gone, atleast thats what I thought but then I looked in the iphoto folder and the modified folder is still there and full of photos. If I click edit on a previously edited picture I see the modified version ... when I return to event or album view, it shows orignal again. Help please!

    Where did you restore the library from?  Time Machine?  If so resore it again (you can keep both) and when the library has been restored download and run  BatChmod  on the library with the settings in the screenshot below:
    Click to view full size
    Launch iPhoto and check your edited photos.  If that doesn't  help try rebuilding the library using  iPhoto Library Manager  as follows:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I have had no previous problem downloading iPhone pict to my Mac, but now, although the Mac sees the iPhone, iPhoto does not see the camera roll. Any ideas?

    I have had no previous problem downloading iPhone pict to my Mac, but now, although the Mac sees the iPhone, iPhoto does not see the camera roll. Any ideas?

    Repair your disk permission: http://bit.ly/OeD7U3.
    Run Cleanup tool http://bit.ly/vnukXY
    Download updated driver from Lexmark website www.lexmark.com
    Run firmware update http://bit.ly/AcNqbg
    Reset printing system http://support.apple.com/kb/HT1341

  • Background, Images, & text is blacked out. I can not see any menus to edit anything... Help

    Background, Images, & text is blacked out. I can not see any menus to edit anything...
    The curser shows there are links when you move over. I have uninstalled and re-installed Firefox and restarted my computer with no luck.
    I can not see the menus to try and reset Firefox or change any settings.
    HELP Please

    hello obrienn214, other users with this problem all had an embedded intel hd3000 graphics card with an old driver present. in case this also applies to you, here would be a link to update the driver, which in turn should also address the black firefox problem: https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=23764 (for win7 64 bit)
    in case this doesn't solve the issue or does not apply to your system, start firefox into safemode '''by pressing the shift key while the application is launching''' & disable hardware acceleration in the firefox ''menu ≡ > options > advanced > general'' (that setting will take a restart of the browser to take effect).
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • TS1398 my ipone 4s does not see any wifi networks my ipad works ok tried all of the above resetting network etc still does not see wifi ?

    my ipone 4s does not see any wifi networks my ipad works ok tried all of the above resetting network etc still does not see wifi ?

    If no change after restoring the iPhone with iTunes as a new iPhone or not from the backup, the iPhone has a hardware problem with the wireless card or with something else.

  • For one Urgent Change during performing the Approval(chnging the status to 'To be Tested') system does not recognize any changes using the CTS WBS BOM in the development system. The transaction is therefore incorrect or the status was reset by the system.

    For one Urgent Change while performing the one of the Approval before changing the status to 'To Be Tested'
    We are getting below error.
    The system does not recognize any changes using the CTS WBS BOM in the development system. The transaction is therefore incorrect or the status was reset by the system.
    COuld anyone please help us to know, How it can be resolved?
    We also have this below error.
    System Response
    If the PPF action is a condition check, the condition is initially considered as not met, and leads to another warning, an error message, or status reset, depending on the configuration.
    If the PPF action is the execution of a task in the task list, and the exception is critical, there is another error message in the document.
    Procedure
    The condition cannot be met until the cause is removed. Analyze all messages in the transaction application log.
    Procedure for System Administration
    Analyze any other messages in the task list application log, and the entries for the object /TMWFLOW/CMSCV
    Additional Information:
    System cancel RFC destination SM_UK4CLNT005_TRUSTED, Call TR_READ_COMM:
    No authorization to log on as a trusted system (Tr usted RC=0).
    /TMWFLOW/TU_GET_REQUEST_REMOTE:E:/TMWFLOW/TRACK_N:107
    For above error Table /TMWFLOW/REP_DATA_FLOWwas refreshed as well but still the same error.

    If you are in Test System, you can use function module AA_AFABER_DELETE to totally delete the depreciation area (tcode SE37, specify chart of depreciation and depreciation area), After that recreate your depreciation area and run AFBN. But before you do that, have you created a retirement transaction type that limits the posting on your new depreciation area? If not create one.
    Hope this helps.
    Thanks!
    Jhero

  • TS1538 itunes does not see any of my devices.

    itunes does not see any of my devices.  It used to. But not any more. Why. They show up in Windows. But not itunes.
    <Edited by Host>

    Try
    iOS: Device not recognized in iTunes for Windows
    I would start with               
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or               
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    New cable and different USB port?
    Runs this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Try on another computer to help determine if computer or iPod problem

  • View Object Editor in JHS 10.1.2 does not save any changes....

    Hi,
    When I did exactly as the JHeadstart Tutorial says, I noticed that
    in JHeadstart 10.1.2 with JDeveloper 10.1.2
    JHeadstart does not save any changes I make in the View Object Editor
    of the Application Structure File Editor !!!
    For instance when I change the Width property of an Attribute from 60 to 5
    it changes to 5, but when close the View Object Editor
    and reopen it again, the Width is back to 60...
    Even when I click the button "Validate the Application Structure File" before
    closing the VO Editor....
    What do I do ??? Is the only solution to edit the XML file
    or something like that without using the VO Editor ?
    Or is there a better solution ?
    Does it maybe work in an older version of JHeadstart ?
    If so, where is the older version available for download ?
    Thanks,
    Eric Joosse

    Eric,
    How did you leave the JHeadstart VO editor?
    The changes should be saved when you click the OK button in the VO editor itself, but they are not saved if you click Cancel, or the little cross in the upper right corner, or leave it open while going back to the Application Structure File editor. That's because it's a standalone editor (you can also find it when right-mouse-clicking the VO in the Model project). The icon in the Application Structure File editor is just a quick way to get to it.
    Hope this helps,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • IPhoto does not see my camera

    iPhoto '09 did see my new Panasonic camera at first, and I could import the images and videos without any issues.
    Now - a day later - there is some images and movies on my camera's SDHC card, and it does not see the camera at all. I do see the camera card in the finder. So the card is readable. It is just that all of sudden iPhoto does not see it anymore. I tried hence and forth restarting iPhoto and camera but no luck.
    The only thing I did in between was loading of a bunch of images from my camera card (via Camera Connector Kit) to my iPad 3. And removing the images (the iPad 3 does not seem to recognize the videos - which is another issue...) via the Photo app on iPad. I then wanted to load the videos (and some new images I tookl direcfly to iPhoto on my iMac. But htat now does not seem to work.
    Any tips are much appreciated!

    Try these:
    1) Go to Disk Utilities and repair permission -- see if it works. If not go to #2
    2) If that doesn't work d/l a program call OnyX. Make sure you get the the specific version for the version of OS X you are running. Run the program and go to Maintenance and run all three options Permissions (reset home directory checked), Scripts (run all, but don't delete logs), and rebuild (check LaunchServices and dyld's shared cache). Then go to Cleaning. In System check Kernal and Extentions and Other components. In User make sure at least Applications and Temporary items are checked. You can check the others if you want - no harm will come, just more time. You will be asked to restart your computer each time, but ignore until you have reached this point. When you have done all of the above reboot
    Test again. Your camera shoud show up.

  • I have a MacBook Pro running 10.7.2.  I am trying to import photos from my older Canon EOS-1D for the first time since my OS upgrade.  iPhoto does not see the camera nor does Image Capture.  IC says there is not a camera connected.  Cable is known good.

    I have a MacBook Pro running 10.7.2.  I am trying to import photos from my older Canon EOS-1D for the first time since my OS upgrade.  iPhoto does not see the camera nor does Image Capture.  IC says there is not a camera connected.  Cable is known good.  Has something changed?  Thanks!

    If neither iPhoto not IC can seethe card it might suggest an issue with the card or the ports on the camera/mac.
    Try reformat the card, change the ports and/or use a USB Card Reader.

  • IBook G4 Airport Extreme does not see any SSID

    Hi,
    My iBook 1,2 Ghz has been working great for several years now.
    I am working with Mac OS X Tiger (10.4.11) for quite some time
    and it never let me down. I connect to the internet using an Airport Express
    connected to a speedtouch router.
    The Airport Express Card in my iBook always found 6 or 7 SSID's of other
    Wireless Networks in my neighbourhood and it used to login automatically on
    my Airport Express wireless wetwork station.
    Last week it suddenly stopped working correctly.
    After starting OS X on my laptop the little Airport icon in the upper bar faded out grey.
    When I click it it says it can't find any networks.
    I checked all my settings, downgraded my Airport Extensions
    and even installed a spare (refurbished) Airport Extreme Card.
    Even with another Airport Extreme Card it does not see any wireless networks.
    My other macs, a unibody MacBook Pro and white MacBook work fine with the Airport Express.
    What could be wrong? Am I overlooking something here? Can somebody help me out?
    How can i get my Airport Express/iBook G4 connected to my wireless network again?

    Hi Elko,
    Thanks for the reply.
    I re-installed the original Airport Extreme card into the slot again.
    But now i pushed it harder than the first time. (just like you said)
    I noticed the second click, but that doesn't seem to be the problem.
    Both Airport Cards (the original and the new) were installed correctly.
    I also checked the antenna connection but that is seated o.k. too.
    After re-installing the card, i booted into Mac OS X Tiger and checked the ASP.
    It says a Airport Extreme Card is installed with firmware version 405.1 (3.90.34.0.p.18)
    and the langauge version is international/worldwide. So far, so good.
    Nevertheless the airport card does still not find any wireless networks or SSID's after
    scanning multiple times. (Location on automatic)
    I am planning an upgrade to Leopard today. Maybe that's gonna help, since there were some Airport Extreme updates in Leopard. If that's not the solution, I will stay with your other suggestion and buy me a nice USB dongle.
    Do you have any idea what type of dongles work best with Leopard? I have seen some different models, but a lot of dongles require third-party software to make it work and are not automatically recognized by OS X.

  • Canon Pixma MP 540 does not scan any longer after update mountain lion. printer works normally. Who can help.

    My Canon Pixma MP 540 does not scan any longer after update mountain lion. MP Navigator EX 2.0 starts and immediatley stops and comes with this message:
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSImageCell loadingState]: unrecognized selector sent to instance 0x825c0f0'
    Printer works normally. Who can help.
    Thank you
    PeterPan52

    Hi
    Did you find a solution to this ? I amhaving same problem
    Thanks

  • IPhoto does not see the camera

    iPhoto does not see the camera, although it worked really well for two years. Computer has been regularly updated. Please help, thank You.

    Image Capture doesn't see the camera. I have tried with two different Sony cameras, that I have been using for a long time on this computer. It is iMac 27''. Both of these cameras work normaly in MacBook Air, that means that the problem is not in the camera, or the cards. Those are the things I have tried so far. Only difference I created on the computer is that I have, two or three days ago, installed external hard drive WD My Book Studio which is connected to the computer by FireWire 800.

  • Satelite A30 does not see any other network devices in WLan

    I recently bought a Toshiba Wireless LAN Mini PCI Card, i've installed it and managed to get it to recognise my broadband but it does not see any other network devices. I was not supplied with any drivers or software to operate the card (I bought it from a proper dealer). Can you recommend downloads that would run this card?
    I have a Satelite A30 laptop 1gb ram 60GB HDD.
    Also large files sometimes stop transfering (hangs)when using my USB connection. The usb controller is using microsoft driver 5.1.2600.0 dated 1 june 2002.
    Is this a driver problem?

    Hi
    If the WLan card is properly installed so you have only not configured you settings.
    I dont know which devices in the broadband you mean but usually if you want to communicate or transfer files between notebooks through the WLan so all computers must be in the same domain or workgroup.
    I cannot give you a proper answer but only a suggestion. I have red that sometimes a lower power could be responsible for such issue. Try to disable the option Power safe in the USB root hub properties in the device manager.
    Hi
    If the WLan card is properly installed so you have only not configured you settings.
    I dont know which devices in the broadband you mean but usually if you want to communicate or transfer files between notebooks through the WLan so all computer must be in the same domain or workgroup.
    I cannot give you a proper answer but only a suggestion. I have red that sometimes a lower power could be responsible for such issue. Try to disable the option Power safe in the USB root hub properties in the device manager.

Maybe you are looking for

  • SAP Mobile app Stock photo not work for network location

    Hi Experts I found if we use network location path (e.g. servername\pic folder\) in SAP Business One General Settings -> Path, Picture Folder, then if we logon SAP B1 Mobile app from iPad/iPhone, and try to open stock photo, we will get error: Proces

  • How can I do GR/IR clearing more effectively

    Hi I was required to do GR/IR clearing for 2 quarters in 2013. Those accounts are very old, and I found lots of GRs are still open because no IR posted against. I was instructed to confirm with every PO creater to see if all the payments have been ma

  • Error at runtime.

    Hai all, i am trying to develope one view with table.  No syntax errors in the code. while running the application is showing error message . Error when processing your request What has happened? The URL http://jktsap2.jktech.com:8012/sap/bc/webdynpr

  • [JS][CS3] Ungroup, and use

    Hi. I am looking for some pointers, rather than finished code.  I have an InDesign page, where I have selected a group, containing 2 image frames.  I need to ungrooup, remove one frame, and do some actions on the remaining frame. I have spent some ti

  • Table with liv no and accounting doc

    hi, i have table BSIK and BSAK and RSEG but i not able to link between them. accounting doc is 52# in bsik/bsak and liv is 57# in rseg. need advice. thanks rgds