Date description on Open dialogue shows Yesterday when it should be Today

Running 10.5.6. Get Info on a file shows the correct date description, ie Today, 3:58 pm.
However, when the file info on the Open file dialogue box says Yesterday, 3:58pm.

That is odd - have you checked the settings under Date & Time and International prefs panes?

Similar Messages

  • My Macbook is slow and the icons bounce 12-20 times before opening and the battery shows 98% when i should show  100% i forgot how to reset it please help thank you

    My Macbook is slow and the icons bounce 12-20 times before opening and the battery shows 98% when i should show  100% i forgot how to reset it please help thank you

    Reset SMC

  • Shuffle light shows red when it should show green.

    Shuffle light shows red when it should show green. For example, when it's fully charged, the light shows red instead of showing green. When you play a song, the light blink in red too.

    Are you sure the 2nd gen shuffle you have is a REAL Apple shuffle and NOT a
    FAKE?
    LED colors and functions are an indication it a FAKE...

  • Data in the cube is showing wrong when compared with ODS

    Hello BW Gurus,
    We have a waste report in production planning on Cube and ODS separately. The same info package loads both targets (which means same infosource) but when we run a report on Cube, the records are showing multiple entries (i.e. Key Figures are not matching when compared to ODS) where as the ODS records are showing correctly as it was in R/3. There are totally 6 key figures out of which 4 pulled from R/3 and 2 are populated in BW. 
    An Example:
    Waste report in PP run for plant 1000 for 12/2005 and process order 123456.  The operational scrap should be 2.46% and the component scrap should be 3.00% for material 10000000.  The report is showing 7.87% for planned operational waste % and 9.6% for planned component waste %.  These values are not correct.  The ODS values for order 123456 matched the data in R/3 for component and operational scrap.
    There is a Start routine to the ODS and also to the cube. I am not good at ABAP so requesting your Help.
    <b>Here is the ODS Code:</b>
    tables:  /BI0/PPRODORDER.
      loop at data_package.
        select single COORD_TYPE
                      PRODVERS
          into (/BI0/PPRODORDER-COORD_TYPE,
                /BI0/PPRODORDER-PRODVERS)
          from /BI0/PPRODORDER
         where PRODORDER = data_package-PRODORDER
           and OBJVERS   = 'A'.
        if sy-subrc = 0.
          if /BI0/PPRODORDER-COORD_TYPE = 'XXXX'
          or /BI0/PPRODORDER-COORD_TYPE = 'YYYY'.
            data_package-PRODVERS = space.
          else.
            data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
          endif.
        endif.
        if data_package-calday = space
        or data_package-calday = '00000000'.
          if data_package-TGTCONSQTY NE 0.
            data_package-calday = data_package-ACTRELDATE.
          endif.
        endif.
        modify data_package.
      endloop.
    <b>Here is Cube Code:</b>
    tables:  /BI0/PPRODORDER,
               /BIC/ODS.
      TYPES:
      BEGIN OF ys_mat_unit,
        material                 TYPE /bi0/oimaterial,
        mat_unit                 TYPE /bi0/oimat_unit,
        numerator                TYPE /bi0/oinumerator,
        denomintr                TYPE /bi0/oidenomintr,
      END OF ys_mat_unit.
      DATA:
        l_s_mat_unit             TYPE ys_mat_unit,
        e_factor                 type p decimals 5.
      loop at data_package.
        select single COORD_TYPE
                      PRODVERS
          into (/BI0/PPRODORDER-COORD_TYPE,
                /BI0/PPRODORDER-PRODVERS)
          from /BI0/PPRODORDER
         where PRODORDER = data_package-PRODORDER
           and OBJVERS   = 'A'.
        if sy-subrc = 0.
          if /BI0/PPRODORDER-COORD_TYPE = 'XXX'
          or /BI0/PPRODORDER-COORD_TYPE = 'YYY'.
            data_package-PRODVERS = space.
          else.
            data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
          endif.
        endif.
        if data_package-calday = space
        or data_package-calday = '00000000'.
          if data_package-TGTCONSQTY NE 0.
            data_package-calday = data_package-ACTRELDATE.
          endif.
        endif.
        data_package-agsu     = 'GSU'.
        data_package-agsu_qty = 0.
        select single gr_qty
                      base_uom
          into (/BIC/ODS-gr_qty,
                /BIC/ODS-base_uom)
          from /BIC/ODS
         where prodorder = data_package-prodorder
           and material  = data_package-material.
        if sy-subrc = 0.
          if /BIC/ODS-base_uom = 'GSU'.
            data_package-agsu_qty = /BIC/ODS-gr_qty.
          else.
            SELECT SINGLE * FROM /bi0/pmat_unit
              INTO CORRESPONDING FIELDS OF l_s_mat_unit
              WHERE material   = data_package-material
                AND mat_unit   = 'GSU'
                AND objvers    = 'A'.
            IF sy-subrc = 0.
              IF l_s_mat_unit-denomintr <> 0.
                e_factor = l_s_mat_unit-denomintr /  
                              l_s_mat_unit-numerator.
                multiply /BIC/ODS-gr_qty by e_factor.
                data_package-agsu_qty = /BIC/ODS-gr_qty.
              ENDIF.
            else.
              CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
                EXPORTING
                  INPUT                = /BIC/ODS-gr_qty
                  NO_TYPE_CHECK        = 'X'
                  ROUND_SIGN           = ' '
                  UNIT_IN              = /BIC/ODS-base_uom
                  UNIT_OUT             = 'GSU'
                IMPORTING
                  OUTPUT               = DATA_PACKAGE-gsu_qty
                EXCEPTIONS
                  CONVERSION_NOT_FOUND = 1
                  DIVISION_BY_ZERO     = 2
                  INPUT_INVALID        = 3
                  OUTPUT_INVALID       = 4
                  OVERFLOW             = 5
                  TYPE_INVALID         = 6
                  UNITS_MISSING        = 7
                  UNIT_IN_NOT_FOUND    = 8
                  UNIT_OUT_NOT_FOUND   = 9
                  OTHERS               = 10.
            endif.
          endif.
        endif.
        modify data_package.
      endloop.
    some how the AGSU qyt is not populating in the cube and when I dbug the code, I could see a clean record in the internal table but not in the cube.
    your suggestion and solutions would be highly appreciated.
    thanks,
    Swathi.

    Hi Swathi,
    May be you might want to look into the way the % is being calculated in the cube. If the formula involves counting the no. of records, then you will also be counting the -ve records that are posted in the cube unless you have had a compression on the cube. that might give you wrong numbers.
    Doniv

  • Open Dialogue in Preview has no 'recent folders'

    The 'regular' open dialogue shows recently opened folders.  That is very useful, and seems to have disappeared in the Preview Open Dialogue.  Any way to bring that back?

    Me too. 
    'Open Recent ...', is NOT to what I am referring.  I'm sorry I wasn't more clear.
    In the standard open dialogue of every application on the Mac (except Preview) when you pull down the current folder, you will get a list showing a hierarchy of folders showing where the current folder resides (you can then move up the hierarchy).  Below that is a heading called 'Recent Places' ... I should have noted this specifically before.  This shows the most recent 6 folders you have opened.  Typically when you are working, that will be one of the folders where you want to find a file.  It is MUCH faster than locating the folder you want from scratch.
    I'm just concerned that it is the start of eliminating this in all applications.  Why take something well-designed, which is very useful and eliminate it?  I've heard that Preview is showing the influence of iOS.  The next system release is supposed to move even more in that direction.  I can't say I'm looking forward to it though.

  • Every time I open a pdf file which includes a javascript, a dialogue box pops up. I have a question why 'Do not show this message again' is not working even I checked on the checkbox. It should block the dialogue next time when I open the same pdf file bu

    Every time I open a pdf file which includes a javascript, a dialogue box pops up. I have a question why 'Do not show this message again' is not working even I checked on the checkbox. It should block the dialogue next time when I open the same pdf file but not working. What is the matter and how can I deal with it?

    I am trying it on Adobe Acrobat Reader 9.2.1. Tried to fix Hex code, and also tried 'edit-preference-trust manager'. I focusing on Adobe registries but still couldn't fix the problem.

  • Showing yesterday's data in SSRS

    Hi Guys,
    I need some help with an expression for SSRS. I need to get only the data for the last date in the query . I just want the previous date information whereas on Monday, it's going to be Friday's information.
    I tried with this as a test but is not working.
    =IIF(Fields!OpenDate.Value >= DateAdd("d",-1,today),COUNT(Fields!InFxO.Value), 0)
    I need it for to create a dashboard and show yesterday's factory output.
    Thanks

    Hi Eric1000,
    According to your description, you want to count the number of InFxO values when OpenDate is prior to the current day.
    In this case, we can use IIF function returns value of InFxO depending on whether OpenDate is before today, then use Count function returns a count of non-null values specified by the expression, evaluated in the context of the given scope. Please refer
    to the expression like below:
    =Count(IIf(Fields!OpenDate.Value < Today(), Fields!InFxO.Value, Nothing))
    Besides, Sum function returns the sum of all the non-null numeric values specified by the expression, evaluated in the given scope. We can also use Sum function to implement the function like below:
    =Sum(IIf(Fields!OpenDate.Value <Today(), 1,0))
    If there is any misunderstanding , please feel free to let me know.
    Best Regards,
    Wendy Fu

  • Problem description: My  macbook pro since this afteon has been slower, every application I open, it takes a long time to open, and shows the spinning beach ball for a while before it opens or performs some task, or responds to a click-  EtreCheck

    My computer
    Problem description:
    My  macbook pro since this afternoon has been slower, every application I open, it takes a long time to open, and shows the spinning beach ball for a while before it opens or performs some task, or responds to a click…
    EtreCheck version: 2.1.8 (121)
    Report generated 31 de março de 2015 18:29:15 BRT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.3 GHz Intel Core i5 CPU: 2-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 250
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 512 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 0:25:47
    Disk Information: ℹ️
        Hitachi HTS545032B9A302 disk0 : (320,07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 318.84 GB (47.94 GB free) - 51 errors
                Core Storage: disk0s2 319.21 GB Online
        MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.trusteer.rapport.rapportd.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.trusteer.rooks.rooksd.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    UNKNOWN Hidden (missing value)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        Stickies    Application  (/Applications/Stickies.app)
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
    User internet Plug-ins: ℹ️
        npsf_cef: Version: sf 3.3.1.1 [Click for support]
        Google Earth Web Plug-in: Version: Unknown
    Safari Extensions: ℹ️
        DivX HiQ
        DivX Plus Web Player HTML5 <video>
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
        Trusteer Endpoint Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 318.84 GB Disk used: 270.90 GB
        Destinations:
            Time Machine Backups [Local]
            Total size: 999.86 GB
            Total number of backups: 60
            Oldest backup: 2012-07-15 01:16:54 +0000
            Last backup: 2015-03-29 19:28:06 +0000
            Size of backup disk: Excellent
                Backup size 999.86 GB > (Disk size 318.84 GB X 3)
    Top Processes by CPU: ℹ️
            97%    rapportd
             3%    WindowServer
             1%    mds
             0%    fseventsd
             0%    distnoted
    Top Processes by Memory: ℹ️
        155 MB    Safari
        120 MB    Finder
        86 MB    rapportd
        86 MB    WindowServer
        69 MB    mds_stores
    Virtual Memory Information: ℹ️
        12.56 GB    Free RAM
        2.53 GB    Active RAM
        428 MB    Inactive RAM
        1.66 GB    Wired RAM
        1.04 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 31, 2015, 06:00:15 PM    Self test - passed
        Mar 31, 2015, 01:13:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-131305_[redacted].crash
        Mar 31, 2015, 01:05:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-130542_[redacted].crash
        Mar 31, 2015, 12:24:33 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Microsoft Error Reporting_2015-03-31-122433_[redacted].crash
        Mar 30, 2015, 05:45:38 PM    /Library/Logs/DiagnosticReports/Skype_2015-03-30-174538_[redacted].cpu_resource .diag [Click for details]
        Mar 30, 2015, 01:52:07 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Last.fm Scrobbler_2015-03-30-135207_[redacted].crash
        Mar 29, 2015, 05:55:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_20 15-03-29-175505_[redacted].crash
        Mar 29, 2015, 01:06:38 PM    /Library/Logs/DiagnosticReports/VLC_2015-03-29-130638_[redacted].hang
        Mar 29, 2015, 01:02:47 PM    /Library/Logs/DiagnosticReports/VLC_2015-03-29-130247_[redacted].hang

    Open Activity Monitor and kill this process - rapportd.
    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • I recently upgraded to Yosemite. Yesterday when I opened up the iPhoto (which I have it in my external drive due to the size of file) I get the message that it is not compatible with the new system(or something like that) and ask me to upgrade so I d

    I recently upgraded to Yosemite. Yesterday when I opened up the iPhoto (which I have it in my external drive due to the size of file) I get the message that it is not compatible with the new system(or something like that) and ask me to upgrade so I did. Then another message pops ups and asked for rebuilding the Thumbnails. So I clicked rebuild. Next it asked me to do one of three things(I can't remember all of them) so I chose the last one which is to download a photo to iPhoto. Now I only have that photo I downloaded in iPhoto file but not the rest of my pictures. The iPhoto library which is stored in my EHD shows it has 349GB but it only show one thumbnail of the last picture I downloaded after the rebuild process. What can I do to recover the rest of the file?
    Thanks for your help.
    George Kyaw
    <Email Edited by Host>

    I recently upgraded to Yosemite. Yesterday when I opened up the iPhoto (which I have it in my external drive due to the size of file) I get the message that it is not compatible with the new system(or something like that) and ask me to upgrade so I did. Then another message pops ups and asked for rebuilding the Thumbnails. So I clicked rebuild. Next it asked me to do one of three things(I can't remember all of them) so I chose the last one which is to download a photo to iPhoto. Now I only have that photo I downloaded in iPhoto file but not the rest of my pictures. The iPhoto library which is stored in my EHD shows it has 349GB but it only show one thumbnail of the last picture I downloaded after the rebuild process. What can I do to recover the rest of the file?
    Thanks for your help.
    George Kyaw
    <Email Edited by Host>

  • Document not showing properly when opening in Acrobat 9 Pro

    When I create a document in InDesign and export it as a PDF, I want to see what it looks like as the PDF. One of the documents that I opened does not look as it should. It only has the photo on the ad but is missing the red background and the words on the ad. As a thumbnail, it looks correct. But, it is not showing up correctly when I open it in Acrobat. Some of the other ads are fine but this one in particular is not showing me all the elements. What do I do to fix this?

    Yes, I have the most current version of AA9. I exported the document from InDesign using the PDF exporter. That is what I have used for years and it has worked fine. I just installed CS4 yesterday.
    I think I realized what the problem is but I don't know how to fix it properly. I actually went back to the preferences in AA9 to the document color options in accessibility and changed it back to its original state (which, I believe, is where nothing is checked). I had originally changed it because I was trying to experiment with the background of the program. It's black and when I open a PDF, I can't see the black border. But I mistakenly changed the document color. Which brings me to the question of: how do you change the background color of the page so that I can see the black border on the document? I sell advertising so I need to be sure that when people send me their ads, they have black borders. And I can't tell when it has the background behind the document so dark. Acrobat Reader has a white background.
    Additionally, can I still install the latest Acrobat Reader and use that instead of AA9 if I want to? It seems easier.

  • Spotlight does not open a finder window when i choose Show all in finder menu?

    I have a significant number of files in my Macbook Air. A lot of them are research papers and medical literature.
    About a month ago I updated the operating system from snow Leopard to mountain Lion and I had no reasons to complain except a smaller battery time.
    Since then I installed every OS update.
    After the last update, a few days ago, Spotlight does not open a finder window when i choose Show all in finder menu.
    Spotlight continues to work properly if I write a name or expression in spotlight in a finder window but not in the upper left corner at the menu bar
    As this been described yet?
    Thank you in advance
    Miguel Tavares

    I had the same problem yesterday after performing a clean install of Mountain Lion (10.8.2) on my MacBook Pro.
    I resolved the problem by booting from the Mountain Lion Recovery Partition and then running Disk Utilty (Repair) for the primary disk on which Mountain Lion is installed.  It identified (and repaired) many permissions issues...
    When I rebooted following the repair, Spotlight worked again properly -- including the "Show All in Finder" function.

  • How do I modify the Long Description of video files, so that it shows up when on the iPad or using Home Sharing?

    The content manually inserted into the Description field in iTunes does not display in either the iPad Video App nor when using Home Sharing. I then used MetaX to populate the Long Description field, which one cannot modify directly in iTunes. However, the descriptions still do not show up on either the iPad or when using Home Sharing. The problem is only with TV shows that I ripped from legitimate DVDs; items bought from iTunes seem to work fine. So I opened up a file bought on iTunes with MetaX, and the Long Description field is not even populated leading me to believe Apple had that information stored elsewhere. This is getting so frustrating, and Apple customer care does not seem to care.
    Does anyone have any other suggestions? Where has Apple hidden the long descriptions for TV shows that do show up on Home Sharing? Is there other 3rd party software that may fix the problem? Thanks in advance for any help or suggestions!

    Go to the form login and select the mistake with the arrows and press the Delete button, soon the mistake will be deleted

  • I have just downloaded a free app and there is no icon and it will not open from the list even tho it appears to have downloaded and the "open" button is available.  Does not show up when I search for it.  Plenty of memory . . .

    I Have an iPad mini running iOS 7.1.2,  I downloaded a new app and it's icon does not appear anywhere ( have ~ 180 apps so not at limit) and it won't open from the purchased apps list.  It does not show up when I search for it so can't open t that way either.  It doesn't require iOS 8.  Can't delete and reinstall, cause not icon.  This is not a normal "app won't open" question.  it doesn't start the. Stop it just doesn't seem to exist.  Any help is appreciated

    Hello Chelleuri,
    Thank you for using Apple Support Communities. 
    The following article provides information to trroublehshoot issues with installed apps, including not opening.
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open - Apple Support
    Regards,
    Jeff D. 

  • Any ideas on how to fix ipad after the new iOS 7 update? My battery will not charge, my ipad is hot to the touch, the iTunes Store won't open, and my messages on Facebook aren't showing up when I chat and pintrest won't pin to my boards.

    Any ideas on how to fix ipad after the new iOS 7 update? My battery will not charge, my ipad is hot to the touch, the iTunes Store won't open, and my messages on Facebook aren't showing up when I chat and pintrest won't pin to my boards.

    If you have all your music on the cmputer then i would connect up my phone uncheck the Sync Music option and apply.
    This should take all the music off your phone .Then you can resync the music back on to it.
    If this doesn't work maybe a restore to factory settings and start from scratch is the way to go

  • I deleted the photos via Finder and empty trash long time ago. The thing is, that I want to recover one event or album.  The event appears in the iphoto but when open, it shows "!". Is it possible to recover the photos?

    I deleted the photos via Finder and empty trash long time ago. The thing is, that I want to recover one event or album.  The event appears in the iphoto but when open, it shows "!". Is it possible to recover the photos?

    No.  When you removed the photos via the finder you damage the library.  Photos should always be removed from the library using iPhoto, never with the Finder.
    If you have a Time Machine backup of the library from before you deleted the photos you can restore the library to the Desktop and export that album from it to import into your current library.
    It's been too long to be able to try one of the file recovery applications.  You sure to have overwritten those files with new files since them.
    OT

Maybe you are looking for

  • Kernel Panic - can't start in Safe Mode or from OS Install disc

    Can anyone help me ?, Here's what happens : 1. I press the power button to switch on 2. The usual grey screen with the apple logo appears but after a few seconds it is replaced by a darker grey/black screen with a message in the centre saying somethi

  • How to represent foreign key relationship between entity services

    Hi All, I have two entity services sbu and lob with remote persistensy(web service).In the sql database also i have these two tables. lob table attributes: lobId and lobName. sbu table attributes:sbuId,sbuName,and lobId.Here lobId a is foreign key re

  • Metadata stripping MobileMe galleries

    It was bought to my attention that both Aperture and iPhoto when using the MobileMe galleries with the download option that metadata is lost when photos are downloaded. This is really incredibly poor design. Thus just encouraging more orphaned photos

  • NOISE NINJA 64-BIT Plugin for Aperture 3 RELEASED!!!

    Hi all, Picturecode has just released their best-in-class Noise solution in 64-bit for Aperture 3!!! I have been a NN fan for a long time, and I am going to go play with it now. Available as a download for registered users at http://www.picturecode.c

  • Poor Resolution - Help

    Hi guys,    I  bought a Lenovo THinkpad T500 (model 20810CTO) like 8 months ago.  Since this time, I have been "dealing" with a terrible resolution that I cna't figure out how to make better.  I hope this is not normal, or the best it can get because