Acrobat form on Ipad - form field to open camera and use photo in field?

If I am using a acrobat form on an Ipad can I set a required field to open the camera, take a photo, and place the photo in the field?

It's possible, but not with Reader for iOS. The only PDF viewer for iOS that I know it can be done with is Readdle's PDF Expert. You can set up a button with a layout other than "Label Only", and use the following JavaScript in the button's Mouse Up event:
// Mouse Up script
event.target.buttonImportIcon();
It will allow you to take a picture or use an image from a photo library.

Similar Messages

  • Interactive PDF form on Android, can I make a form field to open camera and use photo in field?

    If I have an interactive PDF form on Android, is there any way to make a form field that will open the camera and insert the photo in the field?

    One alternative would be to create a web form in FormsCentral and use the attachment feature.

  • My iPad has suddenly lost my camera and FaceTime apps. I've tried to go into the restrictions however it is asking for passcode I never set up. Then I've tried to do a reset but it to is asking for a passcode that I never set up.

    MY iPad has suddenly lost my camera and FaceTime apps. Yes I've tried to modify in the restrictions however it is asking for a passcode that I never set up.  I've also tried to go and reset my iPad but it to is asking for a passcode. Yes I've tried any passcode I've ever used. And I can't get anywhere. Help!

    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/HT1212
    Follow the section for recovery mode restore.

  • To find the date type fields in the row and validate those date fields

    TYPES : BEGIN OF TY_MARA,
              MATNR TYPE MARA-MATNR,
              ERSDA TYPE MARA-ERSDA,
              ERNAM TYPE MARA-ERNAM,
              LAEDA TYPE MARA-LAEDA,
              MTART TYPE MARA-MTART,
            END OF TY_MARA.
    DATA : it_mara TYPE STANDARD TABLE OF ty_mara,
          it_mara1 TYPE STANDARD TABLE OF ty_mara,
           wa_mara TYPE ty_mara.
    loop at it_mara into wa_mara.
      describe field wa_mara-ersda type c_data.
    if c_data eq 'D'.
      CALL FUNCTION 'DATE_CHECK_PLAUSIBILITY'
        EXPORTING
          date                            = wa_mara-ersda
       EXCEPTIONS
         PLAUSIBILITY_CHECK_FAILED       = 1
         OTHERS                          = 2
      IF sy-subrc eq 0.
    wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
        else.
            wa_mara-ersda = '00000000'.
        append wa_mara to it_mara1.
        write :wa_mara-matnr,wa_mara-ersda.
      ENDIF.
      endif.
      endloop.
    This issue regarding how to find the date type fields in the row and validate those date fields.If its not a valid date ,i have to assign initial value to that.
    I've tried that for single field using describe field.Please help me do that for all fields.

    Hi Sam,
     I believe we had discussed the same issue in the below thread. Can you please refer the below one?
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/d93e16ff-c123-4b36-b60b-60ccd34f6ca7/calculate-time-differences-in-infopath?forum=sharepointcustomizationprevious
    If it's not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • I have dreamweaver in my adobe cre4atove cloud suite. How do I open it and use it

    I have dreamweaver in my adobe cloud suite. How do I open it and use it

    If you have installed it, it will be in your Program Files (PC) or Applications (Mac) folder.
    If you haven't installed it, you will need to open the Creative Cloud Application and click the Install button next to Dreamweaver under the Apps tab.

  • Focus search field when open Presets and Effects panel

    Hi Adobe-Forum.
    I like to get the cursor automatically placed into the search-field of the preset and effects panel.
    Exists a shortcut or an option for that?
    It’s annoying to use the mouse to get into this field by hand.
    Thank you for your help!
    Cheers
    Brian

    I was mistaken. Every time I go to that panel I click in the search field. I don't recall ever clicking in the panel first then the search field. It was not until I tried it buy clicking outside the search field that I discovered the problem.
    It looks like there is no way to make it automatically focus when selecting the panel with a keyboard shortcut. Might be time for a feature request.
    For most of my effects I add them in the ECP (Effects control Panel and then type the first letter of the category, right arrow, then the first letter of the effect. This works for me because I know where just about all of them are from experience. If I do have to search I simply click directly in the search field.

  • Attach pdf to email and use text from field in body

    I'm looking to create a fillable form with a 'submit' button at the bottom.  Upon clicking the submit button, I would like an e-mail window to open with a pre-defined recipient, and the pdf attached.  I've found code to accomplish this using this.mailDoc()
    However:
    I'm also hoping to get the text from the "Name" field of my form and use it in the body of the e-mail.
    I've found the following code in another post, which appears to work for this:
    var cClientName = this.getField("ClientName").value;
    var cAddress = this.getField("Address").value;
    var cBody = "Client Information:\n\n";
    cBody += "Client Name: " + cClientName + "\n";
    cBody += "Address: " + cAddress + "\n";
    var myURL = "mailto:[email protected]?subject=Client Info&body=";
    myURL += cBody;
    app.launchURL(myURL, true);
    That will open an e-mail window with a body containing the data from AcroForm fields named "ClientName" and "Address".
    The problem is, that this code will not attach the pdf.
    How can I get the best of both worlds?
    Thanks!

    You don't need launchURL to achieve that. mailDoc is capable of setting the
    subject line, email body, recipients lists, etc.
    See this tutorial for a detailed explanation:
    http://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address

  • Open XML and using xslt with JavaScript

    Hello,
    I want the user to be able to choose an XML-file. This XML-file should not be placed in InDesign, there is not even a document needed for my script. All I need is a variable, containing the file. However, the XML-file should be transformed with xslt into another XML-file. How do I do this?
    This is how I open the first XML-file, the one that should be transformed:
       var xmlDoc = File.openDialog ("Choose XML");
       if (xmlDoc == null) {return;}
        xmlDoc.open("r");
        xmlDoc = xmlDoc.read();
        xmlDoc = new XML(xmlDoc);
    I can adress different nodes and use xmlDoc as an XML-file, so that's fine, but how do I transform it?
    I read the Scripting Guide and tried this:
        var myDocument = app.documents.add();
        var myXMLImportPreferences = app.xmlImportPreferences;
        myXMLImportPreferences.transformFilename = "c:\myTransform.xsl";
        var xx = myDocument.importXML(File.openDialog ("XML"));
    However, it's not exactly what I want since I have to create a document and it's not working either, since xx stays undefined.
    Thanks for your help.

    You can't get exactly what you want.
    Your first code example uses the InDesign JavaScript interpreter's XML support, called E4X. It has absolutely nothing to do with the InDesign document object model or InDesign's internal support for XML. It exists only within the JavaScript interpreter. It does not support XSLT transformations.
    Your second example leverages InDesign's built-in XSLT support (I'm not too sure how this works...); but that is only useful when importing XML into
    InDesign, which, as you have learned, requires a document.
    In the first example, you could call out to an external invokation of xsltproc and read in the input. How to do that differs for Windows and Mac.
    In the second example, you could export the XML from your Document back out to an XML file and read it back in with E4X.
    None of this is very appealing. What do you really need to do?

  • Open camera and capture image using J2me.

    please I want J2me code to open the mobile camera and capture image....
    please reply me as quick as possible....(very urgent)...

    eng_amy wrote:
    please I want J2me code to open the mobile camera and capture image....Well..
    eng_amy wrote:
    please reply me as quick as possible....(very urgent).....(checks watch) ..it's obviously too late. Never mind.

  • Error :: ODBC Unable To Open Database And Windows Photo Gallery.  How do I fix?

    I get an ODBC error when I try to get photos in the organizer of Photoshop 4.  It just started.  What is wrong?

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Iphoto keeps crashing when opening program and updating photos

    I just bought ilife today and installed it. When it was done we opened iphoto and it said it needed to update library and would take about 23 min. Around 10 min left it crashed so I restarted and tried again. same thing. Then I thought maybe if I installed 10.9 update that would fix problem. again,crashed. So I had my library on a lacie external so thought maybe that was the problem so brought them over to Mac harddrive. Still crashes. Any advice

    ===== Display starts at offset 243026 within file of length 374098. ====
    ===== Use File->Reload (Cmd-R) to display more. ====
    ore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    Host Name: host86-154-99-0.range86-154.btcentralplus.com
    Date/Time: 2007-05-09 17:29:00 +0100
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version: 6.0.6 (6.0.6)
    PID: 350
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x080fa000
    Thread 0 Crashed:
    0 libRaw.dylib 0x801f5964 buildFloatSlideLUTs + 0x34
    1 libRaw.dylib 0x801f3418 bayerReconstruction + 0x6d4
    2 libRaw.dylib 0x801f3e04 cgRawInterpAndConvert + 0x6c8
    3 com.apple.ImageIO.framework 0x802a572c getBandProcRaw + 0x33c
    4 com.apple.ImageIO.framework 0x80299870 getBytePtr_cb + 0x74
    5 com.apple.CoreGraphics 0x964be254 CGDataProviderGetBytePointer + 0x58
    6 com.apple.CoreGraphics 0x964f4db0 imgdecoderead + 0x7c
    7 com.apple.CoreGraphics 0x964a2318 CGSImageDataLock + 0xc34
    8 libRIP.A.dylib 0x9121d914 ripc_DrawImageObject + 0x41c
    9 libRIP.A.dylib 0x9121f264 ripc_DrawImage + 0x144
    10 com.apple.CoreGraphics 0x964b4cbc CGContextDrawImage + 0x17c
    11 com.apple.iPhoto 0x001a4e08 0x1000 + 0x1a3e08
    12 com.apple.iPhoto 0x001a2a18 0x1000 + 0x1a1a18
    13 com.apple.iPhoto 0x0011d2d0 0x1000 + 0x11c2d0
    14 com.apple.iPhoto 0x0011a164 0x1000 + 0x119164
    15 com.apple.iPhoto 0x0011a560 0x1000 + 0x119560
    16 com.apple.iPhoto 0x0011b060 0x1000 + 0x11a060
    17 com.apple.iPhoto 0x0012f178 0x1000 + 0x12e178
    18 com.apple.iPhoto 0x00090180 0x1000 + 0x8f180
    19 com.apple.iPhoto 0x0008e780 0x1000 + 0x8d780
    20 com.apple.iPhoto 0x0008595c 0x1000 + 0x8495c
    21 com.apple.iPhoto 0x00081238 0x1000 + 0x80238
    22 com.apple.iPhoto 0x00078e38 0x1000 + 0x77e38
    23 com.apple.iPhoto 0x0007a924 0x1000 + 0x79924
    24 com.apple.iPhoto 0x00055fd0 0x1000 + 0x54fd0
    25 com.apple.Foundation 0x90a2799c nsnotecallback + 0xb0
    26 com.apple.CoreFoundation 0x901db118 __CFXNotificationPost + 0x1b4
    27 com.apple.CoreFoundation 0x901dfb7c _CFXNotificationPostNotification + 0x340
    28 com.apple.Foundation 0x90a257e8 -[NSNotificationCenter postNotificationName:object:userInfo:] + 0x74
    29 com.apple.AppKit 0x92f93328 -[NSApplication _postDidFinishNotification] + 0x70
    30 com.apple.AppKit 0x92f93214 -[NSApplication _sendFinishLaunchingNotification] + 0x5c
    31 com.apple.AppKit 0x92f93444 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 0x78
    32 com.apple.Foundation 0x90a7ae28 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 0x164
    33 com.apple.Foundation 0x90a816c0 _NSAppleEventManagerGenericHandler + 0x78
    34 com.apple.AE 0x90706a10 Z20aeDispatchAppleEventPK6AEDescPSmPh + 0xd0
    35 com.apple.AE 0x90709858 Z25dispatchEventAndSendReplyPK6AEDescPS + 0x2c
    36 com.apple.AE 0x90706c50 aeProcessAppleEvent + 0x11c
    37 com.apple.HIToolbox 0x92975224 AEProcessAppleEvent + 0x3c
    38 com.apple.AppKit 0x92e82420 _DPSNextEvent + 0x358
    39 com.apple.AppKit 0x92e98cc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
    40 com.apple.AppKit 0x92ead048 -[NSApplication run] + 0x21c
    41 com.apple.AppKit 0x92f69764 NSApplicationMain + 0x1d0
    42 com.apple.iPhoto 0x0000b05c 0x1000 + 0xa05c
    43 com.apple.iPhoto 0x0000af04 0x1000 + 0x9f04
    Thread 1:
    0 libSystem.B.dylib 0x900127b8 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a331e8 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.AppKit 0x92e7a3ec -[NSUIHeartBeat _heartBeatThread:] + 0x494
    3 com.apple.Foundation 0x90a6a3c8 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 ...ple.CoreServices.CarbonCore 0x91c5c570 TSWaitOnSemaphoreCommon + 0xb0
    3 ...ickTimeComponents.component 0x940b7ca4 ReadSchedulerThreadEntryPoint + 0x14b4
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 ...ple.CoreServices.CarbonCore 0x91c5c570 TSWaitOnSemaphoreCommon + 0xb0
    3 ...ple.CoreServices.CarbonCore 0x91c5c3f4 _Z15AsyncFileThreadPv + 0x38
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x801f5964 srr1: 0x0000f030 vrsave: 0x00000000
    cr: 0x84882482 xer: 0x00000004 lr: 0x801ebe78 ctr: 0x00007c80
    r0: 0xffffffff r1: 0xbfffb9f0 r2: 0x080fa000 r3: 0x080ba000
    r4: 0x08119200 r5: 0x00010000 r6: 0x801f5938 r7: 0xffffffff
    r8: 0x07beedec r9: 0x0000233f r10: 0x801f5938 r11: 0x0000dffd
    r12: 0x0000dded r13: 0x00000100 r14: 0x801fbd1c r15: 0x801fbd1c
    r16: 0x0000009e r17: 0x801fbd1c r18: 0x801fbd1c r19: 0x0000000d
    r20: 0x000000a0 r21: 0x00000078 r22: 0xbfffbbc0 r23: 0x0a3e5000
    r24: 0x00000078 r25: 0x43300000 r26: 0x08119200 r27: 0x08099200
    r28: 0x07bee000 r29: 0xbfffbbc0 r30: 0x00000080 r31: 0x801ebd1c
    Binary Images Description:
    0x1000 - 0x467fff com.apple.iPhoto 6.0.6 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x1051000 - 0x105bfff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x108a000 - 0x1093fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x10aa000 - 0x10b3fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x10e3000 - 0x10e8fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x17a4000 - 0x17b7fff com.apple.HomePageService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/HomePageService.NetServic e/Contents/MacOS/HomePageService
    0x17c3000 - 0x17cdfff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x6d6a000 - 0x6d84fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x7b78000 - 0x7be0fff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x39d60000 - 0x39dbdfff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/NetServices.f ramework/Versions/A/NetServices
    0x3e5c0000 - 0x3e5c3fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/BDRuleEngine. framework/Versions/A/BDRuleEngine
    0x3e5f0000 - 0x3e5f8fff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/BDControl.fra mework/Versions/A/BDControl
    0x3e660000 - 0x3e691fff com.apple.MediaBrowser 2.0.3 (103) /Applications/iPhoto.app/Contents/MacOS/../Frameworks/MediaBrowser.framework/Ve rsions/A/MediaBrowser
    0x3e6f0000 - 0x3e742fff com.apple.DotMacKit 10 (2.0) /Applications/iPhoto.app/Contents/MacOS/../Frameworks/DotMacKit.framework/Versi ons/A/DotMacKit
    0x73230000 - 0x73233fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x761c6000 - 0x76282fff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x76c02000 - 0x76c12fff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x76d26000 - 0x76d65fff com.apple.QuickTimeFireWireDV.component 7.1.6 /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x80130000 - 0x80173fff libTIFF.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x801d0000 - 0x801f9fff libRaw.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x80240000 - 0x8025dfff libJPG.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libJPG.dylib
    0x80290000 - 0x802b5fff com.apple.ImageIO.framework 1.3.1 /System/Library/PrivateFrameworks/AppleAppSupport.framework/Frameworks/ImageIO. framework/ImageIO
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x80c80000 - 0x80c88fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x88100000 - 0x88236fff com.apple.vImage 1.0.0 (1.2.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x88ee0000 - 0x88eecfff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x8a530000 - 0x8a54bfff com.apple.DiscRecordingUI 2.1.17 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x8dcb0000 - 0x8dcb2fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x8fc90000 - 0x8fc90fff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.9 (299.37) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902dc000 - 0x90330fff com.apple.bom 1.2.8 (64.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x903f3000 - 0x90407fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x90490000 - 0x904adfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x904d0000 - 0x90588fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90610000 - 0x9069afff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90700000 - 0x90700fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90702000 - 0x9073afff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x90755000 - 0x9076ffff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9078b000 - 0x907b1fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x907c7000 - 0x907cffff libbsm.dylib /usr/lib/libbsm.dylib
    0x907f0000 - 0x907f9fff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90830000 - 0x9089ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908c5000 - 0x90915fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x90a0afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.10 (500.63) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c32000 - 0x90c46fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x90c60000 - 0x90cc2fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d00000 - 0x90d1bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d60000 - 0x90d6bfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91206000 - 0x91213fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9121c000 - 0x9122ffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91240000 - 0x91323fff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x91516fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x915be000 - 0x915befff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x915c6000 - 0x915cafff com.apple.QuickTimeH264.component 7.1.6 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x915e0000 - 0x91699fff com.apple.QD 3.4.74 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916d9000 - 0x916e5fff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x916fc000 - 0x91714fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91970000 - 0x919bbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91c32000 - 0x91eabfff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92170000 - 0x92358fff com.apple.security 2.5 (29780) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92476000 - 0x92509fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9254c000 - 0x925b3fff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x927b2000 - 0x927c9fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.5 (71.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92859fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92d7c000 - 0x92ddbfff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.11 (743.43) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9366d000 - 0x93683fff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9398f000 - 0x9399ffff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x939ab000 - 0x939bafff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x939f0000 - 0x93ad7fff com.apple.AddressBook.framework 1.1.2 (321) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93bec000 - 0x93c3afff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93cc0000 - 0x93d89fff com.apple.QuickTimeMPEG4.component 7.1.6 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x93da6000 - 0x93db1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93db7000 - 0x93dc6fff com.apple.DSObjCWrappers.Framework 1.0 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x940a0000 - 0x94c4dfff com.apple.QuickTimeComponents.component 7.1.6 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94dba000 - 0x94e81fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x94f10000 - 0x95226fff com.apple.QuickTime 7.1.6 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x953d0000 - 0x95403fff com.apple.DiscRecordingContent 2.1.17 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95420000 - 0x95495fff com.apple.DiscRecordingEngine 2.1.17 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95e0a000 - 0x95e15fff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95e1d000 - 0x95e2dfff libsasl2.2.0.1.dylib /usr/lib/libsasl2.2.0.1.dylib
    0x95e40000 - 0x95eadfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95ec2000 - 0x95ed2fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96074000 - 0x960e3fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96496000 - 0x9676efff com.apple.CoreGraphics 1.203.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a40fff com.apple.LDAPFramework 1.3.3 (37.3.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96a52000 - 0x96a8afff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96ade000 - 0x96af8fff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96b06000 - 0x96b0ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96c00000 - 0x96c8cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96e12000 - 0x96e25fff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96e80000 - 0x96e90fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96efc000 - 0x96efcfff com.apple.DiscRecording 2.1.17 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x971dd000 - 0x97250fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    Host Name: host81-158-53-167.range81-158.btcentralplus.com
    Date/Time: 2007-05-10 16:42:39 +0100
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version: 6.0.6 (6.0.6)
    PID: 462
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x08466000
    Thread 0 Crashed:
    0 libRaw.dylib 0x801f5964 buildFloatSlideLUTs + 0x34
    1 libRaw.dylib 0x801f3418 bayerReconstruction + 0x6d4
    2 libRaw.dylib 0x801f3e04 cgRawInterpAndConvert + 0x6c8
    3 com.apple.ImageIO.framework 0x802a572c getBandProcRaw + 0x33c
    4 com.apple.ImageIO.framework 0x80299870 getBytePtr_cb + 0x74
    5 com.apple.CoreGraphics 0x964be254 CGDataProviderGetBytePointer + 0x58
    6 com.apple.CoreGraphics 0x964f4db0 imgdecoderead + 0x7c
    7 com.apple.CoreGraphics 0x964a2318 CGSImageDataLock + 0xc34
    8 libRIP.A.dylib 0x9121d914 ripc_DrawImageObject + 0x41c
    9 libRIP.A.dylib 0x9121f264 ripc_DrawImage + 0x144
    10 com.apple.CoreGraphics 0x964b4cbc CGContextDrawImage + 0x17c
    11 com.apple.iPhoto 0x001a4e08 0x1000 + 0x1a3e08
    12 com.apple.iPhoto 0x001a2a18 0x1000 + 0x1a1a18
    13 com.apple.iPhoto 0x0011d2d0 0x1000 + 0x11c2d0
    14 com.apple.iPhoto 0x0011a164 0x1000 + 0x119164
    15 com.apple.iPhoto 0x0011a560 0x1000 + 0x119560
    16 com.apple.iPhoto 0x0011b060 0x1000 + 0x11a060
    17 com.apple.iPhoto 0x0012f178 0x1000 + 0x12e178
    18 com.apple.iPhoto 0x00090180 0x1000 + 0x8f180
    19 com.apple.iPhoto 0x0008e780 0x1000 + 0x8d780
    20 com.apple.iPhoto 0x0008595c 0x1000 + 0x8495c
    21 com.apple.iPhoto 0x00081238 0x1000 + 0x80238
    22 com.apple.iPhoto 0x00078e38 0x1000 + 0x77e38
    23 com.apple.iPhoto 0x0007a924 0x1000 + 0x79924
    24 com.apple.iPhoto 0x00055fd0 0x1000 + 0x54fd0
    25 com.apple.Foundation 0x90a2799c nsnotecallback + 0xb0
    26 com.apple.CoreFoundation 0x901db118 __CFXNotificationPost + 0x1b4
    27 com.apple.CoreFoundation 0x901dfb7c _CFXNotificationPostNotification + 0x340
    28 com.apple.Foundation 0x90a257e8 -[NSNotificationCenter postNotificationName:object:userInfo:] + 0x74
    29 com.apple.AppKit 0x92f93328 -[NSApplication _postDidFinishNotification] + 0x70
    30 com.apple.AppKit 0x92f93214 -[NSApplication _sendFinishLaunchingNotification] + 0x5c
    31 com.apple.AppKit 0x92f93444 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 0x78
    32 com.apple.Foundation 0x90a7ae28 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 0x164
    33 com.apple.Foundation 0x90a816c0 _NSAppleEventManagerGenericHandler + 0x78
    34 com.apple.AE 0x90706a10 Z20aeDispatchAppleEventPK6AEDescPSmPh + 0xd0
    35 com.apple.AE 0x90709858 Z25dispatchEventAndSendReplyPK6AEDescPS + 0x2c
    36 com.apple.AE 0x90706c50 aeProcessAppleEvent + 0x11c
    37 com.apple.HIToolbox 0x92975224 AEProcessAppleEvent + 0x3c
    38 com.apple.AppKit 0x92e82420 _DPSNextEvent + 0x358
    39 com.apple.AppKit 0x92e98cc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
    40 com.apple.AppKit 0x92ead048 -[NSApplication run] + 0x21c
    41 com.apple.AppKit 0x92f69764 NSApplicationMain + 0x1d0
    42 com.apple.iPhoto 0x0000b05c 0x1000 + 0xa05c
    43 com.apple.iPhoto 0x0000af04 0x1000 + 0x9f04
    Thread 1:
    0 libSystem.B.dylib 0x900127b8 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a331e8 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.AppKit 0x92e7a3ec -[NSUIHeartBeat _heartBeatThread:] + 0x494
    3 com.apple.Foundation 0x90a6a3c8 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 ...ple.CoreServices.CarbonCore 0x91c5c570 TSWaitOnSemaphoreCommon + 0xb0
    3 ...ickTimeComponents.component 0x940b7ca4 ReadSchedulerThreadEntryPoint + 0x14b4
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 ...ple.CoreServices.CarbonCore 0x91c5c570 TSWaitOnSemaphoreCommon + 0xb0
    3 ...ple.CoreServices.CarbonCore 0x91c5c3f4 _Z15AsyncFileThreadPv + 0x38
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x801f5964 srr1: 0x0000f030 vrsave: 0x00000000
    cr: 0x84882482 xer: 0x00000004 lr: 0x801ebe78 ctr: 0x00007c80
    r0: 0xffffffff r1: 0xbfffb9f0 r2: 0x08466000 r3: 0x08426000
    r4: 0x08485200 r5: 0x00010000 r6: 0x801f5938 r7: 0xffffffff
    r8: 0x06978dec r9: 0x0000233f r10: 0x801f5938 r11: 0x0000dffd
    r12: 0x0000dded r13: 0x00000100 r14: 0x801fbd1c r15: 0x801fbd1c
    r16: 0x0000009e r17: 0x801fbd1c r18: 0x801fbd1c r19: 0x0000000d
    r20: 0x000000a0 r21: 0x00000078 r22: 0xbfffbbc0 r23: 0x099e5000
    r24: 0x00000078 r25: 0x43300000 r26: 0x08485200 r27: 0x08405200
    r28: 0x06978000 r29: 0xbfffbbc0 r30: 0x00000080 r31: 0x801ebd1c
    Binary Images Description:
    0x1000 - 0x467fff com.apple.iPhoto 6.0.6 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x107a000 - 0x1084fff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x10b3000 - 0x10bcfff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x10c3000 - 0x10c8fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x10f0000 - 0x10f9fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x17c3000 - 0x17d6fff com.apple.HomePageService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/HomePageService.NetServic e/Contents/MacOS/HomePageService
    0x49a9000 - 0x49b3fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x69d0000 - 0x69eafff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x7b78000 - 0x7be0fff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x39d60000 - 0x39dbdfff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/NetServices.f ramework/Versions/A/NetServices
    0x3e5c0000 - 0x3e5c3fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/BDRuleEngine. framework/Versions/A/BDRuleEngine
    0x3e5f0000 - 0x3e5f8fff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/BDControl.fra mework/Versions/A/BDControl
    0x3e660000 - 0x3e691fff com.apple.MediaBrowser 2.0.3 (103) /Applications/iPhoto.app/Contents/MacOS/../Frameworks/MediaBrowser.framework/Ve rsions/A/MediaBrowser
    0x3e6f0000 - 0x3e742fff com.apple.DotMacKit 10 (2.0) /Applications/iPhoto.app/Contents/MacOS/../Frameworks/DotMacKit.framework/Versi ons/A/DotMacKit
    0x73230000 - 0x73233fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x761c6000 - 0x76282fff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x76c02000 - 0x76c12fff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x76d26000 - 0x76d65fff com.apple.QuickTimeFireWireDV.component 7.1.6 /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x80130000 - 0x80173fff libTIFF.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x801d0000 - 0x801f9fff libRaw.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x80240000 - 0x8025dfff libJPG.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libJPG.dylib
    0x80290000 - 0x802b5fff com.apple.ImageIO.framework 1.3.1 /System/Library/PrivateFrameworks/AppleAppSupport.framework/Frameworks/ImageIO. framework/ImageIO
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x80c80000 - 0x80c88fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x88100000 - 0x88236fff com.apple.vImage 1.0.0 (1.2.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x88ee0000 - 0x88eecfff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x8a530000 - 0x8a54bfff com.apple.DiscRecordingUI 2.1.17 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x8dcb0000 - 0x8dcb2fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x8fc90000 - 0x8fc90fff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.9 (299.37) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902dc000 - 0x90330fff com.apple.bom 1.2.8 (64.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x903f3000 - 0x90407fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x90490000 - 0x904adfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x904d0000 - 0x90588fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90610000 - 0x9069afff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90700000 - 0x90700fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90702000 - 0x9073afff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x90755000 - 0x9076ffff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9078b000 - 0x907b1fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x907c7000 - 0x907cffff libbsm.dylib /usr/lib/libbsm.dylib
    0x907f0000 - 0x907f9fff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90830000 - 0x9089ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908c5000 - 0x90915fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x90a0afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.10 (500.63) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c32000 - 0x90c46fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x90c60000 - 0x90cc2fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d00000 - 0x90d1bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d60000 - 0x90d6bfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91206000 - 0x91213fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9121c000 - 0x9122ffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91240000 - 0x91323fff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x91516fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x915be000 - 0x915befff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x915c6000 - 0x915cafff com.apple.QuickTimeH264.component 7.1.6 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x915e0000 - 0x91699fff com.apple.QD 3.4.74 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916d9000 - 0x916e5fff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x916fc000 - 0x91714fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91970000 - 0x919bbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91c32000 - 0x91eabfff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92170000 - 0x92358fff com.apple.security 2.5 (29780) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92476000 - 0x92509fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9254c000 - 0x925b3fff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x927b2000 - 0x927c9fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.5 (71.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92859fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92d7c000 - 0x92ddbfff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.11 (743.43) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9366d000 - 0x93683fff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9398f000 - 0x9399ffff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x939ab000 - 0x939bafff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x939f0000 - 0x93ad7fff com.apple.AddressBook.framework 1.1.2 (321) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93bec000 - 0x93c3afff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93cc0000 - 0x93d89fff com.apple.QuickTimeMPEG4.component 7.1.6 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x93da6000 - 0x93db1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93db7000 - 0x93dc6fff com.apple.DSObjCWrappers.Framework 1.0 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x940a0000 - 0x94c4dfff com.apple.QuickTimeComponents.component 7.1.6 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94dba000 - 0x94e81fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x94f10000 - 0x95226fff com.apple.QuickTime 7.1.6 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x953d0000 - 0x95403fff com.apple.DiscRecordingContent 2.1.17 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95420000 - 0x95495fff com.apple.DiscRecordingEngine 2.1.17 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95e0a000 - 0x95e15fff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95e1d000 - 0x95e2dfff libsasl2.2.0.1.dylib /usr/lib/libsasl2.2.0.1.dylib
    0x95e40000 - 0x95eadfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95ec2000 - 0x95ed2fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96074000 - 0x960e3fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96496000 - 0x9676efff com.apple.CoreGraphics 1.203.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a40fff com.apple.LDAPFramework 1.3.3 (37.3.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96a52000 - 0x96a8afff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96ade000 - 0x96af8fff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96b06000 - 0x96b0ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96c00000 - 0x96c8cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96e12000 - 0x96e25fff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96e80000 - 0x96e90fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96efc000 - 0x96efcfff com.apple.DiscRecording 2.1.17 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x971dd000 - 0x97250fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    Host Name: host86-136-81-42.range86-136.btcentralplus.com
    Date/Time: 2007-05-15 18:19:22 +0100
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Version: 6.0.5 (6.0.5)
    PID: 1523
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x07aa0000
    Thread 0 Crashed:
    0 libRaw.dylib 0x801f5964 buildFloatSlideLUTs + 0x34
    1 libRaw.dylib 0x801f3418 bayerReconstruction + 0x6d4
    2 libRaw.dylib 0x801f3e04 cgRawInterpAndConvert + 0x6c8
    3 com.apple.ImageIO.framework 0x802a572c getBandProcRaw + 0x33c
    4 com.apple.ImageIO.framework 0x80299870 getBytePtr_cb + 0x74
    5 com.apple.CoreGraphics 0x964be254 CGDataProviderGetBytePointer + 0x58
    6 com.apple.CoreGraphics 0x964f4db0 imgdecoderead + 0x7c
    7 com.apple.CoreGraphics 0x964a2318 CGSImageDataLock + 0xc34
    8 libRIP.A.dylib 0x9121d914 ripc_DrawImageObject + 0x41c
    9 libRIP.A.dylib 0x9121f264 ripc_DrawImage + 0x144
    10 com.apple.CoreGraphics 0x964b4cbc CGContextDrawImage + 0x17c
    11 com.apple.iPhoto 0x001a4c4c 0x1000 + 0x1a3c4c
    12 com.apple.iPhoto 0x001a285c 0x1000 + 0x1a185c
    13 com.apple.iPhoto 0x0011d170 0x1000 + 0x11c170
    14 com.apple.iPhoto 0x0011a004 0x1000 + 0x119004
    15 com.apple.iPhoto 0x0011a400 0x1000 + 0x119400
    16 com.apple.iPhoto 0x0011af00 0x1000 + 0x119f00
    17 com.apple.iPhoto 0x0012f018 0x1000 + 0x12e018
    18 com.apple.iPhoto 0x00090020 0x1000 + 0x8f020
    19 com.apple.iPhoto 0x0008e620 0x1000 + 0x8d620
    20 com.apple.iPhoto 0x000857fc 0x1000 + 0x847fc
    21 com.apple.iPhoto 0x000810d8 0x1000 + 0x800d8
    22 com.apple.iPhoto 0x00078cd8 0x1000 + 0x77cd8
    23 com.apple.iPhoto 0x0007a7c4 0x1000 + 0x797c4
    24 com.apple.iPhoto 0x00055e70 0x1000 + 0x54e70
    25 com.apple.Foundation 0x90a2799c nsnotecallback + 0xb0
    26 com.apple.CoreFoundation 0x901db118 __CFXNotificationPost + 0x1b4
    27 com.apple.CoreFoundation 0x901dfb7c _CFXNotificationPostNotification + 0x340
    28 com.apple.Foundation 0x90a257e8 -[NSNotificationCenter postNotificationName:object:userInfo:] + 0x74
    29 com.apple.AppKit 0x92f93328 -[NSApplication _postDidFinishNotification] + 0x70
    30 com.apple.AppKit 0x92f93214 -[NSApplication _sendFinishLaunchingNotification] + 0x5c
    31 com.apple.AppKit 0x92f93444 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 0x78
    32 com.apple.Foundation 0x90a7ae28 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 0x164
    33 com.apple.Foundation 0x90a816c0 _NSAppleEventManagerGenericHandler + 0x78
    34 com.apple.AE 0x90706a10 Z20aeDispatchAppleEventPK6AEDescPSmPh + 0xd0
    35 com.apple.AE 0x90709858 Z25dispatchEventAndSendReplyPK6AEDescPS + 0x2c
    36 com.apple.AE 0x90706c50 aeProcessAppleEvent + 0x11c
    37 com.apple.HIToolbox 0x92975224 AEProcessAppleEvent + 0x3c
    38 com.apple.AppKit 0x92e82420 _DPSNextEvent + 0x358
    39 com.apple.AppKit 0x92e98cc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 0x74
    40 com.apple.AppKit 0x92ead048 -[NSApplication run] + 0x21c
    41 com.apple.AppKit 0x92f69764 NSApplicationMain + 0x1d0
    42 com.apple.iPhoto 0x0000b05c 0x1000 + 0xa05c
    43 com.apple.iPhoto 0x0000af04 0x1000 + 0x9f04
    Thread 1:
    0 libSystem.B.dylib 0x900127b8 syscallthreadswitch + 0x8
    1 com.apple.Foundation 0x90a331e8 +[NSThread sleepUntilDate:] + 0x98
    2 com.apple.AppKit 0x92e7a3ec -[NSUIHeartBeat _heartBeatThread:] + 0x494
    3 com.apple.Foundation 0x90a6a3c8 forkThreadForFunction + 0x6c
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 ...ple.CoreServices.CarbonCore 0x91c5c570 TSWaitOnSemaphoreCommon + 0xb0
    3 ...ickTimeComponents.component 0x940b7ca4 ReadSchedulerThreadEntryPoint + 0x14b4
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x90018e38 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 ...ple.CoreServices.CarbonCore 0x91c5c570 TSWaitOnSemaphoreCommon + 0xb0
    3 ...ple.CoreServices.CarbonCore 0x91c5c3f4 _Z15AsyncFileThreadPv + 0x38
    4 libSystem.B.dylib 0x90024930 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0x801f5964 srr1: 0x0200f030 vrsave: 0x00000000
    cr: 0x84882482 xer: 0x00000004 lr: 0x801ebe78 ctr: 0x00007c80
    r0: 0xffffffff r1: 0xbfffb9d0 r2: 0x07aa0000 r3: 0x07a60000
    r4: 0x07abf200 r5: 0x00010000 r6: 0x801f5938 r7: 0xffffffff
    r8: 0x078eedec r9: 0x0000233f r10: 0x801f5938 r11: 0x0000dffd
    r12: 0x0000dded r13: 0x00000100 r14: 0x801fbd1c r15: 0x801fbd1c
    r16: 0x0000009e r17: 0x801fbd1c r18: 0x801fbd1c r19: 0x0000000d
    r20: 0x000000a0 r21: 0x00000078 r22: 0xbfffbba0 r23: 0x099e8000
    r24: 0x00000078 r25: 0x43300000 r26: 0x07abf200 r27: 0x07a3f200
    r28: 0x078ee000 r29: 0xbfffbba0 r30: 0x00000080 r31: 0x801ebd1c
    Binary Images Description:
    0x1000 - 0x467fff com.apple.iPhoto 6.0.5 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x1054000 - 0x105efff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x108d000 - 0x1096fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x10ad000 - 0x10b6fff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x10bd000 - 0x10c2fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x17a5000 - 0x17b8fff com.apple.HomePageService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/HomePageService.NetServic e/Contents/MacOS/HomePageService
    0x17d6000 - 0x17e0fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x6c6a000 - 0x6c84fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x7205000 - 0x726dfff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x39d60000 - 0x39dbdfff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/NetServices.f ramework/Versions/A/NetServices
    0x3e5c0000 - 0x3e5c3fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/BDRuleEngine. framework/Versions/A/BDRuleEngine
    0x3e5f0000 - 0x3e5f8fff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/MacOS/../NetServices/Frameworks/BDControl.fra mework/Versions/A/BDControl
    0x3e660000 - 0x3e691fff com.apple.MediaBrowser 2.0.3 (103) /Applications/iPhoto.app/Contents/MacOS/../Frameworks/MediaBrowser.framework/Ve rsions/A/MediaBrowser
    0x3e6f0000 - 0x3e742fff com.apple.DotMacKit 10 (2.0) /Applications/iPhoto.app/Contents/MacOS/../Frameworks/DotMacKit.framework/Versi ons/A/DotMacKit
    0x73230000 - 0x73233fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x761c6000 - 0x76282fff AppleAppSupport /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x76c02000 - 0x76c12fff com.apple.Accelerate.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x76d26000 - 0x76d65fff com.apple.QuickTimeFireWireDV.component 7.1.6 /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x80130000 - 0x80173fff libTIFF.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x801d0000 - 0x801f9fff libRaw.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x80240000 - 0x8025dfff libJPG.dylib /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/Framewor ks/ImageIO.framework/Versions/A/Resources/libJPG.dylib
    0x80290000 - 0x802b5fff com.apple.ImageIO.framework 1.3.1 /System/Library/PrivateFrameworks/AppleAppSupport.framework/Frameworks/ImageIO. framework/ImageIO
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x80a50000 - 0x80ad4fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x80c80000 - 0x80c88fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x88100000 - 0x88236fff com.apple.vImage 1.0.0 (1.2.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x88ee0000 - 0x88eecfff com.apple.agl 2.5 (AGL-2.5) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x8a530000 - 0x8a54bfff com.apple.DiscRecordingUI 2.1.17 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x8dcb0000 - 0x8dcb2fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x8fc90000 - 0x8fc90fff com.apple.Accelerate 1.0.3 (Accelerate 1.0.3) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.9 (299.37) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902dc000 - 0x90330fff com.apple.bom 1.2.8 (64.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x903f3000 - 0x90407fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x90490000 - 0x904adfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x904d0000 - 0x90588fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90610000 - 0x9069afff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90700000 - 0x90700fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90702000 - 0x9073afff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x90755000 - 0x9076ffff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9078b000 - 0x907b1fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x907c7000 - 0x907cffff libbsm.dylib /usr/lib/libbsm.dylib
    0x907f0000 - 0x907f9fff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90830000 - 0x9089ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908c5000 - 0x90915fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x909f0000 - 0x90a0afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.10 (500.63) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c32000 - 0x90c46fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x90c60000 - 0x90cc2fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d00000 - 0x90d1bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d60000 - 0x90d6bfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91206000 - 0x91213fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9121c000 - 0x9122ffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91240000 - 0x91323fff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x91516fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x915be000 - 0x915befff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x915c6000 - 0x915cafff com.apple.QuickTimeH264.component 7.1.6 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x915e0000 - 0x91699fff com.apple.QD 3.4.74 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916d9000 - 0x916e5fff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x916fc000 - 0x91714fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91970000 - 0x919bbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91c32000 - 0x91eabfff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92170000 - 0x92358fff com.apple.security 2.5 (29780) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92476000 - 0x92509fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9254c000 - 0x925b3fff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x927b2000 - 0x927c9fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.5 (71.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92859fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92d7c000 - 0x92ddbfff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.11 (743.43) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9366d000 - 0x93683fff com.apple.QuartzCore 1.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9398f000 - 0x9399ffff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x939ab000 - 0x939bafff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x939f0000 - 0x93ad7fff com.apple.AddressBook.framework 1.1.2 (321) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93bec000 - 0x93c3afff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93cc0000 - 0x93d89fff com.apple.QuickTimeMPEG4.component 7.1.6 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x93da6000 - 0x93db1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93db7000 - 0x93dc6fff com.apple.DSObjCWrappers.Framework 1.0 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x940a0000 - 0x94c4dfff com.apple.QuickTimeComponents.component 7.1.6 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x94dba000 - 0x94e81fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x94f10000 - 0x95226fff com.apple.QuickTime 7.1.6 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x953d0000 - 0x95403fff com.apple.DiscRecordingContent 2.1.17 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95420000 - 0x95495fff com.apple.DiscRecordingEngine 2.1.17 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95e0a000 - 0x95e15fff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95e1d000 - 0x95e2dfff libsasl2.2.0.1.dylib /usr/lib/libsasl2.2.0.1.dylib
    0x95e40000 - 0x95eadfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95ec2000 - 0x95ed2fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96074000 - 0x960e3fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96496000 - 0x9676efff com.apple.CoreGraphics 1.203.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a40fff com.apple.LDAPFramework 1.3.3 (37.3.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96a52000 - 0x96a8afff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96ade000 - 0x96af8fff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96b06000 - 0x96b0ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96c00000 - 0x96c8cfff com.apple.ink.framework 101.1.4 (55.12) /Syste

  • Offline form in iPad DPS App that stores data and then sends when connected to internet

    Hi there,
    I've built an "app" using InDesign and DPS. Great, whiz bang 360 spins, video, etc, etc but at the end I would like to have a form to record the users experience on the ipad or to record their experience of an event where the iPad was used. I have created a form in Acrobat XI, exported to FormCentral as a trial, linked to the form using a web frame within InDesign and then exporting out with DPS. App works fine, can see form, enter data and submit, check data via FormCentral admin system, all good.
    However, is it possible to create the same app that works identically offline? I know the whiz bang stuff will work as it's built into the standalone app. I guess the html form will need to be stored locally, when a user submits the form it needs to write to the iPad and store locally and if/when the iPad makes a connection to the internet it can send the stored local data upto FormCentral for processing. The form would be filled in by multiple users at different times.
    From trawling the web I can see forms can write locally to the iPad but then I also see pages of code, my eyes glaze over and I run for the hills. I just wondered if there was an easy solution? If not, can this be raised as an item in the wishlist for both FormCentral/DPS/Indesign? A nice clicky interface for us "non-coding" designers.
    Any help would be most appreciated,
    Thanks,
    Rog.

    Hi Randy,
    Thanks for coming back to me on this. Instead of a html form, can a pdf form embedded within a DPS app work?
    I see that pdf forms can be filled in offline and data sent went back online but unsure as to whether this approach will work within a DPS app.
    I saw a post you responded to
    http://forums.adobe.com/message/3506205#3506205
    You mention an article to the offline form in more detail but I get a broken link.
    Thanks again.

  • I have Adobe acrobat 9 pro why do some files open automatically and other do not.

    when I save a file as a pdf. and go to the folder the file only opens if I select it. When I download a file as a pdf it opens automatically in the same folder. How do I get all files to open automatically.

    The options on the save are typically either in the printer properties (if printing to the Adobe PDF printer) or in the Acrobat preferences if using PDF Maker in such programs as WORD. The button is included to allow opening on creation. If it is opening on download, that is typically based on how your browser is set up to call software for the file types being downloaded.

  • Trouble with the advanced search function on acrobat reader. Why won't it open? it used to, but suddenly stopped working.

    For some inexplicable reason the advanced search option in my acrobat reader 11.0.3 has stopped working. It worked just fine a few weeks ago. I am running Snow Leopard on my Macbook Pro. When I open advanced reader the pdf file I am trying to search ceases to be the active window. But no other window exists (in 'window' search is checked, but there is nothing there!). Does anyone have any ideas. I have downloaded and re-installed reader twice, and removed all earlier versions (I think). This is kind of urgent!

    It's a 3rd party app.  You really should contact Adobe Support and/or post in the Adobe Forums
    Mac OS X (10.6.6)
    Use Software Update or the OS 10.6.8 combo update to update your OS.  Also, update everything SU has to offer for your computer.  When done, repair permissions and restart your computer.

  • HT5007 How do I get gmail app update loaded to my ipad3G. My 4G iPad automatically loaded it when I selected that I wanted it installed. But my 1st generation iPad gmail won't open now and I want to install the gmail update and I can't find it in the app

    Please help me to install Google Gmail update app for my First Generation iPad 3G.

    The current version of the Gmail app requires iOS 5 or later.
    What version of iOS is on the iPad in question?

Maybe you are looking for