Cannot display photos on tv

I recently purchased a classic ipod and composite cables. I can display movies, tv shows and podcasts, however, I cannot display photos. Any suggestions?

Anyone have any suggestions?

Similar Messages

  • Cannot display photos on iPhone 5 with iOS 7.1.2 after deleted some photos

    Connot display photos on iPhone 5 with iOS 7.1.2 after doing some photos deletion, seems the photos index corrupted.
    How to rebulid or resolve?
    Many thanks!!

    yes, everything else seems to work except bluetooth. it just keeps searching all the time and none of my devices see the phone including macbook, iMac or speakers. I've reinstalled the system and reset it as well, Ive also followed one advice that's on one of the forums where it was suggested to switch the flight mode on, reset the phone and switch the flight mode off. No results.
    Do you have any other ideas?

  • Cannot display photos on Face Book

    On Face Book I can see photos on my wall and in my photos tab which friends have tagged me on but they cannot be seen by my friends.
    Also my msn keeps continually cutting out.
    == This happened ==
    Every time Firefox opened
    == Using Facebook

    Anyone have any suggestions?

  • Hi there, I cannot display photos which extension is .PMS

    Hi there,
    I did recently transfer some pictures from a external hard-drive into my mac, however those pictures appear like this; MG_0586.JPG.PMS
    when I try to import those pictures into Iphoto , this says the following error  UNREADABLE FILE; THE FOLLOWING FILE COULD NOBE IMORTED (the file is an unrecognised format.)
    would someone tell me what kind of software I would need in order to display it?
    Many thanks in advance.
    JO

    A quick Google search turns up some hits on encrypted files from Photshop and others.
    Are you're files encrypted...
    Detailed information for file extension PMS:
    Primary association: AliceSoft PMS Bitmap
    File classification: Graphic
    Identifying characters Hex: 50 4D 01 00 42 ,  ASCII: PM..B
    Related links: Photoshop Plugin
    Other applications associated with file type PMS:
    Password Master (Encrypted Password File) by dreameesoft.comPassword Master helps you to maintain all your personal details securely. The PocketPC version comes with a Desktop version for the PC.
    Pegasus Mail (Signature) by David HarrisVarious signature files. The Mime types used with this association are: application/x-pi-mail.
    Personal Media Suite (Encoded File) by Freecom TechnologiesSoftware provided with some hardware sold by Freecom Technologies. The identifying characters used for this association are - Hex: 50 4B 03 04 14 00 09 00 08 00 ,  ASCII: PK
    Pop'n Music ScriptMusic game simulator file type.

  • I cannot download photos from my digital camera to Iphoto (version '09). I have been able to successfully do this up to 4 days ago but not yesterday. My camera/device is recognized in the Source List but photos won't download for me to import to library.

    I cannot download photos from my digital camera (via a cable) to Iphoto (version '09). I have been able to do this successfully up til 4 days ago but not yesterday (Dec. 25th). My camera/device is recognized in the Source List, but when it tries to download the photos, all I get are the words "Loading Photos" in the area where the thumbnail pictures usually display. The little "gear" symbol next to the words but it just goes round and round. Nothing ever downloads, and instead of showing me how many pictures there are to import it just says "No photos". So therefore I cannot import the photos to my library since they won't even download.
    I was getting an error message a few days ago that my Iphoto library was getting full, so I emptied my trash in both Iphoto and on my computer. I had this same problem back in October and emptying the trash and getting rid of some photos did help (can I really be using that much storage space for the pictures?). But it didn't help this time.
    Any suggestions as to what to do to solve the problem? I would try taking the SD card out and inserting that into the slot on the computer to see if I could load pictures that way; but the last time I did that, they wouldn't load. Not sure if I lost pics from the disc or not.
    Thank you,
    Novice50

    1. You did not get an error message telling you that your iPhoto library was getting full. You got a message telling you that your HD was getting full, right?
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD. Nothing else can be done until you do.
    Purchase an external HD and move your Photos and Music to it. Both iPhoto and iTunes can run perfectly well with the Library on an external disk.
    Your Library has been damaged from being run on an overfull disk.
    How much free space on it now?

  • Problems displaying photo

    Hi All,
    In the first place, I've already searched for this topic and I didn't find any suitable solution, maybe that's because I'm a newbie.
    Windows XP
    Oracle XE 11.2
    APEX 4.0.2.00.09
    It is a school application. 3 Pages.
    Page 1: login
    Page 2:
    HTML Text with an automatic row fetch sowing pupils data, also there is an item DISPLAY IMAGE called P2_DISPLAY_FOTO that reference the actual database column containing the BLOB, everything works great.
    I can see the pupils data with corresponding photo.
    There is a button (named TEST) that will redirect to Page 3.
    There is an After Region Computation that will store
    the BLOB information into a hidden item called P3_DISPLAY_FOTO. This is a pl/sql Function Body, and this is what it does:
    return '<img src="'||apex_util.get_blob_file_src('P2_DISPLAY_FOTO',:P2_ALUMNOS_DNI)||'" />';
    P2_ALUMNOS_DNI is the primary key for the table containing the BLOB column.
    Page 3:
    This page will be used to perform some calculations for the chosen pupil from Page 2, and I need to show data from previous Page 2, such as Name, Last Name, and PHOTO.
    The thing is, I DO NOT WANT TO ACCESS DATABASE AGAIN TO GET THE BLOB and name and last name, I'm trying to avoid unnecessary database queries.
    There is no problem to show again pupil name and last name. But I cannot display the corresponding photo.
    In order to display the photo again, this is what I did:
    - I created a subregion as html text with shortcuts
    - defined as region source = &P3_DISPLAY_FOTO.
    wich has been set on Page 2 after region computations
    Well, it does'n work, the sub region will show the following string:
    <img src="apex_util.get_blob_file?a=103&s=326193120935733&p=2&d=7366714062123782&i=8726421562708554&p_pk1=20912349&p_pk2=&p_ck=0B5CD62FA1A56005CA6AB150510F60C3" />
    The strange thing is:
    I tried to replace the region source
    &P3_DISPLAY_FOTO.
    for
    <img src="apex_util.get_blob_file?a=103&s=326193120935733&p=2&d=7366714062123782&i=8726421562708554&p_pk1=20912349&p_pk2=&p_ck=0B5CD62FA1A56005CA6AB150510F60C3" width = "200px" />
    and it works.
    I also tried to define the sub region with region source=
    htp.p('<div class="sparepartImgContainer">');
    htp.p('&P3_DISPLAY_FOTO.');
    htp.p('</div>');
    but it doesn't work either.
    Hope my explanation is clear.
    I'll try testing some other ideas in the meanwhile...
    any ideas will be appreciated.
    Thank you
    Regards.
    Found how to fix this.
    On Page 2, I changed the P3_DISPLAY_FOTO computation
    from
    return '<img src="'||apex_util.get_blob_file_src('P2_DISPLAY_FOTO',:P2_ALUMNOS_DNI)||'" />';
    to
    return ' '||apex_util.get_blob_file_src('P2_DISPLAY_FOTO',:P2_ALUMNOS_DNI)||' ';
    And I changed Page 3 sub region region source
    from
    &P3_DISPLAY_FOTO.
    to
    <img src=&P3_DISPLAY_FOTO. />
    Now everything works great.
    Sorry to disturb you all.
    Regards
    Edited by: CJR on May 15, 2013 6:28 AM

    CJR wrote:
    There is an After Region Computation that will store
    the BLOB information into a hidden item called P3_DISPLAY_FOTO.By way of explanation, hidden page items cannot be used to contain HTML code. For security reasons they are always HTML-escaped when referenced as static text substitution strings.
    If you must store HTML code in session state and access it using static text substitution (not recommended) then use an application item.

  • WRT300N v1 Internet Explorer cannot display the webpage

    An intermittent problem occurs where occasionally during browsing the web I'll get an Internet Explorer "cannot display the webpage" and then I reload the page and often it works on the reload.  The problem is very frequent and so nearly every webpage I try to open I have to reload in order to access it. 
    A temporary fix is unplugging the WRT300N v1 and plugging it back in.  For a while, it works fine, but eventually the problem creeps up again.
    I have firmware v 1.03.3
    I've got two laptops, one Mac running OS 10.x and one Dell running Vista.  I also have a desktop PC running XP.  The two laptops use the wireless connection.  The PC uses a wired connection.  All 3 computers experience this same problem browsing web pages.
    I've  read the forums and mostly I've seen people talking about problems with the WRT300N v1 as far as the wireless connection, but this time I'm having issues even with the wired connection, so I feel that this issue isn't addressed, or at least I haven't found where it was addressed.
    How do I fix this issue permanently?

    I too am having the same problem. I used another system with IE7 installed and found that many sites that were "unable to be displayed" were accessed with IE7 on a differant computer system running Windows XP.
    I realize it could be a router thing as well....but after i went through all the tech help i could find online it still did not solve the problem. I decided to work it out myself.
    I found my solution when trying to go to sites with mp3 files on them.  Thats when i discovered that with Windows Vista I had to manually select what program applications would be used to perform IE7 features (webpage content) in order for the pages to load properly.
    To do this in Windows Vista - just go to Start / Program Defaults / Set Program Access and defaults  From there you can select which programs to open if IE7 cant handle the file extention on its on.  That was my problem all along.
    You may have to go as far as setting your file associations in Windows Explorer.  Windows Vista had set the file extension .php to open with Windows Photo Gallery.
    I am still going through all the file types and finding file extentions that are configured wrong within Windows Vista.
    UPDATE:  I had problems opening webpages from links from online searches that were within various forums and also on websites that required a login but popup a separate window to login to.  I don't know if you have the same problem with these sites.
    I uninstalled a Windows Update (kb927143) and can now access those.  I know this could be risky but I still have my firewall and antivirus running. Until IE7 is fixed its the only choice I have.
    To do this in Vista....go to Control Panel ... Programs and Features...then click view installed updates.  You will find it there if you have it installed.  From there you can uninstall it.
    Hope this helps you to solve your problem.
    Message Edited by nannahawktx on 08-27-2007 09:02 PM

  • Itunes cannot sync photos

    Trying to sync photos to new 80GB Classic. I get the following error message "itunes cannot sync photos to the ipod "ipod name" because the folder "my pictures" cannot be found."
    I coincidentally got a a new computer a week ago and I get the same error message on both the new computer and the old computer.
    I've seen several posts about photo syncing problems but I have not yet seen the resolution...maybe I missed it? Any help?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take an action that isn't working the way you expect. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • Problem Displaying Photos Attached to an Email

    On my U530, I cannot display  a photo that is sent to me as an attachment to an email.   When I click on the photo, I am taken to Lenovo Photos and the photo is not displayed, not can I figure out how to display it.  Is there a way that I can just display the photos in some other manner?

    Try downloading the photo/photos and determine the type (that is png, jpeg, etc.). Try openning it with other program (you can use paint) by right clicking the photo file and choosing the other program if it can't be  open by Lenovo Photo.

  • Cannot copy photos from HP Photosmart with Windows Vista

    I know how to copy photos onto my iPod (30G) and have done so before. I recently bought a new computer with Vista and cannot copy photos from my Pictures folder. I get a message that says, "Some of the photos...were not copied to the iPod...because they cannot be displayed on your iPod." What can I do to help fix this? I have tried resizing and using Adobe Photoshop and I get the same message.
    Thanks for the help.

    I use Picasa. You don't have to use iTunes at all. Connect the phone with the USB cable and launch the app of your choice, such as Picasa. Click the "Import" button at the upper left. Your iPhone should appear in the dropdown of choices to import from. You can then import all or some of the photos in the Camera Roll. You should be able to do the same thing with Microsoft Picture Manager or any other photo management program.
    The reason that Elements is the only choice is that's the only one that iPhoto on the phone recognizes albums in.
    You cannot move photos INTO the Camera Roll from your computer; it's a one-way transfer. But you can sync photos to the Photos app on the iPhone. You either use Elements, or just create a folder on your computer for photos to sync, then create a sub-folder for each album you want on your computer. Copy the photos to each album, then go to the Photos tab in iTunes and select the top-level folder. When you sync each sub-folder will become an album on the iPhone.
    However, I consider the photo app on the iPhone rather limited and klunky. Instead I use the app MyPics from the app store. It syncs photos from my Picasa Web albums directly to the phone over the air. I can also create albums in Picasa Web from the phone, and upload images from the Camera Roll directly to Picasa Web.
    Another way to get photos (and other files) to and from the phone is Dropbox and similar cloud-based storage solutions.

  • I cannot attach files in hotmail, cannot raise photos to facebook, safari falls whenever I try to attach a file.

    I cannot attach files in hotmail, cannot raise photos to facebook, safari falls whenever I try to attach a file.
    The mac this one a day in updates, but this problem happens to me.
    Process:         Safari [140]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (6533.21.1)
    Build Info:      WebBrowser-75332101~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [85]
    Date/Time:       2011-05-09 12:24:10.952 +0200
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          99211 sec
    Crashes Since Last Report:           75
    Per-App Interval Since Last Report:  92806 sec
    Per-App Crashes Since Last Report:   21
    Anonymous UUID:                      E59FBC7A-4F21-4720-8CCF-20B630E11826
    Exception Type:  EXC_ARITHMETIC (SIGFPE)
    Exception Codes: EXC_I386_DIV (divide by zero)
    Crashed Thread:  12
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff82e5d29a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff82e5d90d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8085c932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8085bdbf CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff870667ee RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff870665f3 ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff870664ac BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff823aae64 _DPSNextEvent + 718
    8   com.apple.AppKit                        0x00007fff823aa7a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.Safari                        0x0000000100015ff6 0x100000000 + 90102
    10  com.apple.AppKit                        0x00007fff8237048b -[NSApplication run] + 395
    11  com.apple.AppKit                        0x00007fff823691a8 NSApplicationMain + 364
    12  com.apple.Safari                        0x0000000100009f18 0x100000000 + 40728
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff82e7612a kevent + 10
    1   libSystem.B.dylib                       0x00007fff82e77ffd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff82e77cd4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff82e777fe _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff82e77128 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff82e76fc5 start_wqthread + 13
    Thread 2:  WebCore: IconDatabase
    0   libSystem.B.dylib                       0x00007fff82e97f8a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff82e9bda1 _pthread_cond_wait + 1286
    2   com.apple.WebCore                       0x00007fff847ac0f9 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3   com.apple.WebCore                       0x00007fff847a81fc WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4   libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 3:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff82e5d29a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff82e5d90d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8085c932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8085bdbf CFRunLoopRunSpecific + 575
    4   com.apple.Safari                        0x000000010002f5c5 0x100000000 + 193989
    5   com.apple.Safari                        0x000000010002f555 0x100000000 + 193877
    6   libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff82e5d29a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff82e5d90d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8085c932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8085bdbf CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff857b6f5f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff85737f29 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 5:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x00007fff82e97f8a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff82e9bda1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff88737a50 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari                        0x00000001001be5bd 0x100000000 + 1828285
    4   com.apple.Safari                        0x00000001000470a7 0x100000000 + 290983
    5   com.apple.Safari                        0x0000000100046f25 0x100000000 + 290597
    6   libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 6:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff82ea0e52 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff8087e498 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 7:  WebCore: LocalStorage
    0   libSystem.B.dylib                       0x00007fff82e97f8a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff82e9bda1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff88737a50 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff84afcfb1 WebCore::LocalStorageThread::threadEntryPoint() + 193
    4   libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff82e5d29a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff82e5d90d mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff803ca3a6 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff803ca2e6 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff82e5d29a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff82e5d90d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8085c932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8085bdbf CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation                0x00007fff8085bb46 CFRunLoopRun + 70
    5   com.apple.DesktopServices               0x00007fff836d14d2 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 514
    6   ...ple.CoreServices.CarbonCore          0x00007fff81dc8335 PrivateMPEntryPoint + 63
    7   libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff82e76f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff82e7735c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff82e76fc5 start_wqthread + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff82e76f4a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff82e7735c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff82e76fc5 start_wqthread + 13
    Thread 12 Crashed:
    0   com.apple.CoreGraphics                  0x00007fff83ddbb6f cmyk32_mark_pixelshape + 31855
    1   com.apple.CoreGraphics                  0x00007fff83df2ec4 cmyk32_mark + 484
    2   com.apple.CoreGraphics                  0x00007fff83e055fd cmyk32_image + 461
    3   libRIP.A.dylib                          0x00007fff82e2669d ripl_Mark + 23
    4   libRIP.A.dylib                          0x00007fff82e26601 ripl_BltImage + 1389
    5   libRIP.A.dylib                          0x00007fff82e25e21 ripc_RenderImage + 323
    6   libRIP.A.dylib                          0x00007fff82e32516 ripc_EndLayer + 992
    7   com.apple.CoreGraphics                  0x00007fff83b2535d CGContextEndTransparencyLayer + 96
    8   com.apple.CoreGraphics                  0x00007fff83ca1e85 CGPDFDrawingContextDrawGroupStream + 351
    9   com.apple.CoreGraphics                  0x00007fff83ca7abb CGPDFDrawingContextDrawGroup + 464
    10  com.apple.CoreGraphics                  0x00007fff83ca2b47 op_Do + 143
    11  com.apple.CoreGraphics                  0x00007fff83b69536 pdf_scanner_handle_xname + 105
    12  com.apple.CoreGraphics                  0x00007fff83b688f7 CGPDFScannerScan + 472
    13  com.apple.CoreGraphics                  0x00007fff83b66890 CGPDFDrawingContextDrawPage + 503
    14  com.apple.CoreGraphics                  0x00007fff83b6664a CGContextDrawPDFPageWithProgressCallback + 100
    15  com.apple.ImageIO.framework             0x00007fff885cad8b getBandProcPDF + 2275
    16  com.apple.ImageIO.framework             0x00007fff88587a02 glueCopyImageBlockSet + 2292
    17  com.apple.ImageIO.framework             0x00007fff885746c8 ImageProviderCopyImageBlockSetCallback + 189
    18  com.apple.CoreGraphics                  0x00007fff83b40282 img_blocks_create + 356
    19  com.apple.CoreGraphics                  0x00007fff83b0964c img_data_lock + 2726
    20  com.apple.CoreGraphics                  0x00007fff83b07eaf CGSImageDataLock + 212
    21  libRIP.A.dylib                          0x00007fff82e2521f ripc_AcquireImage + 2431
    22  libRIP.A.dylib                          0x00007fff82e23aa3 ripc_DrawImage + 1218
    23  com.apple.CoreGraphics                  0x00007fff83b22cda CGContextDrawImage + 446
    24  com.apple.ImageIO.framework             0x00007fff885ce1e7 CGImageCreateCopyWithParametersNew + 1757
    25  com.apple.ImageIO.framework             0x00007fff885ccf6c CGImageSourceCreateThumbnailAtIndex + 3236
    26  com.apple.AppKit                        0x00007fff827c71a8 -[NSNavFBENode _quickLookImageWithMaxSize:isThumbnail:] + 865
    27  com.apple.AppKit                        0x00007fff827d1731 +[NSNavNodePreviewHelper _subthreadComputePreviewThumbnailImages] + 380
    28  com.apple.Foundation                    0x00007fff85737f29 __NSThread__main__ + 1429
    29  libSystem.B.dylib                       0x00007fff82e964f6 _pthread_start + 331
    30  libSystem.B.dylib                       0x00007fff82e963a9 thread_start + 13
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x00000000ffff0000  rbx: 0x0000000000000001  rcx: 0x0000000000000000  rdx: 0x00000000ffffffff
      rdi: 0x00000000000000b7  rsi: 0x0000000000000001  rbp: 0x0000000100e7b9a0  rsp: 0x0000000100e7aa20
       r8: 0x0000000000000001   r9: 0x00000000000000b6  r10: 0x00000000000000b7  r11: 0x00000000000000b7
      r12: 0x00000000000000b7  r13: 0x0000000000000096  r14: 0x00000001011a7e80  r15: 0x00000001011a840b
      rip: 0x00007fff83ddbb6f  rfl: 0x0000000000010287  cr2: 0x000000011b619000
    Binary Images:
           0x100000000 -        0x1006afff7  com.apple.Safari 5.0.5 (6533.21.1) <B81D1199-542C-D929-A1CA-A139EA6262C1> /Applications/Safari.app/Contents/MacOS/Safari
           0x1198a2000 -        0x1198a6ff7  libFontRegistryUI.dylib ??? (???) <89E50DF0-2A72-B443-28AE-5F27EC7E22C7> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x1198ac000 -        0x1198adfff  ATSHI.dylib ??? (???) <F6C4F446-7AC4-7A17-9302-C38A016322B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x119b6a000 -        0x119b90fff  GLRendererFloat ??? (???) <0AF0FF0D-6FD6-B5FA-9991-C8F58E8F1DD4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11a110000 -        0x11a2a1fef  GLEngine ??? (???) <7B2CD458-D828-6A44-C918-C194838974D5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11a2d2000 -        0x11a6dcfe7  com.apple.ATIRadeonX2000GLDriver 1.6.26 (6.2.6) <667EE5BF-ADB3-2550-6A76-1C2048F78A24> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
        0x7fff80003000 -     0x7fff8028bfef  com.apple.security 6.1.2 (55002) <015C9A08-3D07-9462-8E91-DB1924349621> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff80294000 -     0x7fff802aafff  com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff80377000 -     0x7fff80714fe7  com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff80745000 -     0x7fff80750fff  com.apple.CrashReporterSupport 10.6.7 (258) <BB0B9A08-6CEC-0500-5BD1-C18E1465E406> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff80751000 -     0x7fff807ebff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff80810000 -     0x7fff80987fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff80988000 -     0x7fff809d7ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff809d8000 -     0x7fff80a54ff7  com.apple.ISSupport 1.9.4 (52) <93A57F16-3BD5-25AD-5CFF-00007A141129> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff80a55000 -     0x7fff80c97fe7  com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff80c98000 -     0x7fff80c9eff7  com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff80c9f000 -     0x7fff80caefff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff80caf000 -     0x7fff80cf3fe7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <F4ED3329-1A86-EB10-CFC2-999D8699B5E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff80d00000 -     0x7fff80dbdfff  com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff80dbe000 -     0x7fff80dc1ff7  com.apple.securityhi 4.0 (36638) <EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff80de3000 -     0x7fff80de3ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff80e2f000 -     0x7fff80e45fe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <F006B2C9-C03F-F863-1FBB-952EC77AE699> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff80e46000 -     0x7fff80ec3fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff80ec4000 -     0x7fff80fddfef  libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff80fde000 -     0x7fff817e8fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8181c000 -     0x7fff818bcfff  com.apple.LaunchServices 362.2 (362.2) <87E172DB-2C0E-E2E5-2A75-FB4284AECDAF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff81932000 -     0x7fff81939fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff81adf000 -     0x7fff81ae1fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff81bbb000 -     0x7fff81c05ff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff81c06000 -     0x7fff81c0bfff  libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff81c0c000 -     0x7fff81c8aff7  com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff81c8b000 -     0x7fff81cbcfff  libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff81cbd000 -     0x7fff81d06fef  libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff81d41000 -     0x7fff81d42ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff81d43000 -     0x7fff81dc0fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff81dc1000 -     0x7fff820f5fff  com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff820fb000 -     0x7fff82111fef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
        0x7fff82112000 -     0x7fff821a2fff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff821db000 -     0x7fff821e9ff7  libkxld.dylib ??? (???) <F90EDFE8-708A-3046-E403-A3B536FCFA43> /usr/lib/system/libkxld.dylib
        0x7fff821ea000 -     0x7fff821f5fff  com.apple.corelocation 12.1 (12.1) <7B5164FD-F5FD-6837-1DA3-6E18582CEDF3> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff821f6000 -     0x7fff821f6ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff821f7000 -     0x7fff8224cff7  com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8224d000 -     0x7fff82306fff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff82307000 -     0x7fff82350ff7  com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff82367000 -     0x7fff82d5dfff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff82d5e000 -     0x7fff82d5ffff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff82e18000 -     0x7fff82e5bff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <2C596A24-8B86-79D6-1A8E-5E8FFB6A1558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff82e5c000 -     0x7fff8301dfff  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
        0x7fff8301e000 -     0x7fff83022ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff83023000 -     0x7fff83035fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff83036000 -     0x7fff83098fe7  com.apple.datadetectorscore 2.0 (80.7) <5B6AABCA-C75A-D28F-6A2F-59648F0ABFC8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff83099000 -     0x7fff830bffe7  libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff830c0000 -     0x7fff830e3fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff830e4000 -     0x7fff830f3fff  com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff830f4000 -     0x7fff83108ff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff83133000 -     0x7fff83158ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83159000 -     0x7fff831a8fef  libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff831b1000 -     0x7fff831c6ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff83202000 -     0x7fff83249ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8324a000 -     0x7fff83279ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff834d6000 -     0x7fff8351eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8351f000 -     0x7fff83558fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
        0x7fff835a7000 -     0x7fff835c7ff7  com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff835c8000 -     0x7fff83601ff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff83602000 -     0x7fff8361dff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8361e000 -     0x7fff83653fef  com.apple.framework.Apple80211 6.2.4 (624.2) <B2CB69CE-A4F5-D70F-03DE-CF985D5558A2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff83654000 -     0x7fff836a6ff7  com.apple.HIServices 1.8.2 (???) <80D63B54-3F43-080C-038A-70038D9AF325> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff836cf000 -     0x7fff837b5fef  com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff837c7000 -     0x7fff837c7ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff837c8000 -     0x7fff837e9fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff837ea000 -     0x7fff83827fff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff83828000 -     0x7fff838b4fef  SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff838ce000 -     0x7fff83984fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <99CB3A0F-64CF-1D16-70CD-8AED2EF06C30> /usr/lib/libobjc.A.dylib
        0x7fff83985000 -     0x7fff839e5fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff839e6000 -     0x7fff83ac3fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff83ac4000 -     0x7fff83ac7fff  com.apple.help 1.3.1 (41) <E311A81E-9870-A430-1E16-AFF6C92CE6E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff83ac8000 -     0x7fff841c506f  com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff841c6000 -     0x7fff841dafff  libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff841db000 -     0x7fff8461ffef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff84620000 -     0x7fff84755ff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff847a6000 -     0x7fff85421fef  com.apple.WebCore 6533.21 (6533.21.1) <A7433C61-B507-BDB0-9CA8-1A3A2A699B2F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff85422000 -     0x7fff85426ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <49E6AF5D-AF9B-67CF-A6B8-C79F6BA8A627> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff85562000 -     0x7fff855ceff7  com.apple.CorePDF 1.3 (1.3) <FF2F3F1B-D1D6-684C-B174-6A455E04FF91> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff855cf000 -     0x7fff8570dfff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8570e000 -     0x7fff8571ffff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff85720000 -     0x7fff85726ff7  IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff85727000 -     0x7fff859aafe7  com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff859ab000 -     0x7fff859bcff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff859bd000 -     0x7fff85ec1fe7  com.apple.VideoToolbox 0.484.20 (484.20) <B01F6A80-D197-2127-2A05-49F9446EF6E5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff85ef2000 -     0x7fff85f1dff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff85f1e000 -     0x7fff85f5bff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff85f70000 -     0x7fff85fbcfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff86008000 -     0x7fff8600bff7  libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8600c000 -     0x7fff86112fe7  com.apple.PubSub 1.0.5 (65.21) <4C14C413-07AD-2529-45FA-8E5B438D38A0> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff86113000 -     0x7fff8653efef  com.apple.RawCamera.bundle 3.6.4 (561) <C4AB0054-B2C8-246E-0F17-98F4BD5BE94C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff86883000 -     0x7fff869f2fe7  com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff869fd000 -     0x7fff86b1efe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff86b78000 -     0x7fff86c2dfe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff86c2e000 -     0x7fff86e69fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff86f35000 -     0x7fff86fb7fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff86fc6000 -     0x7fff87037ff7  com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff87038000 -     0x7fff87336fff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff874a9000 -     0x7fff874a9ff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff874c6000 -     0x7fff87644ff7  com.apple.WebKit 6533.21 (6533.21.1) <E954BB9E-51DC-9B68-5312-E1507329A9B3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff87645000 -     0x7fff87662ff7  libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff87663000 -     0x7fff8768bfff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8768c000 -     0x7fff8768cff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8781e000 -     0x7fff879dcfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
        0x7fff87ade000 -     0x7fff87ae0fff  libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff87b11000 -     0x7fff87bd3fef  libFontParser.dylib ??? (???) <363E2A8A-CEFE-9A74-E677-C240B27A4FC6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff87c24000 -     0x7fff87cd4fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff87cd5000 -     0x7fff87ce1fff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
        0x7fff87cfe000 -     0x7fff87d17fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff87d18000 -     0x7fff87deafe7  com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff87e78000 -     0x7fff87e79ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff87e7a000 -     0x7fff87ef9fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1CF0AE2D-0E85-D41B-EC2D-8CFD298AB5A0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff87efa000 -     0x7fff87efbfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff87efc000 -     0x7fff87f43fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff87f44000 -     0x7fff87f49fff  libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff87f4a000 -     0x7fff88061fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff88062000 -     0x7fff8809cfff  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
        0x7fff8809d000 -     0x7fff88129fff  com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <F685B42A-E477-3724-A49C-39599AFBDE95> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8812a000 -     0x7fff8816dfef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff8816e000 -     0x7fff881f3ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff881f4000 -     0x7fff882b5fef  com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff882b6000 -     0x7fff882f7ff7  com.apple.CoreMedia 0.484.20 (484.20) <C1CC2CE5-0606-5F87-9445-ED7AF1DA31B6> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff882f8000 -     0x7fff88307fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff88308000 -     0x7fff88430ff7  com.apple.MediaToolbox 0.484.20 (484.20) <1C80C29E-6FDB-71F3-B465-FF92A30BBF9D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff884e7000 -     0x7fff88528fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff88529000 -     0x7fff88529ff7  com.apple.Carbon 150 (152) <C0E61968-57F3-6EE1-8524-32A18955BAF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8854d000 -     0x7fff8855efff  SyndicationUI ??? (???) <83BC984E-2EF3-D6D2-95AC-37F5609A9592> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff8855f000 -     0x7fff8856cfe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <45B5B514-7CEB-38A9-F34A-1D96F010EC42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8856d000 -     0x7fff88725fef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff88726000 -     0x7fff88916fef  com.apple.JavaScriptCore 6533.20 (6533.20.20) <5626170D-00AE-33B1-03FF-256E9794150D> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8898a000 -     0x7fff889bdfff  libTrueTypeScaler.dylib ??? (???) <6EFBF3B7-E4D5-E6AE-5A7D-22F37E288737> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff889be000 -     0x7fff88ac8ff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff88ac9000 -     0x7fff88ac9ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88aca000 -     0x7fff88b0bfff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff88b0c000 -     0x7fff88b17ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff88b18000 -     0x7fff88b1dff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff88b1e000 -     0x7fff88b24ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff88b62000 -     0x7fff88bcafff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff88bcb000 -     0x7fff88bd4ff7  com.apple.DisplayServicesFW 2.3.0 (283) <4F1220F7-D576-B761-9881-5810C03F87FA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff88bd5000 -     0x7fff88c3ffe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff88c40000 -     0x7fff88c7bfff  com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88c7c000 -     0x7fff88d0bfff  com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff88d13000 -     0x7fff88d19fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <C863C133-EA3E-5403-FC44-FDC9F236DC98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff88d5a000 -     0x7fff88d5aff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff88d5b000 -     0x7fff88fc5fef  com.apple.QuartzComposer 4.2 ({156.28}) <248C697E-B2DD-4F27-27CD-6E6B99B9B0A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff891c5000 -     0x7fff8920afff  com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    Model: MacPro4,1, BootROM MP41.0081.B07, 4 processors, Quad-Core Intel Xeon, 2.66 GHz, 8 GB, SMC 1.39f5
    Graphics: ATI Radeon HD 4870, ATI Radeon HD 4870, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.131.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: ATI Radeon HD 4870, Display, Slot-1
    Serial ATA Device: HL-DT-ST DVD-RW GH41N
    Serial ATA Device: HL-DT-ST DVD-RW GH41N
    Serial ATA Device: Hitachi HDE721010SLA330, 931,51 GB
    USB Device: Hub, 0x05ac  (Apple Inc.), 0x912f, 0xfd100000
    USB Device: CTE-640-U V4.0-3, 0x056a  (WACOM Co., Ltd.), 0x0016, 0xfd130000
    USB Device: Apple Cinema HD Display, 0x05ac  (Apple Inc.), 0x9221, 0xfd120000
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa200000
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0221, 0xfa220000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x5a100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x5a110000
    FireWire Device: built-in_hub, Up to 800 Mb/sec

    Could be duplicate or corrupted fonts.
    http://reviews.cnet.com/8301-13727_7-10389716-263.html?tag=mncol;title

  • Why does lightroom not display photos ?

    Hello,
    all of a sudden lightroom tells me "no photo selected " when I try to open a folder.All the folders are visible but the photos cannot be displayed.I am using lightroom 4.1
    The last editing was done less then 12 hours ago without any problems.
    Your help would be much appreciated.
    Thank you very much,
    1journey

    Thank you so much for your reply.I solved the problem after fretting over it for some time. A filter was not turned off and once I turned it off all was well. Live and learn.
    Thank you kindly ,
    nihonbashi
    Date: Sun, 10 Nov 2013 08:54:35 -0800
    From: [email protected]
    To: [email protected]
    Subject: why does lightroom not display photos ?
        Re: why does lightroom not display photos ?
        created by F. McLion in Photoshop Lightroom - View the full discussion
    Does it show an image count on the folders in the folder panel?
    What does show if you select a folder in library?
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5830261#5830261
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5830261#5830261
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5830261#5830261. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Lightroom at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • IPhone 4 cannot receive photos from 3GS

    randomly my iPhone 4 stopped accepting photos from a 3gs. Says Content was removed because your handset cannot display it. I updated to the newest version and the photo came through, but then stopped again.

    Welcome to the discussions,
    if you restored your phone from your last backup on your computer, it seems this backup is corrupt and every time your damaged data is copied back to your phone making it unusable.
    The only thing you could do to save at least some of the data would be syncing the contacts and events to your computer, after you restored "as new iphone" sync the contacts and calendars back. Use the camera wizard to copy the photos to it as well.
    As app data, like game settings for example, is part of the backup, you'll lose these settings.
    More info about the content of your backup here: http://support.apple.com/kb/HT1766

  • Cannot display iCloud address list on Outlook2010

    My Outlook is working OK to insert e-mail address from the iCloud address list, and I was able to display the iCloud address list till yesterday.
    Yesterday, I did some cleanup on my PC, but now , I cannot DISPLAY iCloudAddress List, even though outlook is still able to insert e-mail addresses from the iCloud address list.
    I checked the iCloud Add-in, it  is ENABLED.
    Thus, need help with iCloud/ OUTLOOK:
    1) To Display iCloud Address list (in order to look at properties/telephones for any contact)
    2) How to syncronize local address list with iCloud Address List (some how iCloud managed to hi-jack all my contacts few months back when I enabled iCloud on my PC, I wish they only copied to iCloud)
    Thanks.......Rabrakha

    Unlike a computer, https://www.icloud.com isn't accessible from any iPad browser AFAIK and that's almost certainly by design. If you have iCloud set up properly, everything you do on the iPad is already syncing (mail, contacts, Pages, Photo Stream, etc.).
    You can also make any adjustments to your iCloud settings on the iPad. Settings > iCloud...
    So there doesn't seem to be a need to access iCloud via Safari (or any web browser) from the iPad.
    Others may figure out a work-around, but I'm not sure what it would accomplish.
    I can see the need on a computer...particularly if you don't have yours with you and you want to access your mail or contacts...but it seems redundant to do it on the iPad.
    Was there a reason you needed to have access with Safari?

  • ITunes cannot sync photos to the iPhone because your iPhoto Library is not yet available.

    I've turned my iPhone 4 into a iPod, meaning I only use it to hold music for my workouts. Ever since I've upgraded to Yosmite I can't sync my iPhone 4 to iTunes anymore. I can back it up, but I can't sync. Each time it tells me "iTunes cannot sync photos to the iPhone because your iPhoto Library is not yet available"  I don't want to sync any photos, just music.
    I've tried to repair my iPhoto Library, restarted my Mac, restarted my iPhone 4 but I still get his error message.
    In iTunes when I select my iPhone 4 > Photos, I just get a spinning wheel.
    Any thoughts??

    I can't follow the first link since I just get a spinning wheel for photos.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then take an action that isn't working the way you expect. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.
    When you post the log extract, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the text on Pastebin, then post a link here to the page you created.

Maybe you are looking for