Opening a file from desktop

Dear all,
I want to open a pdf file (or an exe file or any file) located in my desktop. Help me out.
I tried the attached option but it didn't worked. Even no error was reported. VI just ran.
Thanks,
Mathan
Attachments:
untitled1.PNG ‏13 KB

Hi mathan,
you can use the System Exec vi to start your executable. See the attached picture.
Mike
Message Edited by MikeS81 on 04-24-2008 11:41 AM
Attachments:
Unbenannt.PNG ‏3 KB

Similar Messages

  • Can't Open Video Files from Desktop or Finder

    Hello,
    I am faced with the current error. Whenever I try to open a video file (such as MP4) from the desktop or Finder by double-clicking it, I am faced with the following error:
    However, when I open the file directly via Open File in Quicktime Player, I am able to play the video file.
    Does anyone know a solution to this problem?

    Nope. For example, one folder has two xls workbooks, two Word docs and a pdf. Only one of the xls workbooks won't open. All the other files open normally. When I try to open the problem xls workbook, whether from the dock or the Finder window, I end up in Excel, but without the workbook opening. When I quit Excel, the problem workbook started Excel, but didn't open.
    Update - I'm seeing something now. I use Excel to build "shows," I'm a production mixer for television. I went to one folder, five xls workbooks open fine, four do not. The four that don't open were modified (Save As with changes) with each "show." This was the first pattern I've noticed and only because that particular subfolder had the four workbooks with that relationship. The other xls workbook I described has the Save As file in another folder, but I'm not sure what the original file was. Note - those two "corrupt" files are unrelated, they had different "parents."
    What could I look for in the original file that won't open and passed that gene onto its spawn?

  • Opening photoshop files from desktop in order

    Hi there,
    Would anyone know if there is a way that you can select Photoshop files from your desktop and have them open in alpha numeric order when they pop open in Photoshop? I'd really appreciate any help, thanks!
    -A

    Open them from Bridge.
    If you double-click on the image icons anywhere on your disk through the Finder, Photoshop has no choice but to comply with the order in which the OS hands the files to it.
    That's what Bridge is for.

  • Why Does photoshop quit unexpectedly when i try to open a file from my desktop?

    I've always been able to do it previously but today i've had to reinstall all my files and applications (long story) and now for some reason it won't open any files from the desktop.
    It seems to be fine if i open the same file from my documents so it just seems strange.
    If anyone knows why its doing this that would be great

    You mean it crashes?
    We can't tell you why it's crashing without seeing the detailed crash log.
    But first, make sure you have all the updates installed.

  • I have a brand new MacBookProo and I can not open PDF files from my desktop. Can anyone help me with this please?

    I have a brand new MacBookProo and I can not open PDF files from my desktop. Can anyone help me with this please?

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273

  • How to upload file from desktop or C drive and send as attachments

    Hello Experts,
    Please tell me
    How to upload jpg or gif or drawing files from desktop or any drive and store into R/3 by the same time I have to send mail as a attachment.
    I heard that FM
    SO_NEW_DOCUMENT_ATT_SEND_API1  is only to send as a  attachment what ever the data is present in the internal table only.
    please help me on that.

    I m using this code its having attachment but I m not able to open the file. Please help me
    I m using gui_upload to upload the file
    PROGRAM  ZTEST
           no standard page heading line-size 255.
    DATA: xfile TYPE string.
    data :     t_IW51 LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
    DATA: DOC_CHNG  LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    data :  email type table of BAPIADSMTP.
    PARAMETERS : file LIKE rlgrap-filename OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file.
      CLEAR file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = file.
      xfile = file.
    START-OF-SELECTION.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename            = xfile
          filetype            = 'ASC'
          has_field_separator = 'X'
        TABLES
          data_tab            = t_IW51.
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Send External Mail'.
    Mail Contents
      OBJTXT = 'Minimum bid : $250000'.
      APPEND OBJTXT.
      OBJTXT = 'A representation of the pictures up for auction'.
      APPEND OBJTXT.
      OBJTXT = 'was included as attachment.'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
    (Assume that the data in OBJBIN is in BMP format)
    *OBJBIN = ' \O/ '. APPEND OBJBIN.
    *OBJBIN = ' | '. APPEND OBJBIN.
    *OBJBIN = ' / \ '. APPEND OBJBIN.
      OBJBIN[] = t_IW51[].
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'PICTURE.PDF'.
      APPEND OBJHEAD.
      OBJBIN[] = t_IW51[].
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'PDF'.
      OBJPACK-OBJ_NAME = 'PICTURE'.
      OBJPACK-OBJ_DESCR = 'Representation of object 138'.
      OBJPACK-DOC_SIZE = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
      RECLIST-RECEIVER = 'email_id have to enter here'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
      RECLIST-RECEIVER = 'ENTEG01'.
      RECLIST-REC_TYPE = 'P'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
         DOCUMENT_DATA = DOC_CHNG
         PUT_IN_OUTBOX = 'X'
         commit_work = 'X'
      TABLES
         PACKING_LIST = OBJPACK
         OBJECT_HEADER = OBJHEAD
         CONTENTS_BIN = OBJBIN
         CONTENTS_TXT = OBJTXT
         RECEIVERS = RECLIST
    *EXCEPTIONS
      TOO_MANY_RECEIVERS = 1
      DOCUMENT_NOT_SENT = 2
      OPERATION_NO_AUTHORIZATION = 4
    *OTHERS = 99.
      CASE SY-SUBRC.
        WHEN 0.
          WRITE: / 'Result of the send process:'.
          LOOP AT RECLIST.
            WRITE: / RECLIST-RECEIVER(48), ':'.
            IF RECLIST-RETRN_CODE = 0.
              WRITE 'The document was sent'.
            ELSE.
              WRITE 'The document could not be sent'.
            ENDIF.
          ENDLOOP.
        WHEN 1.
          WRITE: / 'No authorization for sending to the specified number',
                   'of recipients'.
        WHEN 2.
          WRITE: / 'Document could not be sent to any recipient'.
        WHEN 4.
          WRITE: / 'No send authorization'.
        WHEN OTHERS.
          WRITE: / 'Error occurred while sending'.
      ENDCASE.

  • Cannot delete .band files from desktop

    I was working on a file in GarageBand, I saved the .band file on my desktop, but after I quit GarageBand without saving the work, the .band file went a little weird. I tried dragging it to the trash and cmd-delete it but the message came up saying "The item “Recording Final.band” can’t be moved to the Trash because it can’t be deleted." Later I launched GarageBand again, and when I tried to drag the weird .band file from desktop to the GarageBand icon on my dock, the dock appears to crash, my wallpaper went gray for a second and then the dock came back up. Also when I select the file and hit space bar to do a quick look it shows up saying No Items Selected. I like to keep my desktop tidy don't want these files here blocking the way. Anyone knows the solution to the problem?

    The first thing I'd do is just restart your system. You might find the file has disappeared. If not, try deleting it again. If you get the same error msg, do as follows.
    Enable 'show path bar' in Finder > View. Highlight the problem file and make a note of the path.
    Open Terminal and use the
    rm <path to file>
    command to remove it (remove the angled brackets). If you want to be on the safe side, use the command
    cd <parent directory of file>
    to move into the correct folder first.
    Example
    Suppose the path is:
    Lion > Music > Garageband > problemfile.band
    In Terminal, you'd type
    cd ~/Music/Garageband
    Then type
    ls -l
    Assuming you see 'problemfile.band' in the list, type
    rm problemfile.band
    If you get an error, try
    sudo rm problemfile.band
    and enter your admin password (which will be invisible when you type it).
    If you still get an error msg, post back here, stating the error msg.

  • Cannot Delete CPTL file from Desktop using Vista

    Hi All,
    I cannot Delete CPTL file from Desktop using Vista. Explorer
    crashes. It is a Captivate 2 file.
    I have tried (with no luck):
    - logging in as a different user and deleting the file.
    - running explorer as an Administrator
    - uninstalling Captivate.
    Anyone got any ideas?
    Cheers,
    Raef

    Hi Raef,
    That is a strange issue. Here are a couple more ideas you
    could try:
    - Have you tried renaming the file (including suffix)?
    - Have you rebooted?
    - Do you get any error messages when trying to delete, such
    as "Acess Denied"?
    - Is your machine networked? Is it possible someone else has
    the file open?
    - Can the file be moved to another location or put in a
    folder (and then deleted)?
    - Have you tried using the Command Prompt / DOS mode to
    delete the file?
    It sounds like it could be a Vista issue so I would look at
    the Microsoft Vista forums too. Sorry I do not have an exact
    answer.
    IHTH,
    Aaron

  • I cannot open a file from LR5 into CC2014 unless it is a smart object. also will not save back to LR at all it gives me an error message "Line: 1 -   photoshop.notifyLightroomDocClosed ('lightroom-2.0', 'B53AFA39-A49B-4709-A9BD-0B6467C175C3', 'Macintosh H

    I cannot open a file from lightroom into CC2014 unless I open it as a smart object. CC opens, just will not display my image. i am given an error code when I save an image, and can only save to my desktop or other locations, not automatically back into my lightroom.
    I am using LR5 latest update, as well as CC2014
    Below is the error message:
    Line: 1 ->  photoshop.notifyLightroomDocClosed ('lightroom-2.0', 'B53AFA39-A49B-4709-A9BD-0B6467C175C3', 'Macintosh HD:Users:BPexposures:Desktop:_DSC5962 as Smart Object-1.psd');

    I was also having this issue, and I did some more searching and found this answer in the Adobe forums: Re: Photos from Lightroom 5 to Photoshop CC (2014) and back.... The issue appears to be caused by having not updated Lightroom to the latest version prior to having CC2014 installed (wow that's stupid). The trick seems to be to uninstall Photoshop CC2014 and to then reinstall it after having upgraded to Lightroom 5.5.

  • Can't open PDF files from Windows Explorer on Windows 8.1

    Hello,
    after I've upgraded to Windows 8.1, I can't open PDF files from Windows Explorer (directly double clicking the file). The AcroRd32.exe runs in the background (2x !) as I see the processes in task manager, but there is no user interface visible. I have Acrobat
    Reader 11.0.06, the desktop version (not Metro). I tried uninstalling the Acrobat reader and installing it again but this didn't help. The only way to open PDF files is to close the AcroRd32.exe from the task manager, open empty Acrobat Reader from the desktop
    and then drag&drop the PDF file over that window. This is quite inconvenient. Is there a way to fix this issue so I can open PDF files directly from windows explorer?
    Many thanks!

    I had to install adobe reader, but   PDF's used to display just fine with IE, any idea what happened ?
    Windows 8.1 pro.
    thx
    lee

  • Can't open cr2 files from my 5D but can from my 20D

    i just got a new computer (windows vista) and on my old computer i could open cr2 files from both my 20d and my 5d just fine. but now on my new computer i can't open the cr2 raw files from the 5d but can from the 20d. I have photoshop cs2. I am not planning to upgrated to cs3 anytimes soon, do I just need to install a plug in? Please help.

    Kristen,
    No, no, no. The DNG Converter is a stand-alone executable program. You can even put it on your desktop. You would need it only if your camera model is NOT supported by ACR 3.7, which is the latest version you can use with Photoshop CS2.
    In that case, you would use the DNG Converter to convert your raw images to DNG files first and then opening the DNG files in ACR 3.7.
    Now, the ACR 3.7 plug-in has to be installed in the correrct location, which is where the old ACR plug-in resides. You will be replacing that old, obsolete ACR plug-in (while Photoshop is NOT running).
    [The default Photoshop installation comes with and installs that obsolete ACR plug-in.]
    Read the instructions on the download page very carefully, and refer to the FAQs of this forum on the same page where you added this topic.

  • Accessing/attaching files from desktop folder crashes applications

    Hello,
    In gmail and yahoo on chrome, opera, firefox and safari, when I try to attach a file from the desktop, the browser crashes. In photosop/dreamweaver/etc. cs4 when i try opening a file from the open dialog box, that application crashes as well. To me, there's seem to be a universal problem with accessing the desktop through something other than finder.
    First is the thread that crashes in firefox then the full report from opera.
    Thread 28 Crashed:
    0 libSystem.B.dylib 0x989aba4e _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x989ab932 nanosleep$NOCANCEL$UNIX2003 + 166
    2 libSystem.B.dylib 0x98a2739a usleep$NOCANCEL$UNIX2003 + 61
    3 libSystem.B.dylib 0x98a48a50 abort + 105
    4 libSystem.B.dylib 0x98a355ec _pthreadmarkcancel + 0
    5 com.apple.ImageIO.framework 0x956a8268 floor_ratio(int, int) + 65
    6 com.apple.ImageIO.framework 0x956b21e6 kdpacketsequencer::init() + 346
    7 com.apple.ImageIO.framework 0x956ac86a kd_tile::initialize() + 10056
    8 com.apple.ImageIO.framework 0x956a9d41 kdcodestream::create_tile(kducoords) + 559
    9 com.apple.ImageIO.framework 0x956a99e4 kducodestream::open_tile(kducoords, kduthreadenv*) + 298
    10 com.apple.ImageIO.framework 0x956a988a kduregion_decompressor::opentile(int) + 2036
    11 com.apple.ImageIO.framework 0x956a84a0 kduregion_decompressor::processgeneric(int, int, kdu_coords, int, int, int, kdu_dims&, kdu_dims&, int, bool) + 116
    12 com.apple.ImageIO.framework 0x956a8420 kduregiondecompressor::process(int*, kdu_coords, int, int, int, int, kdu_dims&, kdu_dims&) + 406
    13 com.apple.ImageIO.framework 0x956a7371 kdrc_stream::process(int, kdu_dims&, int&) + 1001
    14 com.apple.ImageIO.framework 0x956a6e73 kduregioncompositor::process(int, kdu_dims&) + 271
    15 com.apple.ImageIO.framework 0x956a6198 cgJP2DecompressBand + 240
    16 com.apple.ImageIO.framework 0x956a608b getBandProcJP2 + 49
    17 com.apple.ImageIO.framework 0x9565cfea glueCopyImageBlockSet + 2094
    18 com.apple.ImageIO.framework 0x95654429 ImageProviderCopyImageBlockSetCallback + 174
    19 com.apple.CoreGraphics 0x95a96b4b CGImageProviderCopyImageBlockSet + 228
    20 com.apple.CoreGraphics 0x95a9b35c imgblockscreate + 348
    21 com.apple.CoreGraphics 0x95a9b1e1 imgblocksextent + 85
    22 com.apple.CoreGraphics 0x95a3460e imgdatalock + 8882
    23 com.apple.CoreGraphics 0x95a3170a CGSImageDataLock + 172
    24 libRIP.A.dylib 0x96734748 ripc_AcquireImage + 2446
    25 libRIP.A.dylib 0x967323be ripc_DrawImage + 1245
    26 com.apple.CoreGraphics 0x95a31384 CGContextDrawImage + 450
    27 com.apple.CoreGraphics 0x95bfac3f CGPDFDrawingContextDrawImage + 423
    28 com.apple.CoreGraphics 0x95bf2563 op_Do + 121
    29 com.apple.CoreGraphics 0x95ab240c pdfscanner_handlexname + 104
    30 com.apple.CoreGraphics 0x95ab1514 CGPDFScannerScan + 515
    31 com.apple.CoreGraphics 0x95aaf630 CGPDFDrawingContextDrawPage + 812
    32 com.apple.CoreGraphics 0x95aaf2ca CGContextDrawPDFPageWithProgressCallback + 99
    33 com.apple.CoreGraphics 0x95aaf264 CGContextDrawPDFPage + 40
    34 com.apple.ImageIO.framework 0x9565d864 getBandProcPDF + 1753
    35 com.apple.ImageIO.framework 0x9565cfea glueCopyImageBlockSet + 2094
    36 com.apple.ImageIO.framework 0x95654429 ImageProviderCopyImageBlockSetCallback + 174
    37 com.apple.CoreGraphics 0x95a96b4b CGImageProviderCopyImageBlockSet + 228
    38 com.apple.CoreGraphics 0x95a9b35c imgblockscreate + 348
    39 com.apple.CoreGraphics 0x95a32ec5 imgdatalock + 2921
    40 com.apple.CoreGraphics 0x95a3170a CGSImageDataLock + 172
    41 libRIP.A.dylib 0x96734748 ripc_AcquireImage + 2446
    42 libRIP.A.dylib 0x967323be ripc_DrawImage + 1245
    43 com.apple.CoreGraphics 0x95a31384 CGContextDrawImage + 450
    44 com.apple.ImageIO.framework 0x956cc00c CGImageCreateCopyWithParametersNew + 1503
    45 com.apple.ImageIO.framework 0x956cad28 CGImageSourceCreateThumbnailAtIndex + 3475
    46 com.apple.AppKit 0x91c8521d -[NSNavFBENode _quickLookImageWithMaxSize:isThumbnail:] + 956
    47 com.apple.AppKit 0x91c90832 +[NSNavNodePreviewHelper _subthreadComputePreviewThumbnailImages] + 626
    48 com.apple.Foundation 0x90b3f8d8 -[NSThread main] + 45
    49 com.apple.Foundation 0x90b3f888 _NSThread__main_ + 1499
    50 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    51 libSystem.B.dylib 0x9896be42 thread_start + 34
    Process: Opera [287]
    Path: /Applications/Opera.app/Contents/MacOS/Opera
    Identifier: com.operasoftware.Opera
    Version: 10.00 (6652)
    Build Info: Unknown-Unknown~6652
    Code Type: X86 (Native)
    Parent Process: launchd [118]
    Date/Time: 2010-03-05 13:56:54.066 -0800
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 101592 sec
    Crashes Since Last Report: 84
    Per-App Interval Since Last Report: 2134 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: 8BC34852-F784-451A-817A-4FE6DB8089EA
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 15
    Application Specific Information:
    Assertion failed: (den > 0), function floor_ratio, file /SourceCache/ImageIO/ImageIO-457/ProjSnowLeopard/../libJP2-5.1/coresys/common/k du_utils.h, line 187.
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x9896a8bc fork + 24
    1 libSystem.B.dylib 0x989a49bb _sigtramp + 43
    2 ??? 0xffffffff 0 + 4294967295
    3 com.apple.CoreFoundation 0x967b977f __CFRunLoopRun + 2079
    4 com.apple.CoreFoundation 0x967b8864 CFRunLoopRunSpecific + 452
    5 com.apple.CoreFoundation 0x967b8691 CFRunLoopRunInMode + 97
    6 com.apple.HIToolbox 0x94d80f0c RunCurrentEventLoopInMode + 392
    7 com.apple.HIToolbox 0x94d80cc3 ReceiveNextEventCommon + 354
    8 com.apple.HIToolbox 0x94f08c02 _AcquireNextEvent + 54
    9 com.apple.HIToolbox 0x94efed5b _RunAppModalLoop + 101
    10 com.apple.HIToolbox 0x94eff15c RunAppModalLoopForWindow + 119
    11 com.apple.AppKit 0x91a85426 -[NSApplication _realDoModalLoop:peek:] + 961
    12 com.apple.AppKit 0x91a84ab1 -[NSApplication runModalForWindow:] + 273
    13 com.apple.AppKit 0x91d177f3 -[NSSavePanel runModal] + 420
    14 com.apple.AppKit 0x91ef17a7 -[NSNavOpenPanel run] + 141
    15 com.apple.AppKit 0x91ef335b _NSNavDialogRun + 223
    16 ...romedia.Flash Player.plugin 0x1f3a8ee1 FlashPlayer10_0_45_2FlashPlayer + 771073
    17 ...ple.CoreServices.CarbonCore 0x991398cb MPRemoteCallback + 32
    18 com.apple.CoreFoundation 0x967baedb __CFRunLoopRun + 8059
    19 com.apple.CoreFoundation 0x967b8864 CFRunLoopRunSpecific + 452
    20 com.apple.CoreFoundation 0x967b8691 CFRunLoopRunInMode + 97
    21 com.apple.HIToolbox 0x94d80f0c RunCurrentEventLoopInMode + 392
    22 com.apple.HIToolbox 0x94d80cc3 ReceiveNextEventCommon + 354
    23 com.apple.HIToolbox 0x94f08c02 _AcquireNextEvent + 54
    24 com.apple.HIToolbox 0x94efe944 RunApplicationEventLoop + 228
    25 com.operasoftware.Opera 0x0000383c 0x1000 + 10300
    26 com.operasoftware.Opera 0x00002802 0x1000 + 6146
    27 com.operasoftware.Opera 0x00002729 0x1000 + 5929
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 libSystem.B.dylib 0x9894486b malloczonecalloc + 88
    2 libSystem.B.dylib 0x989447fa calloc + 57
    3 libSystem.B.dylib 0x9895670a tokentableadd + 103
    4 libSystem.B.dylib 0x98955e13 notifyregistercheck + 623
    5 libSystem.B.dylib 0x9895e3f0 sl_initnotify + 95
    6 libSystem.B.dylib 0x9895ec67 vsyslog + 148
    7 libSystem.B.dylib 0x989d2dcf dispatchlogv + 32
    8 libSystem.B.dylib 0x989d2dad dispatchlog + 27
    9 libSystem.B.dylib 0x989d2d0c dispatchbug + 82
    10 libSystem.B.dylib 0x98965866 dispatch_mgrinvoke + 313
    11 libSystem.B.dylib 0x98964cc3 dispatch_queueinvoke + 163
    12 libSystem.B.dylib 0x98964a68 dispatch_workerthread2 + 234
    13 libSystem.B.dylib 0x989644f1 pthreadwqthread + 390
    14 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x9893e922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9896c45c pthread_condwait + 1089
    2 libSystem.B.dylib 0x989b5503 pthreadcondwait + 48
    3 Opera 0x122f492a WidgetInitLibrary + 886794
    4 Opera 0x1223c7db WidgetInitLibrary + 132795
    5 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    6 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9893e922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9896c45c pthread_condwait + 1089
    2 libSystem.B.dylib 0x989b5503 pthreadcondwait + 48
    3 Opera 0x122f492a WidgetInitLibrary + 886794
    4 Opera 0x1223c7db WidgetInitLibrary + 132795
    5 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    6 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9895d856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x967f8ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    3 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x98964182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98964718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 6:
    0 libSystem.B.dylib 0x9893e8da machmsgtrap + 10
    1 libSystem.B.dylib 0x9893f047 mach_msg + 68
    2 ...romedia.Flash Player.plugin 0x1f507bc4 FlashPlayer10_0_45_2FlashPlayer + 2207972
    3 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    4 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x9893e922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9896c45c pthread_condwait + 1089
    2 libSystem.B.dylib 0x989b5503 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1f2de44f 0x1f000000 + 3007567
    4 ...romedia.Flash Player.plugin 0x1f2f7ccf FlashPlayer10_0_45_2FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x1f2de8ff 0x1f000000 + 3008767
    6 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9893e922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9896c45c pthread_condwait + 1089
    2 libSystem.B.dylib 0x989b5503 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1f2de44f 0x1f000000 + 3007567
    4 ...romedia.Flash Player.plugin 0x1f2f7ccf FlashPlayer10_0_45_2FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x1f2de8ff 0x1f000000 + 3008767
    6 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x9893e8da machmsgtrap + 10
    1 libSystem.B.dylib 0x9893f047 mach_msg + 68
    2 com.apple.CoreFoundation 0x967b977f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x967b8864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x967be7a4 CFRunLoopRun + 84
    5 com.apple.DesktopServices 0x9218363f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 643
    6 ...ple.CoreServices.CarbonCore 0x990967ae PrivateMPEntryPoint + 68
    7 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    8 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 libSystem.B.dylib 0x98945388 free + 244
    2 libSystem.B.dylib 0x98974a27 pthread_tsdcleanup + 88
    3 libSystem.B.dylib 0x9897463a pthreadexit + 154
    4 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 11:
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 libSystem.B.dylib 0x98945388 free + 244
    2 libSystem.B.dylib 0x98974a27 pthread_tsdcleanup + 88
    3 libSystem.B.dylib 0x9897463a pthreadexit + 154
    4 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 12:
    0 libSystem.B.dylib 0x98964182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98964718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 13:
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 libSystem.B.dylib 0x98945388 free + 244
    2 libSystem.B.dylib 0x98974a27 pthread_tsdcleanup + 88
    3 libSystem.B.dylib 0x9897463a pthreadexit + 154
    4 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 14:
    0 libSystem.B.dylib 0x9896c806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9896c4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9896e158 pthreadcondwait$UNIX2003 + 73
    3 ...ple.CoreServices.CarbonCore 0x990cb87a TSWaitOnCondition + 126
    4 ...ple.CoreServices.CarbonCore 0x9913986c MPRemoteCall + 315
    5 ...romedia.Flash Player.plugin 0x1f3aa9ce FlashPlayer10_0_45_2FlashPlayer + 777966
    6 ...romedia.Flash Player.plugin 0x1f07a388 0x1f000000 + 500616
    7 ...romedia.Flash Player.plugin 0x1f07a3b1 0x1f000000 + 500657
    8 ...romedia.Flash Player.plugin 0x1f2de8ff 0x1f000000 + 3008767
    9 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    10 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 15 Crashed:
    0 libSystem.B.dylib 0x98a489e5 __abort + 136
    1 libSystem.B.dylib 0x98a48a55 abortreportnp + 0
    2 libSystem.B.dylib 0x98a355ec _pthreadmarkcancel + 0
    3 com.apple.ImageIO.framework 0x956a8268 floor_ratio(int, int) + 65
    4 com.apple.ImageIO.framework 0x956b21e6 kdpacketsequencer::init() + 346
    5 com.apple.ImageIO.framework 0x956ac86a kd_tile::initialize() + 10056
    6 com.apple.ImageIO.framework 0x956a9d41 kdcodestream::create_tile(kducoords) + 559
    7 com.apple.ImageIO.framework 0x956a99e4 kducodestream::open_tile(kducoords, kduthreadenv*) + 298
    8 com.apple.ImageIO.framework 0x956a988a kduregion_decompressor::opentile(int) + 2036
    9 com.apple.ImageIO.framework 0x956a84a0 kduregion_decompressor::processgeneric(int, int, kdu_coords, int, int, int, kdu_dims&, kdu_dims&, int, bool) + 116
    10 com.apple.ImageIO.framework 0x956a8420 kduregiondecompressor::process(int*, kdu_coords, int, int, int, int, kdu_dims&, kdu_dims&) + 406
    11 com.apple.ImageIO.framework 0x956a7371 kdrc_stream::process(int, kdu_dims&, int&) + 1001
    12 com.apple.ImageIO.framework 0x956a6e73 kduregioncompositor::process(int, kdu_dims&) + 271
    13 com.apple.ImageIO.framework 0x956a6198 cgJP2DecompressBand + 240
    14 com.apple.ImageIO.framework 0x956a608b getBandProcJP2 + 49
    15 com.apple.ImageIO.framework 0x9565cfea glueCopyImageBlockSet + 2094
    16 com.apple.ImageIO.framework 0x95654429 ImageProviderCopyImageBlockSetCallback + 174
    17 com.apple.CoreGraphics 0x95a96b4b CGImageProviderCopyImageBlockSet + 228
    18 com.apple.CoreGraphics 0x95a9b35c imgblockscreate + 348
    19 com.apple.CoreGraphics 0x95a9b1e1 imgblocksextent + 85
    20 com.apple.CoreGraphics 0x95a3460e imgdatalock + 8882
    21 com.apple.CoreGraphics 0x95a3170a CGSImageDataLock + 172
    22 libRIP.A.dylib 0x96734748 ripc_AcquireImage + 2446
    23 libRIP.A.dylib 0x967323be ripc_DrawImage + 1245
    24 com.apple.CoreGraphics 0x95a31384 CGContextDrawImage + 450
    25 com.apple.CoreGraphics 0x95bfac3f CGPDFDrawingContextDrawImage + 423
    26 com.apple.CoreGraphics 0x95bf2563 op_Do + 121
    27 com.apple.CoreGraphics 0x95ab240c pdfscanner_handlexname + 104
    28 com.apple.CoreGraphics 0x95ab1514 CGPDFScannerScan + 515
    29 com.apple.CoreGraphics 0x95aaf630 CGPDFDrawingContextDrawPage + 812
    30 com.apple.CoreGraphics 0x95aaf2ca CGContextDrawPDFPageWithProgressCallback + 99
    31 com.apple.CoreGraphics 0x95aaf264 CGContextDrawPDFPage + 40
    32 com.apple.ImageIO.framework 0x9565d864 getBandProcPDF + 1753
    33 com.apple.ImageIO.framework 0x9565cfea glueCopyImageBlockSet + 2094
    34 com.apple.ImageIO.framework 0x95654429 ImageProviderCopyImageBlockSetCallback + 174
    35 com.apple.CoreGraphics 0x95a96b4b CGImageProviderCopyImageBlockSet + 228
    36 com.apple.CoreGraphics 0x95a9b35c imgblockscreate + 348
    37 com.apple.CoreGraphics 0x95a32ec5 imgdatalock + 2921
    38 com.apple.CoreGraphics 0x95a3170a CGSImageDataLock + 172
    39 libRIP.A.dylib 0x96734748 ripc_AcquireImage + 2446
    40 libRIP.A.dylib 0x967323be ripc_DrawImage + 1245
    41 com.apple.CoreGraphics 0x95a31384 CGContextDrawImage + 450
    42 com.apple.ImageIO.framework 0x956cc00c CGImageCreateCopyWithParametersNew + 1503
    43 com.apple.ImageIO.framework 0x956cad28 CGImageSourceCreateThumbnailAtIndex + 3475
    44 com.apple.AppKit 0x91c8521d -[NSNavFBENode _quickLookImageWithMaxSize:isThumbnail:] + 956
    45 com.apple.AppKit 0x91c90832 +[NSNavNodePreviewHelper _subthreadComputePreviewThumbnailImages] + 626
    46 com.apple.Foundation 0x90b3f8d8 -[NSThread main] + 45
    47 com.apple.Foundation 0x90b3f888 _NSThread__main_ + 1499
    48 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    49 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x9893e93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9896c445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9899b028 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x990b7235 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x990b6f73 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x990db16b TimerThread + 97
    6 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 15 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x98a48969 ecx: 0x98944c22 edx: 0x00000000
    edi: 0x000000bb esi: 0x957b87fe ebp: 0xb07d6b58 esp: 0xb07d6b30
    ss: 0x0000001f efl: 0x00010286 eip: 0x98a489e5 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x25820000
    Binary Images:
    0x1000 - 0x9ff3 +com.operasoftware.Opera 10.00 (6652) <A95794E5-C798-36AB-2CBA-49C4E0AB5C40> /Applications/Opera.app/Contents/MacOS/Opera
    0x600000 - 0x601ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x74d000 - 0x75fff7 libTraditionalChineseConverter.dylib ??? (???) <C4E0D62B-4D1A-8DAD-D10B-2C055AA0479C> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x763000 - 0x771fe7 libSimplifiedChineseConverter.dylib ??? (???) <4C9CC2D9-2F13-4465-5447-2516FCD9255B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x11800000 - 0x12427fe2 +Opera ??? (???) <B01671CC-C84A-E0A9-1FC1-44B7C48948C3> /Applications/Opera.app/Contents/Frameworks/Opera.framework/Opera
    0x17464000 - 0x17467ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x18840000 - 0x18869fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x188d8000 - 0x18908ff4 +com.google.googletalkbrowserplugin 1.0.20.8768 (1.0.20.8768) <E68E4E2F-8349-0CF8-E36B-FD1BC8A62DF6> /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin/Contents/MacOS/googletalkbrowserplugin
    0x1a684000 - 0x1a6d9fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1f000000 - 0x1f63affb +com.macromedia.Flash Player.plugin 10.0.45.2 (1.0.4f458472) <D1AAAB5D-4178-61E6-A5B8-35B01D303955> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x9000e000 - 0x90443ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90444000 - 0x904f7fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x904f8000 - 0x904faff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x904fb000 - 0x90593fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90594000 - 0x906c2fe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90978000 - 0x909a9ff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x909aa000 - 0x90aa0ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90aa1000 - 0x90ad9ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90b29000 - 0x90d99ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90d9a000 - 0x90da8fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x90da9000 - 0x90df9fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90dfa000 - 0x90e38ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90e39000 - 0x90e46ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e47000 - 0x90e65ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90e66000 - 0x90e66ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90e67000 - 0x90e67ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90e68000 - 0x90e6aff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90e6b000 - 0x90eebfeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90eec000 - 0x90efcff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90efd000 - 0x90f07ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90f08000 - 0x90f08ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x90f09000 - 0x90f78ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90f79000 - 0x90faeff7 libcups.2.dylib ??? (???) <AFDC4D3C-0FF4-D459-B26C-4BA1093F9142> /usr/lib/libcups.2.dylib
    0x90faf000 - 0x9105eff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x910a9000 - 0x910bdffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x910be000 - 0x91299ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x913b1000 - 0x9170ffff com.apple.RawCamera.bundle 3.0.1 (523) <BB20C4C8-ACEE-7B40-C1A0-4BF4EC6B8796> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x91711000 - 0x917bfff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x917c6000 - 0x920a4ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92181000 - 0x9225bff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9225c000 - 0x922cffff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x92309000 - 0x9238bffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92391000 - 0x927a7ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x927a8000 - 0x9292afe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x9292b000 - 0x92952ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92c17000 - 0x92c21ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92c22000 - 0x92c42fe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92ce6000 - 0x92ce7ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92dcd000 - 0x93d5bff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93e39000 - 0x93e3cfe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x93e3d000 - 0x93eadff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93f23000 - 0x93f3eff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93f3f000 - 0x93f42ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x93f43000 - 0x93f48ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93f62000 - 0x93f6cfe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93f6d000 - 0x93f7dff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93f7e000 - 0x94025fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94026000 - 0x94127fe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x94128000 - 0x94182fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x941cc000 - 0x94219feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9421a000 - 0x942c2ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x942c3000 - 0x9432dfe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94b59000 - 0x94c66ff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x94c67000 - 0x94c83fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94c84000 - 0x94c84ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94c96000 - 0x94cd2fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94cdb000 - 0x94d1eff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94d4c000 - 0x9506ffef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x950ac000 - 0x9528efff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95299000 - 0x952ddff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x952f7000 - 0x952f7ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x952f8000 - 0x9531efff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9531f000 - 0x95354ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95355000 - 0x95377fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95378000 - 0x95431fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x95432000 - 0x95444ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95455000 - 0x95458ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95491000 - 0x954b1fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x955ac000 - 0x95648fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95649000 - 0x95805fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95806000 - 0x95840ffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95841000 - 0x95980fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x959ab000 - 0x959eaff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x959eb000 - 0x959f1ff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x959f2000 - 0x961d54b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x961d6000 - 0x96684fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x96685000 - 0x96696ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96697000 - 0x9670efe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96722000 - 0x96763ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9676c000 - 0x96777ff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96778000 - 0x9677cff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9677d000 - 0x968f4fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x968f5000 - 0x968fcff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x968fd000 - 0x968fdff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96930000 - 0x96976ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x96977000 - 0x96977ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96a1e000 - 0x96a1eff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96a1f000 - 0x96afcff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96b44000 - 0x96b95ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96baa000 - 0x96beaff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x96beb000 - 0x96bf2fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96bf3000 - 0x96e55fe7 com.apple.security 6.1.1 (37594) <9AA7D9BF-852F-111F-68AD-65DD760D4DF3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96e56000 - 0x96e6afe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x96e6b000 - 0x96ea2fe7 libssl.0.9.8.dylib ??? (???) <95FE66AC-C850-4AB4-DD3F-7F198A5E1EAC> /usr/lib/libssl.0.9.8.dylib
    0x96ea3000 - 0x96efdff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96efe000 - 0x971f7fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x972a7000 - 0x972d7ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x972d8000 - 0x97387fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x97388000 - 0x973a0ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x973a1000 - 0x973deff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x973e2000 - 0x973e6ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x973e7000 - 0x973f0ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x973f1000 - 0x9751dfeb com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <9AAFDCBE-C68C-3BB3-8089-83CD2C0B4ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9751e000 - 0x975bbfe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x975bc000 - 0x977e7ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x977e8000 - 0x97895fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x97896000 - 0x9789aff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9789b000 - 0x978a7ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x978a8000 - 0x979ccff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x979cd000 - 0x97a47fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x97a96000 - 0x97abeff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x97bdd000 - 0x97c26fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97c27000 - 0x97d2bfe7 libcrypto.0.9.8.dylib ??? (???) <2E58547A-91CC-4C1A-9FCC-DA7515FDB68A> /usr/lib/libcrypto.0.9.8.dylib
    0x97d2c000 - 0x97d2cff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97d2d000 - 0x97d85fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97d86000 - 0x97de6fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97f13000 - 0x97f63ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97f64000 - 0x97f97ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97fde000 - 0x98020fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x98021000 - 0x98388ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98389000 - 0x9838fff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98847000 - 0x9888bfe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x988ac000 - 0x9893dfe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9893e000 - 0x98ae2feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x98ae3000 - 0x98badfef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98bc7000 - 0x98bcdfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98c06000 - 0x98c1bfff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98c1c000 - 0x98c8aff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x98c8b000 - 0x98c8cff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x98c8d000 - 0x98cb1ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98cd4000 - 0x98cd5ff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <845D5E0D-870D-B7E8-AAC5-8364AC341AA1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98cef000 - 0x98eeffeb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x98ef0000 - 0x98f54ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x98f55000 - 0x98fabff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x98fac000 - 0x98fafffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x98fb0000 - 0x98fbdff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98fbe000 - 0x98ff5ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x98ff6000 - 0x9906fff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x99070000 - 0x9938ffe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x99390000 - 0x99492fef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x99493000 - 0x99630fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib ??? (???) <4FB5CEEB-8D3E-8C57-1718-81D7CAFBFE69> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib ??? (???) <A23F9980-5CC8-A44D-6FD6-DBFCBFF4FF28> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-868
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: FANTOM DRIVE, 0x13fd (Initio Corporation), 0x1340, 0x26200000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000

    Thanks Carolyn, but that still doesn't solve the problem.
    Here's the error I get after trying to click on desktop file to attach to a gmail message.
    Process: Safari [960]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.4 (6531.21.10)
    Build Info: WebBrowser-65312110~2
    Code Type: X86 (Native)
    Parent Process: launchd [118]
    Date/Time: 2010-03-05 23:00:28.269 -0800
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 112855 sec
    Crashes Since Last Report: 90
    Per-App Interval Since Last Report: 11502 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: 8BC34852-F784-451A-817A-4FE6DB8089EA
    Exception Type: EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 19
    Application Specific Information:
    Assertion failed: (den > 0), function floor_ratio, file /SourceCache/ImageIO/ImageIO-457/ProjSnowLeopard/../libJP2-5.1/coresys/common/k du_utils.h, line 187.
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x9893e8da machmsgtrap + 10
    1 libSystem.B.dylib 0x9893f047 mach_msg + 68
    2 com.apple.CoreGraphics 0x95a195ea _CGSSynchronizeWindowBackingStore + 139
    3 com.apple.CoreGraphics 0x95a11936 _CGSLockWindow + 1359
    4 com.apple.CoreGraphics 0x95a1918a CGSDeviceLock + 493
    5 libRIP.A.dylib 0x9672a58b ripd_Lock + 62
    6 libRIP.A.dylib 0x967357c5 ripl_BltImage + 429
    7 libRIP.A.dylib 0x9673538b ripc_RenderImage + 269
    8 libRIP.A.dylib 0x96750e6e ripc_DrawWindowContents + 2695
    9 com.apple.CoreGraphics 0x95ac2b08 contextCopyWindowContentsToRect + 186
    10 com.apple.CoreGraphics 0x95ac2a4c CGContextCopyWindowContentsToRect + 107
    11 com.apple.AppKit 0x9198b81d _NSRenderImageFromWindow + 1683
    12 com.apple.AppKit 0x9198b175 _NXScroll + 385
    13 com.apple.AppKit 0x9189c3e0 -[NSClipView _immediateScrollToPoint:] + 2956
    14 com.apple.AppKit 0x9189b7c1 -[NSClipView scrollToPoint:] + 248
    15 com.apple.AppKit 0x9198a922 -[NSScrollView scrollClipView:toPoint:] + 313
    16 com.apple.AppKit 0x918a5fea -[NSClipView _scrollTo:animate:] + 1042
    17 com.apple.AppKit 0x91a129f5 -[NSScrollView _doScroller:hitPart:multiplier:] + 945
    18 com.apple.AppKit 0x91a1260d -[NSScrollView _doScroller:] + 76
    19 com.apple.AppKit 0x9184cf86 -[NSApplication sendAction:to:from:] + 112
    20 com.apple.Safari 0x0004c78f 0x1000 + 309135
    21 com.apple.AppKit 0x9192c705 -[NSControl sendAction:to:] + 108
    22 com.apple.AppKit 0x91a125ae -[NSScroller sendAction:to:] + 95
    23 com.apple.AppKit 0x91a1235a -[NSScroller(NSScrollerPrivate) _scrollByDelta:] + 845
    24 com.apple.AppKit 0x91a119ea -[NSScrollView scrollWheel:] + 943
    25 com.apple.AppKit 0x91839ddd forwardMethod + 113
    26 com.apple.AppKit 0x91a11621 -[NSView scrollWheel:] + 274
    27 com.apple.AppKit 0x91839ddd forwardMethod + 113
    28 com.apple.AppKit 0x91a11621 -[NSView scrollWheel:] + 274
    29 com.apple.AppKit 0x91923fe0 -[NSWindow sendEvent:] + 5757
    30 com.apple.AppKit 0x91ef1547 -[NSNavSavePanel sendEvent:] + 438
    31 com.apple.AppKit 0x9183cb2f -[NSApplication sendEvent:] + 6431
    32 com.apple.Safari 0x00030bd3 0x1000 + 195539
    33 com.apple.AppKit 0x91a8538b -[NSApplication _realDoModalLoop:peek:] + 806
    34 com.apple.AppKit 0x91a84ab1 -[NSApplication runModalForWindow:] + 273
    35 com.apple.AppKit 0x91d177f3 -[NSSavePanel runModal] + 420
    36 com.apple.AppKit 0x91ef17a7 -[NSNavOpenPanel run] + 141
    37 com.apple.AppKit 0x91ef335b _NSNavDialogRun + 223
    38 ...romedia.Flash Player.plugin 0x1b3aeee1 FlashPlayer10_0_45_2FlashPlayer + 771073
    39 ...ple.CoreServices.CarbonCore 0x991398cb MPRemoteCallback + 32
    40 com.apple.CoreFoundation 0x967baedb __CFRunLoopRun + 8059
    41 com.apple.CoreFoundation 0x967b8864 CFRunLoopRunSpecific + 452
    42 com.apple.CoreFoundation 0x967b8691 CFRunLoopRunInMode + 97
    43 com.apple.HIToolbox 0x94d80f0c RunCurrentEventLoopInMode + 392
    44 com.apple.HIToolbox 0x94d80cc3 ReceiveNextEventCommon + 354
    45 com.apple.HIToolbox 0x94d80b48 BlockUntilNextEventMatchingListInMode + 81
    46 com.apple.AppKit 0x9180eac5 _DPSNextEvent + 847
    47 com.apple.AppKit 0x9180e306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    48 com.apple.Safari 0x0000c258 0x1000 + 45656
    49 com.apple.AppKit 0x917d049f -[NSApplication run] + 821
    50 com.apple.AppKit 0x917c8535 NSApplicationMain + 574
    51 com.apple.Safari 0x0000273d 0x1000 + 5949
    Thread 1: JavaScriptCore: FastMalloc scavenger
    0 libSystem.B.dylib 0x9896c806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98998441 nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x989ce65a sleep$UNIX2003 + 63
    3 com.apple.JavaScriptCore 0x995b50b8 ***::TCMalloc_PageHeap::scavengerThread() + 168
    4 ??? 0x00000020 0 + 32
    Thread 2: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x989650ea kevent + 10
    1 libSystem.B.dylib 0x98965804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x98964cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x98964a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x989644f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 3: WebCore: IconDatabase
    0 libSystem.B.dylib 0x9896c806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9896c4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9896e158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.WebCore 0x943354ca WebCore::IconDatabase::syncThreadMainLoop() + 266
    4 com.apple.WebCore 0x94331394 WebCore::IconDatabase::iconDatabaseSyncThread() + 180
    5 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    6 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 4: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x9893e8da machmsgtrap + 10
    1 libSystem.B.dylib 0x9893f047 mach_msg + 68
    2 com.apple.CoreFoundation 0x967b977f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x967b8864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x967b8691 CFRunLoopRunInMode + 97
    5 com.apple.Safari 0x000254c9 0x1000 + 148681
    6 com.apple.Safari 0x0002517c 0x1000 + 147836
    7 com.apple.Safari 0x00025115 0x1000 + 147733
    8 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    9 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9893e8da machmsgtrap + 10
    1 libSystem.B.dylib 0x9893f047 mach_msg + 68
    2 com.apple.CoreFoundation 0x967b977f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x967b8864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x967b8691 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x90b78430 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x90b3f8d8 -[NSThread main] + 45
    7 com.apple.Foundation 0x90b3f888 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    9 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9895d856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x967f8ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    3 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 7: Safari: SnapshotStore
    0 libSystem.B.dylib 0x9896c806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9896c4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9896e158 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x9949ba71 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4 com.apple.Safari 0x00041ddd 0x1000 + 265693
    5 com.apple.Safari 0x00041d2d 0x1000 + 265517
    6 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x98964182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98964718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 9:
    0 libSystem.B.dylib 0x9893e8da machmsgtrap + 10
    1 libSystem.B.dylib 0x9893f047 mach_msg + 68
    2 ...romedia.Flash Player.plugin 0x1b50dbc4 FlashPlayer10_0_45_2FlashPlayer + 2207972
    3 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    4 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x9893e922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9896c45c pthread_condwait + 1089
    2 libSystem.B.dylib 0x989b5503 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1b2e444f 0x1b006000 + 3007567
    4 ...romedia.Flash Player.plugin 0x1b2fdccf FlashPlayer10_0_45_2FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x1b2e48ff 0x1b006000 + 3008767
    6 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x9893e922 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x9896c45c pthread_condwait + 1089
    2 libSystem.B.dylib 0x989b5503 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1b2e444f 0x1b006000 + 3007567
    4 ...romedia.Flash Player.plugin 0x1b2fdccf FlashPlayer10_0_45_2FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x1b2e48ff 0x1b006000 + 3008767
    6 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x9893e8da machmsgtrap + 10
    1 libSystem.B.dylib 0x9893f047 mach_msg + 68
    2 com.apple.CoreFoundation 0x967b977f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x967b8864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x967be7a4 CFRunLoopRun + 84
    5 com.apple.DesktopServices 0x9218363f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 643
    6 ...ple.CoreServices.CarbonCore 0x990967ae PrivateMPEntryPoint + 68
    7 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    8 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x98964182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98964718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 14:
    0 libSystem.B.dylib 0x98964182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98964718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 15:
    0 libSystem.B.dylib 0x98964182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98964718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 16:
    0 libSystem.B.dylib 0x98964182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98964718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 17:
    0 libSystem.B.dylib 0x98964182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98964718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98964336 start_wqthread + 30
    Thread 18:
    0 libSystem.B.dylib 0x9896c806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9896c4c2 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9896e158 pthreadcondwait$UNIX2003 + 73
    3 ...ple.CoreServices.CarbonCore 0x990cb87a TSWaitOnCondition + 126
    4 ...ple.CoreServices.CarbonCore 0x9913986c MPRemoteCall + 315
    5 ...romedia.Flash Player.plugin 0x1b3b09ce FlashPlayer10_0_45_2FlashPlayer + 777966
    6 ...romedia.Flash Player.plugin 0x1b080388 0x1b006000 + 500616
    7 ...romedia.Flash Player.plugin 0x1b0803b1 0x1b006000 + 500657
    8 ...romedia.Flash Player.plugin 0x1b2e48ff 0x1b006000 + 3008767
    9 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    10 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 19 Crashed:
    0 libSystem.B.dylib 0x989aba4e _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x989ab932 nanosleep$NOCANCEL$UNIX2003 + 166
    2 libSystem.B.dylib 0x98a2739a usleep$NOCANCEL$UNIX2003 + 61
    3 libSystem.B.dylib 0x98a48a50 abort + 105
    4 libSystem.B.dylib 0x98a355ec _pthreadmarkcancel + 0
    5 com.apple.ImageIO.framework 0x956a8268 floor_ratio(int, int) + 65
    6 com.apple.ImageIO.framework 0x956b21e6 kdpacketsequencer::init() + 346
    7 com.apple.ImageIO.framework 0x956ac86a kd_tile::initialize() + 10056
    8 com.apple.ImageIO.framework 0x956a9d41 kdcodestream::create_tile(kducoords) + 559
    9 com.apple.ImageIO.framework 0x956a99e4 kducodestream::open_tile(kducoords, kduthreadenv*) + 298
    10 com.apple.ImageIO.framework 0x956a988a kduregion_decompressor::opentile(int) + 2036
    11 com.apple.ImageIO.framework 0x956a84a0 kduregion_decompressor::processgeneric(int, int, kdu_coords, int, int, int, kdu_dims&, kdu_dims&, int, bool) + 116
    12 com.apple.ImageIO.framework 0x956a8420 kduregiondecompressor::process(int*, kdu_coords, int, int, int, int, kdu_dims&, kdu_dims&) + 406
    13 com.apple.ImageIO.framework 0x956a7371 kdrc_stream::process(int, kdu_dims&, int&) + 1001
    14 com.apple.ImageIO.framework 0x956a6e73 kduregioncompositor::process(int, kdu_dims&) + 271
    15 com.apple.ImageIO.framework 0x956a6198 cgJP2DecompressBand + 240
    16 com.apple.ImageIO.framework 0x956a608b getBandProcJP2 + 49
    17 com.apple.ImageIO.framework 0x9565cfea glueCopyImageBlockSet + 2094
    18 com.apple.ImageIO.framework 0x95654429 ImageProviderCopyImageBlockSetCallback + 174
    19 com.apple.CoreGraphics 0x95a96b4b CGImageProviderCopyImageBlockSet + 228
    20 com.apple.CoreGraphics 0x95a9b35c imgblockscreate + 348
    21 com.apple.CoreGraphics 0x95a9b1e1 imgblocksextent + 85
    22 com.apple.CoreGraphics 0x95a3460e imgdatalock + 8882
    23 com.apple.CoreGraphics 0x95a3170a CGSImageDataLock + 172
    24 libRIP.A.dylib 0x96734748 ripc_AcquireImage + 2446
    25 libRIP.A.dylib 0x967323be ripc_DrawImage + 1245
    26 com.apple.CoreGraphics 0x95a31384 CGContextDrawImage + 450
    27 com.apple.CoreGraphics 0x95bfac3f CGPDFDrawingContextDrawImage + 423
    28 com.apple.CoreGraphics 0x95bf2563 op_Do + 121
    29 com.apple.CoreGraphics 0x95ab240c pdfscanner_handlexname + 104
    30 com.apple.CoreGraphics 0x95ab1514 CGPDFScannerScan + 515
    31 com.apple.CoreGraphics 0x95aaf630 CGPDFDrawingContextDrawPage + 812
    32 com.apple.CoreGraphics 0x95aaf2ca CGContextDrawPDFPageWithProgressCallback + 99
    33 com.apple.CoreGraphics 0x95aaf264 CGContextDrawPDFPage + 40
    34 com.apple.ImageIO.framework 0x9565d864 getBandProcPDF + 1753
    35 com.apple.ImageIO.framework 0x9565cfea glueCopyImageBlockSet + 2094
    36 com.apple.ImageIO.framework 0x95654429 ImageProviderCopyImageBlockSetCallback + 174
    37 com.apple.CoreGraphics 0x95a96b4b CGImageProviderCopyImageBlockSet + 228
    38 com.apple.CoreGraphics 0x95a9b35c imgblockscreate + 348
    39 com.apple.CoreGraphics 0x95a32ec5 imgdatalock + 2921
    40 com.apple.CoreGraphics 0x95a3170a CGSImageDataLock + 172
    41 libRIP.A.dylib 0x96734748 ripc_AcquireImage + 2446
    42 libRIP.A.dylib 0x967323be ripc_DrawImage + 1245
    43 com.apple.CoreGraphics 0x95a31384 CGContextDrawImage + 450
    44 com.apple.ImageIO.framework 0x956cc00c CGImageCreateCopyWithParametersNew + 1503
    45 com.apple.ImageIO.framework 0x956cad28 CGImageSourceCreateThumbnailAtIndex + 3475
    46 com.apple.AppKit 0x91c8521d -[NSNavFBENode _quickLookImageWithMaxSize:isThumbnail:] + 956
    47 com.apple.AppKit 0x91c90832 +[NSNavNodePreviewHelper _subthreadComputePreviewThumbnailImages] + 626
    48 com.apple.Foundation 0x90b3f8d8 -[NSThread main] + 45
    49 com.apple.Foundation 0x90b3f888 _NSThread__main_ + 1499
    50 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    51 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x9893e93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9896c445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9899b028 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x990b7235 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x990b6f73 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x990db16b TimerThread + 97
    6 libSystem.B.dylib 0x9896bfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9896be42 thread_start + 34
    Thread 19 crashed with X86 Thread State (32-bit):
    eax: 0x0000003c ebx: 0x989ab899 ecx: 0xb017faec edx: 0x989aba4e
    edi: 0x000000bb esi: 0xb017fb48 ebp: 0xb017fb28 esp: 0xb017faec
    ss: 0x0000001f efl: 0x00000247 eip: 0x989aba4e cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x002ff000
    Binary Images:
    0x1000 - 0x1b4fe7 com.apple.Safari 4.0.4 (6531.21.10) <0FEFC124-5DC1-2D4A-24FC-3EC75409623E> /Applications/Safari.app/Contents/MacOS/Safari
    0x25da000 - 0x25daff7 com.apple.JavaPluginCocoa 13.1.0 (13.1.0) <C2C8B385-DB44-1D5E-5221-9ED1BA43930B> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x25f0000 - 0x25f7ff7 com.apple.JavaVM 13.1.0 (13.1.0) <2842C4EE-869D-81E6-E771-062F583A1044> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17eb8000 - 0x17ee1fef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1b006000 - 0x1b640ffb +com.macromedia.Flash Player.plugin 10.0.45.2 (1.0.4f458472) <D1AAAB5D-4178-61E6-A5B8-35B01D303955> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1c7d7000 - 0x1c82cfdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1c85a000 - 0x1c85dff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1c862000 - 0x1c892ff4 +com.google.googletalkbrowserplugin 1.0.20.8768 (1.0.20.8768) <E68E4E2F-8349-0CF8-E36B-FD1BC8A62DF6> /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin/Contents/MacOS/googletalkbrowserplugin
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x9000e000 - 0x90443ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90444000 - 0x904f7fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x904f8000 - 0x904faff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x904fb000 - 0x90593fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90594000 - 0x906c2fe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90978000 - 0x909a9ff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x909aa000 - 0x90aa0ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90aa1000 - 0x90ad9ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90b29000 - 0x90d99ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90d9a000 - 0x90da8fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x90da9000 - 0x90df9fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90dfa000 - 0x90e38ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90e39000 - 0x90e46ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90e47000 - 0x90e65ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90e66000 - 0x90e66ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90e67000 - 0x90e67ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90e68000 - 0x90e6aff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90e6b000 - 0x90eebfeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90eec000 - 0x90efcff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90efd000 - 0x90f07ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90f08000 - 0x90f08ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x90f09000 - 0x90f78ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90f79000 - 0x90faeff7 libcups.2.dylib ??? (???) <AFDC4D3C-0FF4-D459-B26C-4BA1093F9142> /usr/lib/libcups.2.dylib
    0x90faf000 - 0x9105eff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9105f000 - 0x91095fff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x910a9000 - 0x910bdffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x910be000 - 0x91299ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x9129a000 - 0x913b0fe3 com.apple.PubSub 1.0.4 (65.11) <7F349A71-C4E6-E645-B28D-03A7DD120AA6> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x913b1000 - 0x9170ffff com.apple.RawCamera.bundle 3.0.1 (523) <BB20C4C8-ACEE-7B40-C1A0-4BF4EC6B8796> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x91711000 - 0x917bfff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x917c6000 - 0x920a4ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92181000 - 0x9225bff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9225c000 - 0x922cffff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x92309000 - 0x9238bffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92391000 - 0x927a7ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x927a8000 - 0x9292afe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x9292b000 - 0x92952ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92c17000 - 0x92c21ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92c22000 - 0x92c42fe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92ce6000 - 0x92ce7ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92ce8000 - 0x92dccff7 com.apple.WebKit 6531.21 (6531.21.8) <0C45DB5C-D81F-BFFE-232D-7E6F647E597F> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x92dcd000 - 0x93d5bff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93d67000 - 0x93e38fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x93e39000 - 0x93e3cfe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x93e3d000 - 0x93eadff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93f23000 - 0x93f3eff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93f3f000 - 0x93f42ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x93f43000 - 0x93f48ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93f57000 - 0x93f61ff7 com.apple.CrashReporterSupport 10.6.2 (239) <746DBA09-A901-E5FE-8605-F5EC3D9359FF> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93f62000 - 0x93f6cfe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93f6d000 - 0x93f7dff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93f7e000 - 0x94025fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94026000 - 0x94127fe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x94128000 - 0x94182fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x941cc000 - 0x94219feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9421a000 - 0x942c2ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x942c3000 - 0x9432dfe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9432e000 - 0x94b58fe7 com.apple.WebCore 6531.21 (6531.21.8) <60DEC7F3-954D-F4C4-360A-13575EDCC40A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x94b59000 - 0x94c66ff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x94c67000 - 0x94c83fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94c84000 - 0x94c84ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94c85000 - 0x94c95fff SyndicationUI ??? (???) <5AC05CC5-8CCA-5C2A-9252-BBDA4D5E03B2> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x94c96000 - 0x94cd2fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94cdb000 - 0x94d1eff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94d4c000 - 0x9506ffef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x950ac000 - 0x9528efff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95299000 - 0x952ddff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x952f7000 - 0x952f7ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x952f8000 - 0x9531efff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9531f000 - 0x95354ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95355000 - 0x95377fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95378000 - 0x95431fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x95432000 - 0x95444ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95455000 - 0x95458ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95491000 - 0x954b1fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x955ac000 - 0x95648fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95649000 - 0x95805fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95806000 - 0x95840ffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95841000 - 0x95980fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x959ab000 - 0x959eaff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x959eb000 - 0x959f1ff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x959f2000 - 0x961d54b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x961d6000 - 0x96684fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x96685000 - 0x96696ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96697000 - 0x9670efe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96722000 - 0x96763ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9676c000 - 0x96777ff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96778000 - 0x9677cff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9677d000 - 0x968f4fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x968f5000 - 0x968fcff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x968fd000 - 0x968fdff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96930000 - 0x96976ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x96977000 - 0x96977ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96a1e000 - 0x96a1eff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96a1f000 - 0x96afcff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96b44000 - 0x96b95ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96baa000 - 0x96beaff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x96beb000 - 0x96bf2fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96bf3000 - 0x96e55fe7 com.apple.security 6.1.1 (37594) <9AA7D9BF-852F-111F-68AD-65DD760D4DF3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96e56000 - 0x96e6afe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x96e6b000 - 0x96ea2fe7 libssl.0.9.8.dylib ??? (???) <95FE66AC-C850-4AB4-DD3F-7F198A5E1EAC> /usr/lib/libssl.0.9.8.dylib
    0x96ea3000 - 0x96efdff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96efe000 - 0x971f7fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x972a7000 - 0x972d7ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x972d8000 - 0x97387fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x97388000 - 0x973a0ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x973a1000 - 0x973deff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x973e2000 - 0x973e6ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x973e7000 - 0x973f0ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x973f1000 - 0x9751dfeb com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <9AAFDCBE-C68C-3BB3-8089-83CD2C0B4ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9751e000 - 0x975bbfe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x975bc000 - 0x977e7ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x977e8000 - 0x97895fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x97896000 - 0x9789aff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9789b000 - 0x978a7ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x978a8000 - 0x979ccff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x979cd000 - 0x97a47fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x97a96000 - 0x97abeff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x97b6e000 - 0x97bdcff7 com.apple.ISSupport 1.9.2 (50) <A9BDA884-D0AF-9F39-0840-8B7F5E8E2031> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x97bdd000 - 0x97c26fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97c27000 - 0x97d2bfe7 libcrypto.0.9.8.dylib ??? (???) <2E58547A-91CC-4C1A-9FCC-DA7515FDB68A> /usr/lib/libcrypto.0.9.8.dylib
    0x97d2c000 - 0x97d2cff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x97d2d000 - 0x97d85fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97d86000 - 0x97de6fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97f13000 - 0x97f63ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97f64000 - 0x97f97ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97fde000 - 0x98020fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x98021000 - 0x98388ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x98389000 - 0x9838fff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98847000 - 0x9888bfe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x988ac000 - 0x9893dfe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9893e000 - 0x98ae2feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x98ae3000 - 0x98badfef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98bc7000 - 0x98bcdfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x98c06000 - 0x98c1bfff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98c1c000 - 0x98c8aff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x98c8b000 - 0x98c8cff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x98c8d000 - 0x98cb1ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98cd4000 - 0x98cd5ff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <845D5E0D-870D-B7E8-AAC5-8364AC341AA1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98cef000 - 0x98eeffeb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x98ef0000 - 0x98f54ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x98f55000 - 0x98fabff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x98fac000 - 0x98fafffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x98fb0000 - 0x98fbdff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98fbe000 - 0x98ff5ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x98ff6000 - 0x9906fff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x99070000 - 0x9938ffe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x99390000 - 0x99492fef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x99493000 - 0x99630fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R UJ-868
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: FANTOM DRIVE, 0x13fd (Initio Corporation), 0x1340, 0x26200000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000

  • Cannot open raw files from my D90

    I can't open raw files from my Nikon D90. I have one computer with elements 6 and another with 7 on it. I have installed Camera Raw 5.5 on elements 7 and reinstalled the program. Nothing helped. The files opened using the Nikon program provided with the D90. I also have a D80 and it works fine. I am out of ideas. Help Please!!!!!!!!!!!!!!!!! I believe the files are not damaged.

    Here are the directions from the download page of ACR 5.5 for PSE:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4582
    At which step are you getting hung up?
    To install with Adobe Photoshop Elements:
    NOTE: You must follow all of the new instructions in order to successfully install the Camera Raw Plug-in for Photoshop Elements.
    1. Exit Photoshop Elements
    2. Open the download file and double-click CameraProfiles.exe and follow the on-screen instructions
    3. Open My Computer
    4. Double-click Local Disk (C:)
    5. Navigate to the location designated by your version of Photoshop Elements: (Please read directory carefully)
    a. Photoshop Elements 6.0: Program Files\Adobe\Photoshop Elements 6.0\Plug-Ins\File Formats
    b. Photoshop Elements 7.0: Program Files\Adobe\Photoshop Elements 7.0\Plug-Ins\File Formats
    6. Move the existing Camera Raw.8bi plug-in to another location (for example, a new folder on your desktop). Ensure you keep this version in case you need to revert back.
    7. Copy the Camera Raw plug-in, Camera Raw.8bi, from the download into the same folder as Step 5.
    8. Launch Photoshop Elements

  • Can't open office files from my usb drive

    Dear forum
    Sins a few weeks ago i am not able to open office file from my USB-drive.
    However i can copy the file to the desktop and than i can open them.
    I have this problme only (for as far i know) with office files.
    greetings Ypkoba

    If the drive is NTFS format, the Mac can read, but not write thiose drives natively.
    So the issue may be that the temp file and the output file cannot be created on the same drive.

  • Problems opening PDF files from Websites

    I just had the contents of my (dying) ibook transferred onto my emac. The tech created a new user/desktop on the emac. Now, when I try to open PDF files from a website, I get a window saying this:
    "Downloading - users/myname/desktop/xxxxx.pdf could not be saved because an unknown error occurred. Try saving to a different location."
    Points to note: 1) The "xxxxx.pdf" part of the above message changes each time I try to open a pdf document, even the same one, and it does not show the real name of the document (e.g. CollegeApplication.pdf)
    2) this never happened on my laptop;
    3) the settings are set in Firefox to download pdf's to my desktop;
    4) I have the latest version of Adobe Acrobat, which I already tried opening before downloading.
    Any ideas? Thank you!

    Will the new account save to a different location?
    Is the "myname" that appears in the error message that of the new account or of the old one?
    Following up on Frank's tip about file permissions, is it possible that the GID of the new user account conflicts with the existing? The existing admin user was likely GID = 501 on both Macs, and depending on how the laptop's data was transferred, the internal ownership of the transferred files still points to 502 rather than say 502.
    have you tried the old standby of running Disk Utility's Repair Permissions on the hard drive?

Maybe you are looking for