Where are my saved changes....please

I know to all of you this will sound like the stupidest question ever asked... but I've always used Picnik to edit my photos...and after this last holiday thought I'd try and get my head around using iPhoto...Straight away I've hit a number of problems..but whats giving me the biggest headache..
After clicking on the thumbnail to bring up the picture, do my cropping, editing etc, once happy, press DONE, some times nothing happens and the picture just returns un-edited to thumbnail size.... or more annoyingly drop down and bar tells me its saving changes.... but nothing happens... where the **** do I find this illustrious changed to my liking photo... I've looked everywhere...
Would be so grateful to be pointed in the right direction..
A complete fool on a PC... Tony

Tony
You should see the change you've made in the iPhoto Window. If you don't then your database may be damaged.
Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
Regards
TD

Similar Messages

  • TS2755 i have no messages in my phone but my storage is 90% full and in my usage it says i have 12MG in messages (saved) but i dont have any messages in my phone - where are they saved ? how can i delete them? please help

    i have no messages in my phone but my storage is 90% full and in my usage it says i have 12MG in messages (saved) but i dont have any messages in my phone - where are they saved ? how can i delete them? please help

        pamalushka54,
    We want to make sure that we get your phone up and running. Can you look to see where you have the most stuff stored at. Settings>General>Usage>Storage.
    This will tell you what exactly is using everything. Then you can delete things from there.
    RobinD_VZWSupport
    Follow us on twitter @VZWSupport

  • Where are contacts saved?

    Hi there,
    This started off as a loss of all contacts from the address book, which has now turned into a curiosity of where exactly do the contacts get saved?
    I have removed the folder ~/Library/Applications Support/Address Book/
    I have actually deleted this folder, logged out, logged back in again and found the address book restored with all contacts. From doing searches on the net everything points to this folder being the place where contacts are saved but obviously it is not. I have no sync service operating nor changed any defaults as this has all been done with a clean account.
    So, where are contacts saved to?

    It is probably being restored from the copy kept in SyncServices (in your Library/Application Support folder). Look in Local folder, and in the various folders there look at ClientName.txt. You will likely find that one of them is com.apple.AddressBook. Beyond that, I do not know the organisation of the various files within the Local folder, except that there is enough data there to restore a missing set of contacts.
    AK

  • PDF Optimizer Settings: Where Are They Saved?

    PDF Optimizer Settings: Where Are They Saved?
    That is, the ones that you create and then Save.
    Also the default one which came along Acrobat Pro (i.e. Standard etc)
    Thanks

    They are stored in the Acrobat User Preferences Area.  The same location is used for Pro, Standard, and Reader.  But the exact location is OS dependant.
    Open up the JavaScript Console window and run this line of code. (instructions at the links below)
    app.getPath("user","preferences");
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • Where are auto saved excel filed stored on a MacBook Pro?

    Where are auto saved excel filed stored on a MacBook Pro?

    Go to http://support.apple.com/kb/HT4946
    and check:
    Where iTunes backups are stored on your computer

  • Where are renditions saved?

    Hi!
    Where are renditions saved?
    Do we create completely new folios (and all the articles in each folio) or are the different renditions of a folio and all the articles in them saved in the save folder?
    Thanks!
    CJ

    But only for the DPS Professional or Enterprise level customers, according to Andrew.
    Is that correct?
    If this is the case, then, the rest of us will have to know ahead of time what device a client is using and share (via the Folio Producer: Organizer or via the Folio Panel in InDesign) the specific "rendition" with the client.
    Even, if a client wants to access the same folio on various devices, they will need, then, to make sure and download the right rendition invitation on the right device.
    This is complicated. Hope it doesn't last too long…
    Thanks!
    CJ

  • Where are settings saved for WCF Service Applications?

    Default Settings for a WCF Service Application are stored in the web.config file and are Read Only because only Application settings are allowed i.e. you cannot change the Scope from "Application" to "User" in the settings designer like
    with other components.  So, in order to save changes to settings the WCF Service Application will need to create a setting property at runtime like this:
    System.Configuration.SettingsProperty newProperty;
    newProperty = new System.Configuration.SettingsProperty("NewSetting");
    newProperty.IsReadOnly = false;
    newProperty.DefaultValue = "New Setting";
    Properties.Settings.Default.Properties.Add(newProperty);
    Properties.Settings.Default.Save();
    OK...this works, but I've looked everywhere and I can't find where the new setting property is being saved.  I have already looked in the C:\Users\[username]\AppData\[Local or Roaming]\[Company Name]\[AppName...etc.]\[version]\user.config and although
    a user.config file was created it does not contain the new property.  Anyone have a clue?
    Actually, this doesn't work...the settings are not saved to the file system.  I located some other posts and modified my code as follows, but the settings are still not saved to the file system.
    System.Configuration.SettingsProperty newProperty;
    newProperty = new System.Configuration.SettingsProperty("NewSetting");
    newProperty.Provider = Properties.Settings.Default.Providers["LocalFileSettingsProvider"];
    newProperty.Attributes.Add(typeof(System.Configuration.UserScopedSettingAttribute), new System.Configuration.UserScopedSettingAttribute());
    newProperty.PropertyType = typeof(string);
    newProperty.IsReadOnly = false;
    newProperty.DefaultValue = "New Setting";
    try
    Properties.Settings.Default.Properties.Add(newProperty);
    catch
    //Just ignore it for now.
    Properties.Settings.Default.Save();
    The new setting appears to be saved only in memory.  If I close Visual Studio then the setting is lost.  Also, I deleted the C:\Users\[username]\AppData\[Local or Roaming]\[Company Name]\[AppName...etc.]\[version]\user.config files and the file
    is no longer being created.
    Looks like I will need to explicitly load/save a text file or use the registry to persist changes to settings.

    Hello Steven,
    >>The new setting appears to be saved only in memory. 
    It seems that the Save() method only saves these runtime added in memory, I suggest you could check the Save method source code since now the .NET is source opened:http://referencesource.microsoft.com/#System/sys/system/configuration/ApplicationSettingsBase.cs,9664b0111a35af52
    >>Looks like I will need to explicitly load/save a text file or use the registry to persist changes to settings.
    Someone provides an implementation about this approach, you could check it:
    http://stackoverflow.com/a/1075318
    Or you could set it in a register entry:
    http://stackoverflow.com/a/26518724
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Where are contacts saved on iPhone 4?

    On my previous phone (Nokia 5800 XM) I could choose between phone mamory and SIM card to save contacts; in iPhone, that option doesn't seem to exist.
    So my question is, where are new contacts saved (iPhone's memory or SIM card)?
    Thank you.
    Note: If there's a way to choose between phone memory and SIM card, please let me know.

    iPhones memory.
    Stedman

  • TS3991 where are documents saved in preview?

    Where are PDF documents saved to icloud in Preview? Either on icloud.com or on any ios Device?  Honestly, where do they go?
    http://help.apple.com/icloud/#/mme7d59147

    This is configurable... We can store the documents at file level other wise inside Database also.

  • Where are memos saved?

    Question: Where are the notes made on the yellow "memo pad" saved to? In iTunes, I can locate backup on music, contacts, bookmarks, etc.—but see no sync/backup for the memo notes.
    Anyone know?
    Thanks!

    It DOES seem odd that notes created on the iPhone can't be synced or edited. There are several other options for transferring notes entered on the iPhone to other places:
    iGoogle lets you create notes on the iPhone that will appear in iGoogle on the desktop. Once created they can be edited on the desktop but not edited again on the iPhone.
    Noter (www.dbelement.com) has a paid note taking app. Unlike iGoogle you can edit the note on the iPhone once it is created and sync it. It has very limited formatting and notes are restricted in size.
    The most promising one is Evernote (www.evernote.com). They are the premier note taking application for computers today, with a rave review from Walt Mossberg in the Wall Street Journal a couple of years ago. I've been using it for several years. The current version only runs on a computer, but I am currently using a closed beta of Version 3, which allows notes to be accessed via the web as well as on the desktop (or notebook or tablet). They also have "fat" clients for Windows Mobile and other mobile operating systems, and promise an iPhone version in the near future. At the current time you can create notes on the iPhone and sync to your desktop via the web, view notes created on the desktop or in a browser on another computer. You cannot edit existing notes on the iPhone at this time. You CAN edit on the desktop or using a desktop browser window, so hopefully the iPhone version isn't far off. It supports full rich text formatting, tagging, searching, etc. It can import web clippings, graphics, works with tablets for ink notes, and most amazingly, can usually interpret the text within a graphic or ink note for searches.

  • Pages 08 Template images -where are they saved?

    I know Pages 08 does not have clip art but I like many of the pictures on the templates. I want to use some of the template images (like the cat.tiff or frog.tiff) on a blank document. Copying & pasting works but I'd rather be able to see all the template tiffs at once. Where are the template images(tiffs) located on my hard drive. Is there a specific iWork folder I can find them in?

    Welcome to Apple Discussions
    The images are "buried" in each template which is buried in the Pages application. You can find them by Control- or right-clicking on the Pages application > Show package contents > Contents > Resources > Templates & then the folder for the template category you want. Then Control- or right-clicking on the template icon > Show package contents > Contents where you will find the actual images.
    Or you can just copy & paste from an open template.

  • Where are the saved pdf websites saved in the phone? (Galaxy S II)

    I saved a website as a pdf file (a firefox feature) but where is it saved? If not there is no point in saving the file anymore if I cant find it. Thanks :)

    /sdcard/Download(s) or if you attach your phone to a computer just look for the Download(s) folder.

  • Where are my saved Firefox tab groups?

    I had lots of tabs organized in groups to read them later...I installed some add-ons which some of them had to do with tabs(Xmarks,FoxTab)...
    after restarting Firefox my groups and tabs are all lost!
    Please help me...I have some kind of '''memory lost feelings''' after this mess!
    SOLVED;
    Thank God I restored all my tabs...
    and thank you too @cor-el
    In case of any problems with "session restore"
    I summarize it:
    1- Go to help -> troubleshooting information
    2-click open "containing folder"
    3-*[IMPORTANT]* CLOSE FIREFOX NOW
    4-cut sessionstore-1.js(or any other number following) and paste it to desktop
    5-rename sessionstore-1.js in desktop to sessionstore.js
    6-*[IMPORTANT]* DELETE sessionstore.bak
    7-move sessionstore.js which is in desktop and place it in the "containing folder "
    8-choose move and replace (in win7)
    9-start Firefox and have fun with your restored session!
    email: [email protected]

    App (pinned) tabs and Tab Groups (Panorama) are stored as part of the session data [1] in the file sessionstore.js [2] in the Firefox profile folder [3].
    Make sure that you do not use "Clear Recent History" to clear the "Browsing History" when Firefox is closed because that prevails and prevents Firefox from opening tabs from the previous session.
    * https://support.mozilla.com/kb/Clear+Recent+History
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js
    * [3] http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox
    It is also possible to use the "Show my windows and tabs from last time" setting, that is usually a more reliable way to restore session data.
    * [http://kb.mozillazine.org/Menu_differences Firefox/Tools > Options] > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"

  • Where are documents saved and how to change it to use an DMS

    Hello,
    I would like to use a Non-SAP Document Management System to use in Portal. I think that this DMS can act as a Content Server.
    But I have no glue how it is possible (from the portal side) and what I can do with it at least. The dark clouds are at least about the following questions:
    What are the requirements for using the content server.
    How to configure the Portal to use the content server.
    Maybe a stupid question.. but what functions are supported in the portal for using content server. How is it used in the daily business?
    I found several documents in context to TREX but non of this was explaining how to connect to an content server.
    Could someone help me with this issue?
    Thx in advance,
      Vanessa

    This is configurable... We can store the documents at file level other wise inside Database also.

  • Where are applications saved on computer

    hi,
    i can find where all the applications are saved but i want to change it to another drive but i cant find where i change this.
    i know for music you have to go into preferences but cant find it for iphone applications

    On the Mac there is a new folder inside the "iTunes Music Library" folder (on the same level as e.g. "Album Artwork" and "Previous iTunes Libraries" is) for applications.

Maybe you are looking for

  • Can I use OSX Server instead of Dropbox?

    We are considering buying OSX Server.  One basis for the purchase would be to replace Dropbox.  We currently use Dropbox with local sync of folders, so all oru people work directly in folders that are synced to everyone else.  Thus all docs are avail

  • Implications of Using a Rule to Populate Periodic Data in a YTD app

    Is it bad practice to specify and populate an intersection with periodic data using rules when the application is set up as YTD? For example: Entity A has a $50 intercompany expense with Entity B. Entity B is reporting a $48 intercompany income with

  • When I turn on my computer I get an error message; AppleSyncNotifier.exe Entry Point not found. What do I do to fix it?

    When ever I log onto my computer I keep getting this error message. AppleSyncNotifier.exe - Entry Point can not be found. Something to do with an SQLite3.dll file. Does anyone know how to fix this?

  • IE working, Firefox not

    Okay here goes, I've implemented a small corporate intranet based upon the template used for our external website. I've been using Dreamweaver as the editor and am serving the site using IIS. The site consists of linked documents and directories, som

  • Adding an array of objects to a JComboBox

    Hi hope someone can help I have searched the forums and cannot find any previous questions that cover this. Basically I want to construct a JComboBox and instead of populating the ComboBox with strings Im wanting to add check boxes. First Question ca