Multi upload redirect help

hi,
i know addt is discontinued.  but it is a great tool.
can anyone help with being able to specify a redirect to a page using the multi upload and save to database?
it just goes to the page you are on and there is no way of specifying a redirect.
i hope there is a way of manually changing it but so far my attempts have failed.
any help appreciated.
thanks

First thing to do : use the correct terminology.
Given what you wrote, I guess that you are in fact writing about tables, not sheets but I'm not 100% sure.
Yvan KOENIG (VALLAURIS, France) lundi 22 août 2011 19:21:56
iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
My iDisk is : <http://public.me.com/koenigyvan>
Please : Search for questions similar to your own before submitting them to the community
To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

Similar Messages

  • Flex Multi Upload file size

    I have read and downloaded Mr. Ryan Favro's artical on making a multi upload interface to users. Yet, in the example I downloaded it only allows you for 342kb of data allowed. Nevertheless, Ryan included in the article the an argument of "number" can be passed on with iniapp() function to allow more size. Yet, I dont seem to be doing it right, and I was looking for some more clear steps walking me through. Also, I'm very new to flex, in which did not help me out much.
    Thank you everyone

    Hi Rahul, i dont understand completly your question, but i was have a similar situation some years ago.
    The limitation is not by AIR, all local servers(wampp, xampp, etc) are limited in the command UPLOAD_FILES.
    This have by default 3 or 5 mb by each file to can be uploaded, only you have to do is change the default value in php.ini file to this line
    "upload_max_filesize".
    I hope this will help you

  • Prerequisites for multi selection value help

    Hi everyone,
    a couple of blogs and forum entries show multi selection value helps in VC. I, on the other hand, have so far been unable to do this. The only option I get in the first step of the value help wizard is the "single selection" type. Even if I start off with a blank form view and add a text input field I cannot choose anything apart from a single selection value help. Is there something I am completely missing? I stumbled upon a note bringing this into connection with OLAP source systems, but I can't quite see why this should change anything since the source system is not selected until step 2 of the wizard.
    Any idea on this? Thanks a lot,
    Tilman

    Hi Mario,
    thanks for the hints, I got it working now, regardless of whether you use an OLAP source system, variables or the respective input port, though. It seems to suffice to connect the query directly to a form view to get the additional options. My problem was then that I had a form view connected to a nested iview. I should be able to connect it to both a query and the iview, though.
    Thanks for your help,
    Tilman

  • Problem with Multi File upload example, help needed

    I got the code from the following location.....
    http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html
    And I've got it to work to some degree except I cant get the file transfer to work when pressing, Upload.   Below is what my debugger outputs.  Any thoughts on how to fix this or even what it means?
    At the very bottom of this message is the upload.cfm code.......
    Thanks in advance for the help
    <html>
    <head>
      <title>Products - Error</title>
    </head>
    <body>
    <h2>Sorry</h2>
    <p>An error occurred when you requested this page.
    Please email the Webmaster to report this error.
    We will work to correct the problem and apologize
    for the inconvenience.</p>
    <table border=1>
    <tr><td><b>Error Information</b> <br>
      Date and time: 12/07/09 22:25:51 <br>
      Page:  <br>
      Remote Address: 67.170.79.241 <br>
      HTTP Referer: <br>
      Details: ColdFusion cannot determine how to process the tag &lt;CFDOCUMENT&gt;. The tag name may be misspelled.<p>If you are using tags whose names begin with CF but are not ColdFusion tags you should contact Allaire Support. <p>The error occurred while processing an element with a general identifier of (CFDOCUMENT), occupying document position (41:4) to (41:70).<p>The specific sequence of files included or processed is:<code><br><strong>D:\hshome\edejham7\edeweb.com\MultiFileUpload\upload.cfm      </strong></code><br>
      <br>
    </td></tr></table>
    </body>
    </html>
    <!---
    Flex Multi-File Upload Server Side File Handler
    This file is where the upload action from the Flex Multi-File Upload UI points.
    This is the handler the server side half of the upload process.
    --->
    <cftry>
    <!---
    Because flash uploads all files with a binary mime type ("application/ocet-stream") we cannot set cffile to accept specfic mime types.
    The workaround is to check the file type after it arrives on the server and if it is non desireable delete it.
    --->
        <cffile action="upload"
                filefield="filedata"
                destination="#ExpandPath('\')#MultiFileUpload\uploadedfiles\"
                nameconflict="makeunique"
                accept="application/octet-stream"/>
            <!--- Begin checking the file extension of uploaded files --->
            <cfset acceptedFileExtensions = "jpg,jpeg,gif,png,pdf,flv,txt,doc,rtf"/>
            <cfset filecheck = listFindNoCase(acceptedFileExtensions,File.ServerFileExt)/>
    <!---
    If the variable filecheck equals false delete the uploaded file immediatley as it does not match the desired file types
    --->
            <cfif filecheck eq false>
                <cffile action="delete" file="#ExpandPath('\')#MultiFileUpload\uploadedfiles\#File.ServerFile#"/>
            </cfif>
    <!---
    Should any error occur output a pdf with all the details.
    It is difficult to debug an error from this file because no debug information is
    diplayed on page as its called from within the Flash UI.  If your files are not uploading check
    to see if an errordebug.pdf has been generated.
    --->
            <cfcatch type="any">
                <cfdocument format="PDF" overwrite="yes" filename="errordebug.pdf">
                    <cfdump var="#cfcatch#"/>
                </cfdocument>
            </cfcatch>
    </cftry>

    Just 2 things in my test:
    1) I use no accept attribute. Coldfusion is then free to upload any extenstion.
    Restricting the type to application/octet-stream may generate errors. Also, it is unnecessary, because we perform a type check anyway.
    2) I have used #ExpandPath('.')#\ in place of #ExpandPath('\')#
    <cfif isdefined("form.filedata")>
    <cftry>
    <cffile action="upload"
                filefield="filedata"
                destination="#expandPath('.')#\MultiFileUpload\uploadedfiles\"
                nameconflict="makeunique">
            <!--- Begin checking the file extension of uploaded files --->
            <cfset acceptedFileExtensions = "jpg,jpeg,gif,png,pdf,flv,txt,doc,rtf"/>
            <cfset filecheck = listFindNoCase(acceptedFileExtensions,File.ServerFileExt)/>
    <!---
    If the variable filecheck equals false delete the uploaded file immediatley as it does not match the desired file types
    --->
            <cfif filecheck eq false>
                <cffile action="delete" file="#ExpandPath('.')#\MultiFileUpload\uploadedfiles\#File.ServerFile#"/>
                <cfoutput>Uploaded file deleted -- unacceptable extension (#ucase(File.ServerFileExt)#)</cfoutput>.<br>
            </cfif>
    Upload process done!
            <cfcatch type="any">
                There was an error!
                <cfdocument format="PDF" overwrite="yes" filename="errordebug.pdf">
                    <cfdump var="#cfcatch#"/>
                </cfdocument>
            </cfcatch>
    </cftry>
    <cfelse>
    <form method="post" action=<cfoutput>#cgi.script_name#</cfoutput>
            name="uploadForm" enctype="multipart/form-data">
            <input name="filedata" type="file">
            <br>
            <input name="submit" type="submit" value="Upload File">
        </form>
    </cfif>

  • Business catalyst, muse and 301 redirects - help!

    I have uploaded my muse website to business catalyst, using the free hosting service that adobe gives to CC subscribers.
    However, under site manager, it only gives me two option (web forms and emails) and no ability to do url redirects etc.
    Can anyone help? I urgently need to set up my 301 redirects

    This might help as well :
    Go to 'My Details', "Screen shot: http://project02.businesscatalyst.com/Jing/2013-0..."  and check the option of 'Enable online content editing', "Screen shot: http://project02.businesscatalyst.com/Jing/2013-0..."

  • Flash video does not show up once uploaded. Help please.

    OK I've spent several days searching online for an answer to this question and I'm at my wit's end.  Please help me out.  This is what is going on.
    I'm using flash to design a basic website.  Within that website I want to place a .flv file.  Everything works fine in preview mode and test movie mode.  The problem comes when I puplish to the web.  I'm just using flash to publish which puts all the files in a folder.
    IN previous attempts, once I load those files onto a server it does not play the .flv file.  The .sfw skin will show up but the general .sfw file for the project doesn't seem to be finding the .flv file.  And yes, I'm uploading the .flv file to the server.  Is there something wrong with the html code that it can't find the .flv file?  I can replicate this problem on my desktop by moving the .flv file out of it's project folder.  Once I do that and then click the .html file the page will load but it won't find the video file.  It's like it can only open that file if it's in the original project folder and the folder doesn't get moved.
    I can't be the only who has experienced this.  Please help!

    The effect you're having "only displaying the flvplayer skin but no video" is a clear sign that your swf can't find the flv.
    One thing that you can do to ensure that everything is right is to first upload the .flv file to the desired location and then link your FLVPlayback to the url on the flash IDE / AS.
    2nd Option would be to:
    save flv, fla and swf in the SAME folder (no subfolders or such)
    upload flv and swf to your webserver while keeping them together in the same folder, that ensures that your files can find eachother.

  • IPhoto will not stay open after most recent upload! Help!

    Please help me out here. I am running on Mac 10.5.8 with a version of iPhoto, 8.1.2.
    After my most recent picture upload from my iphone my iphoto will NOT stay open. It keeps shutting down, and I can't even send the report to apple. It says the report failed. Below is the report I am receiving.
    I cannot lose all of my pictures, so please help me. I will appreciate any and all help that you can give.
    Thank you!!
    Process:         iPhoto [640]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         8.1.2 (8.1.2)
    Build Info:      iPhotoProject-4240000~8
    Code Type:       X86 (Native)
    Parent Process:  launchd [99]
    Interval Since Last Report:          16311 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  28 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2012-04-01 20:11:08.065 -0400
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  21150C9B-FA4F-46CE-9CE0-85A8A44FDCDC
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  14
    Thread 0:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.HIToolbox                     0x96fc52ac RunCurrentEventLoopInMode + 283
    5   com.apple.HIToolbox                     0x96fc50c5 ReceiveNextEventCommon + 374
    6   com.apple.HIToolbox                     0x96fc4f39 BlockUntilNextEventMatchingListInMode + 106
    7   com.apple.AppKit                        0x93b386d5 _DPSNextEvent + 657
    8   com.apple.AppKit                        0x93b37f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9   com.apple.AppKit                        0x93b30f9f -[NSApplication run] + 795
    10  com.apple.AppKit                        0x93afe1d8 NSApplicationMain + 574
    11  com.apple.iPhoto                        0x00124b80 0x1000 + 1194880
    12  com.apple.iPhoto                        0x00003172 0x1000 + 8562
    Thread 1:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95a81dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x95a81bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x95a81b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01364201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x01352363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    11  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x95a81dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x95a81bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x95a81b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01364201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x01352363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    9   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    10  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    11  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x95a703d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5   com.apple.proxtcore                     0x013538a5 -[XTRunLoopThread run:] + 421
    6   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    7   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    8   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    9   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.iPhoto                        0x00506841 0x1000 + 5265473
    3   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    4   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x95434d58 ***::TCMalloc_PageHeap::scavengerThread() + 824
    3   com.apple.JavaScriptCore                0x95434d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x96e0818c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x952896b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x91f7277c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x97ebe20a accept$UNIX2003 + 10
    1   com.apple.iPhoto                        0x002d2dd3 0x1000 + 2956755
    2   com.apple.iPhoto                        0x002d2e34 0x1000 + 2956852
    3   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    4   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x97ea160a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    2   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore                    0x94acca09 fe_fragment_thread + 54
    3   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    4   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x97e52166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x97e5995c mach_msg + 72
    2   com.apple.CoreFoundation                0x96943e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x96944aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x95a9f520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.Foundation                    0x95a83932 -[NSCondition wait] + 210
    3   com.apple.iPhoto                        0x0051242a 0x1000 + 5313578
    4   com.apple.iPhoto                        0x00511c48 0x1000 + 5311560
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.Foundation                    0x95a83932 -[NSCondition wait] + 210
    3   com.apple.iPhoto                        0x0051242a 0x1000 + 5313578
    4   com.apple.iPhoto                        0x00511c48 0x1000 + 5311560
    5   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    8   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 14 Crashed:
    0   libSystem.B.dylib                       0xffff07c2 __memcpy + 34 (cpu_capabilities.h:246)
    1   libsqlite3.0.dylib                      0x96c2eec0 fillInCell + 384
    2   libsqlite3.0.dylib                      0x96c30ef7 balance_nonroot + 7351
    3   libsqlite3.0.dylib                      0x96c376ab sqlite3BtreeInsert + 763
    4   libsqlite3.0.dylib                      0x96c7cf23 sqlite3VdbeExec + 8835
    5   libsqlite3.0.dylib                      0x96c86ea2 sqlite3Step + 386
    6   libsqlite3.0.dylib                      0x96c8755d sqlite3_step + 29
    7   com.apple.iPhoto                        0x006af891 0x1000 + 7006353
    8   com.apple.iPhoto                        0x006e165f 0x1000 + 7210591
    9   com.apple.iPhoto                        0x006a07b2 0x1000 + 6944690
    10  com.apple.iPhoto                        0x006a08be 0x1000 + 6944958
    11  com.apple.iPhoto                        0x006c21a1 0x1000 + 7082401
    12  com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    13  com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    14  libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    15  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97b2ac62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x97b2aa42 TSWaitOnSemaphoreCommon + 422
    5   ...ickTimeComponents.component          0x90cf8c8e ReadSchedulerThreadEntryPoint + 4728
    6   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    7   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x97e521c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x97e85a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97b2ac62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x97b2aa42 TSWaitOnSemaphoreCommon + 422
    5   ...ple.CoreServices.CarbonCore          0x97b53138 AIOFileThread(void*) + 1056
    6   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    7   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x97e521ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x97e841c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x97ec9449 pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x913e6e67 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x97e75e7a read$UNIX2003 + 10
    1   com.apple.Foundation                    0x95a44f16 _NSReadBytesFromFile + 86
    2   com.apple.Foundation                    0x95a59413 -[NSData(NSData) initWithContentsOfFile:] + 83
    3   com.apple.iPhoto                        0x00303e82 0x1000 + 3157634
    4   com.apple.iPhoto                        0x0030520a 0x1000 + 3162634
    5   com.apple.iPhoto                        0x00064bf7 0x1000 + 408567
    6   com.apple.iPhoto                        0x002196a6 0x1000 + 2197158
    7   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    8   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    9   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    10  libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.iPhoto                        0x00506841 0x1000 + 5265473
    3   com.apple.Foundation                    0x95a3bdfd -[NSThread main] + 45
    4   com.apple.Foundation                    0x95a3b9a4 __NSThread__main__ + 308
    5   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    6   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x97e5934e __semwait_signal + 10
    1   libSystem.B.dylib                       0x97e83ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x946b13c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x946c3d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x97e83055 _pthread_start + 321
    5   libSystem.B.dylib                       0x97e82f12 thread_start + 34
    Thread 14 crashed with X86 Thread State (32-bit):
      eax: 0xffff07a0  ebx: 0x96c2f260  ecx: 0x00000001  edx: 0x00000004
      edi: 0x026713fd  esi: 0x00000000  ebp: 0xb07dbdd8  esp: 0xb07dbdd0
       ss: 0x0000001f  efl: 0x00010202  eip: 0xffff07c2   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0x9fbfee  com.apple.iPhoto 8.1.2 (8.1.2) <436e886ce26d2c7d9745252829318efe> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xb31000 -   0xbfafe5  com.apple.DiscRecording 4.0.7 (4070.4.1) <7c105f35c674aad3a476f8959d3f3ebb> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
      0xc65000 -   0xc90ff7  com.apple.DiscRecordingUI 4.0.7 (4070.4.1) <8382640e9ca4f6c5e087efb1c715db57> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
      0xcae000 -   0xcb0fff  com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
      0xcb7000 -   0xcc1fff  com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
      0xccb000 -   0xd67ffc  com.apple.MobileMe 8 (1.0) <47df6c2078c51aa21d64274eae522d93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0xdc9000 -  0x1022ffb  com.apple.MessageFramework 3.6 (936) <d7a6e5f6721cbab99ed3e83137dba11a> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x1179000 -  0x1179fff +eOkaoCom.dylib ??? (???) <17adb0f4bf830b0b5293f843f1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0x117d000 -  0x11b0fe7 +eOkaoDt.dylib ??? (???) <673bd0c5fac4abb7b55efd8a75e4759d> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0x11b6000 -  0x131cfff +eOkaoFr.dylib ??? (???) <684982fe55e4174d9cf3da4319bd57f9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0x1320000 -  0x1344ff2 +eOkaoPt.dylib ??? (???) <e2ed8de87a2d83093cb52e87f135a8a8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0x134b000 -  0x1392ff7  com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x13d6000 -  0x13d6ff8  com.apple.iLifeSlideshow 1.1 (452) <65fe31a8c4c320699b2ccb00bb168cfe> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0x13da000 -  0x145afef  com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x14bc000 -  0x14bcffd  com.apple.AppleAppSupport 1.5 (1.5) /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x14c0000 -  0x14e4fe7  com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <623d0f3f1b3fb665dc9cb196c482510a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x14f9000 -  0x1521fff  com.apple.iLifeSlideshowCore 1.1 (134) <6b3aa83c61989c497afb619e5dc2c756> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0x153b000 -  0x164bfe3  com.apple.iLifeSlideshowProducer 1.1 (382) <bbc8afe495a64993c10cff8aac006928> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0x16be000 -  0x17c7ff3  com.apple.iLifeSlideshowRenderer 1.1 (375) <f87238833c5c734fcd08709e4079b2c5> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x183b000 -  0x1846fff  com.apple.iLifeSlideshowExporter 1.1 (159) <a378ae2696982327cdaad2af255de5be> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0x184f000 -  0x186efed  com.apple.audio.CoreAudioKit 1.5 (1.5) <585f5ec95dc8f1efe51d820be84d53a6> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1880000 -  0x1888fe7  com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x1894000 -  0x1897fff  com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x18bf000 -  0x18c2ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1abc000 -  0x1b14fff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26a406b3e4bcc6ff8f28a99ffeb5cf2d> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1c3d000 -  0x1c3eff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1c49000 -  0x1c4dfff  com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x168e5000 - 0x168fafff  com.apple.iPhoto.FacebookPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x16907000 - 0x1690cff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16a4f000 - 0x16e36fff  com.apple.RawCamera.bundle 3.4.0 (545) <46f9387243c4db157889522a00d16c32> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1717f000 - 0x1718fff3  com.apple.iPhoto.FlickrPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x1719a000 - 0x171cbff7  com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x181f8000 - 0x181f9fe1  com.apple.textencoding.unicode 2.2 (2.2) <09ac11c81bf4e673a30cc364868fdc11> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x19700000 - 0x1970bfff  com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x19aa7000 - 0x19ab1fff  com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x19abb000 - 0x19ac5fff  com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x19acf000 - 0x19adafff  com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x19af2000 - 0x19af3fff  com.apple.iLMBAppDefPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x19af9000 - 0x19afafff  com.apple.iLMBFolderPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x19c2b000 - 0x19c2ffff  com.apple.iLMBGarageBandPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x19c84000 - 0x19c8bfff  com.apple.iLMBAperturePlugin 2.1.5 (127) <64f3d109e8ac7abb31e073da26832360> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x19c93000 - 0x19c9efff  com.apple.iLMBiMoviePlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x19ced000 - 0x19cf5fff  com.apple.iLMBiPhotoPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x1a601000 - 0x1a612fff  com.apple.iLMBiPhoto8Plugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x1a61c000 - 0x1a624fff  com.apple.iLMBiTunesPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x1a62c000 - 0x1a6e1fef  com.apple.iTunesAccess 10.6 (10.6) <cf57a9994a815b4dbcc0abfb893cec9c> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1a712000 - 0x1a714fff  com.apple.iLMBMoviesFolderPlugin 2.1.5 (127) <a6ae59ef4e40840b36a8f4dc6b697a5b> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x1a71b000 - 0x1a71dfff  com.apple.iLMBPhotoBoothPlugin 2.1.5 (127) <86fe02308b70e1cdf2805654f999ec70> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x1aa5f000 - 0x1aa5fffd  libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x1ab0a000 - 0x1ab16fff +net.telestream.license 1.0.1.3-GC (1.0.1.3-GC) <105e17171fcc41681295768fb28c4217> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x1ab1f000 - 0x1ab72ff7  com.apple.AppleProResDecoder 2.0.1 (227) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x1abac000 - 0x1abb1ff7  com.apple.AppleMPEG2Codec 1.0.1 (220) <6fdff3c87ececb7413749c0230c54f78> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1ad26000 - 0x1ad61fff  com.apple.QuickTimeFireWireDV.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1ad6e000 - 0x1ad88fc3  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ad8d000 - 0x1ada6ff3  com.apple.applepixletvideo 1.2.18 (1.2d18) <fd882f567e0480f18107f66ea6e7187d> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1b22c000 - 0x1b423fc2 +net.telestream.wmv.import 2.2.3.7 (2.2.3.7) <16463171cbc541aca577883c116422ee> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1b492000 - 0x1b5f4fe2 +net.telestream.wmv.advanced 2.2.3.7 (2.2.3.7) <33ea17448ff4499197c8279db599b913> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1b65b000 - 0x1b6c0fef  com.apple.AppleVAH264HW.component 1.0 (1.0) <9247aea75cd42fd2c138dd35ce83ab9a> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9003ffff  com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x90070000 - 0x9007afeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9007b000 - 0x9007fffd  com.apple.AOSNotification 1.0.0 (68.13) <24530e1abba37ab4bacf92fcf13cd216> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x902e9000 - 0x904bafef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x904bb000 - 0x9055fff7  com.apple.QuickTimeImporters.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90560000 - 0x90699ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x9069a000 - 0x90b6bfbe  libGLProgrammability.dylib ??? (???) <d5cb4e7997a873cd77523689e6749acd> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90b6c000 - 0x90c4dff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x90c4e000 - 0x90c72fff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x90c73000 - 0x91b73fe6  com.apple.QuickTimeComponents.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91b74000 - 0x91b91ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91b92000 - 0x91b92ff8  com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91b93000 - 0x91bbcfff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x91bbd000 - 0x91bc1fff  com.apple.CoreMediaAuthoringPrivate 1.6 (1.6) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x91bc2000 - 0x91c13feb  com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91c14000 - 0x91c24ffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91c25000 - 0x91c5ffe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91c78000 - 0x91d66fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x91d67000 - 0x91d8fff7  com.apple.shortcut 1.0.1 (1.0) <37e4b08cfaf9edb08b8682a06c4ec844> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91d90000 - 0x91dcffef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91dd0000 - 0x91f50fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91f51000 - 0x92cbffe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92cc0000 - 0x92d0ffff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x92d10000 - 0x92d3bfe7  libauto.dylib ??? (???) <4f3e58cb81da07a1662c1f647ce30225> /usr/lib/libauto.dylib
    0x92d3c000 - 0x92d99ffb  libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x92d9a000 - 0x92de3fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92de4000 - 0x92eabff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92eac000 - 0x92eb8ff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92eb9000 - 0x92eb9ffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92eba000 - 0x92f0bff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92f0c000 - 0x92f10fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x92f11000 - 0x92f16ffc  com.apple.KerberosHelper 1.1 (1.0) <026012b54e36fecbc1a4ed3a3edec439> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x92f17000 - 0x92f27fff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <9a71429c74ed6ca43eb35e1f78471b2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92f28000 - 0x92f46ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92f47000 - 0x92fd1ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92fd2000 - 0x9305fff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93060000 - 0x93112ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x93113000 - 0x93113ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93114000 - 0x93116fff  com.apple.securityhi 3.0 (30817) <b3517782ad664a21e4fd60242e92723e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93117000 - 0x9311cfff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9311d000 - 0x93133fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93134000 - 0x93297ff2  com.apple.CalendarStore 3.0.8 (860) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x93298000 - 0x932cafff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x932cb000 - 0x9335efff  com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93362000 - 0x933adff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x933ae000 - 0x933dbfeb  libvDSP.dylib ??? (???) <f39d424bd56a0e75d5c7a2280a25cd76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x933dc000 - 0x93456ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <9ae833544b8249984c07544dbe6a97fa> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93457000 - 0x93af7fff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93af8000 - 0x942f6fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x942f7000 - 0x9432bfef  com.apple.bom 9.0.1 (136.1.1) <007941632d316d064e8decc51255a5e0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9432c000 - 0x94449ff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9444a000 - 0x9444bffc  libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x9444c000 - 0x94584fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94585000 - 0x945ebffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x945ec000 - 0x945fbffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <a2f7a163a74c134f6f17d497423436fe> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x945fc000 - 0x94603ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94604000 - 0x94652fe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94653000 - 0x94653ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94654000 - 0x9467dfff  com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x9467e000 - 0x94749fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9474a000 - 0x947c9ff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x947ca000 - 0x94914feb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94915000 - 0x9491afff  com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9491b000 - 0x9495cfe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9495d000 - 0x949caffb  com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x949cb000 - 0x949d7ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x949d8000 - 0x94d75fef  com.apple.QuartzCore 1.5.8 (1.5.8) <18113e06d296230d63a63b58baf35f55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94d76000 - 0x94e5eff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94e69000 - 0x94e9affb  com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94e9b000 - 0x94f2eff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94f2f000 - 0x94f3bfff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x94f3c000 - 0x95267ff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95268000 - 0x9526fffe  libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x95270000 - 0x95278fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <ba64dd6ada417b5e7be736957f380bca> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95279000 - 0x9527dfff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9527e000 - 0x95495ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95496000 - 0x9561afef  com.apple.MediaToolbox 0.484.2 (484.2) <03c5c5966a91ad3ae9c825340fa21970> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9561b000 - 0x9561dff1  com.apple.QuickTimeH264.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9561e000 - 0x956abff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x956ac000 - 0x956dbfe3  com.apple.AE 402.3 (402.3) <dba512e47f68eea1dd0ab35f596edb34> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9572b000 - 0x95784ff7  libGLU.dylib ??? (???) <64d010e31d7596bd8f9edc6e027d1d0c> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95785000 - 0x957c5fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x957c6000 - 0x957c6ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x957c7000 - 0x957e2ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x957e3000 - 0x957e3ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x957e4000 - 0x95800fff  com.apple.IMFramework 4.0.8 (584) <03c3fc58fa1809c1716aaa7b623ff3d1> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x95801000 - 0x9594aff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9594b000 - 0x9594ffff  com.apple.OpenDirectory 10.5 (10.5) <7d9ff71c60ad73f4c82a638abc233bf0> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x95950000 - 0x95a30fff  libobjc.A.dylib ??? (???) <3ca288b625a47bbcfe378158e4dc328f> /usr/lib/libobjc.A.dylib
    0x95a31000 - 0x95cadfe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95cae000 - 0x95cbbfe7  com.apple.opengl 1.5.10 (1.5.10) <e7d1198d869f45f09251f9697cbdd192> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95cbc000 - 0x95cbcffe  com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95cbd000 - 0x95d08fe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95d09000 - 0x95d3bff7  com.apple.DotMacSyncManager 1.2.4 (308) <890ea4eb2947d2e701dcda9f6a7a3e9e> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x95d3c000 - 0x9614cfef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9614d000 - 0x96154fe9  libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x96155000 - 0x9618cfff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <41d5aeffefc6d19d471f51ae0b15024f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9618d000 - 0x961fffff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96200000 - 0x96209fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9620a000 - 0x962ecfff  com.apple.syncservices 3.3 (389.20) <bfedc8cbb3754652e13d67a45791fac9> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x962ed000 - 0x966a9ff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x966aa000 - 0x96839fe7  com.apple.CoreAUC 3.08.0 (3.08.0) <ce8da72493f7ad2bcb13130e6d0eca54> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9683a000 - 0x9687cfef  com.apple.NavigationServices 3.5.2 (163) <7f4f1766414a511bf5bc68920ac85a88> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9687d000 - 0x96895fff  com.apple.openscripting 1.2.8 (???) <a888b18c8527f71629702ed8dce9c877> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96896000 - 0x968d0ffe  com.apple.securityfoundation 3.0.2 (36131) <dd2a4d1a4f50b82923d7cfc5df10455d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x968d1000 - 0x96a04fe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96a05000 - 0x96a82feb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96a83000 - 0x96a83ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96a84000 - 0x96bd6ff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96bd7000 - 0x96be5ffd  libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x96be6000 - 0x96be9fff  com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96bea000 - 0x96bf0fff  com.apple.print.framework.Print 218.0.3 (220.2) <8c541d587e4068a5fe5a5ce8ee208516> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96bf1000 - 0x96c06ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96c07000 - 0x96c8eff7  libsqlite3.0.dylib ??? (???) <aaaf72c093e13f34b96e2688b95bdb4a> /usr/lib/libsqlite3.0.dylib
    0x96c8f000 - 0x96d40fff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96d41000 - 0x96d46fff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96d47000 - 0x96dc4fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96dc5000 - 0x96dc5ffa  com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96dc6000 - 0x96dfcfef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x96dfd000 - 0x96e04fff  com.apple.agl 3.0.9 (AGL-3.0.9) <5a57ce58f8adb7825e1adb9f7cdea151> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e05000 - 0x96eacfec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96ead000 - 0x96ec0fff  com.apple.IMUtils 4.0.8 (584) <f9b5c40fc6a37b082ae2a3df33766105> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x96ec1000 - 0x96eccfe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96ecd000 - 0x96f74feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x96f75000 - 0x96f94ffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96f95000 - 0x9729dfe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9729e000 - 0x972faff7  com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x972fb000 - 0x97306fff  com.apple.dotMacLegacy 3.1 (246) <1a8b7930067bce09867a6fb7b7ba31b2> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x97307000 - 0x97318ffe  com.apple.CFOpenDirectory 10.5 (10.5) <39d48cd00b8f9ca3fcdd251715cc74d5> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x97319000 - 0x976d7fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x976d8000 - 0x97732ff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x97733000 - 0x9774fff3  com.apple.CoreVideo 1.6.1 (48.6) <e1eea31edd855f3e739202eb18ac8312> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x97750000 - 0x97844ff4  libiconv.2.dylib ??? (???) <96ff4c6f84c4a1623cb78287371cdd3f> /usr/lib/libiconv.2.dylib
    0x97845000 - 0x97a01ff3  com.apple.QuartzComposer 2.1 (106.13) <dc04566811ab9c5316d1a622f42da8ba> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97a02000 - 0x97a02ff8  com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x97a03000 - 0x97a05ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97a06000 - 0x97ac1fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97ac2000 - 0x97b00fff  libGLImage.dylib ??? (???) <2e570958595e0c9c3a289158223b39ee> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97b01000 - 0x97ddbff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x97ddc000 - 0x97ddcfff  com.apple.Carbon 136 (136) <eb3c292d5544512f86e1e4e743c23f8e> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97ddd000 - 0x97e50fff  com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x97e51000 - 0x97fb8ff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x97fb9000 - 0x97fd7fff  libresolv.9.dylib ??? (???) <0e26b308654f33fc94a0c010a50751f9> /usr/lib/libresolv.9.dylib
    0x97fd8000 - 0x97ffcfeb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x97ffd000 - 0x980c6fef  com.apple.QuickTimeMPEG4.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x980c7000 - 0x980d6fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x980d7000 - 0x9811bfeb  com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0xba900000 - 0xba916fff  libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library (Right Click -> Show Package Contents) allowing it to overwrite the damaged file.
    2. Download <a href="http://www.fatcatsoftware.com/iplm/"><b><u>iPhoto Library Manager</b></u></a> and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new *iPhoto 08* library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents) on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption. 

  • XML Publisher Multi tab Report: Help needed

    Hi,
    I have a requirement like below--
    Need to develop master detail XML Report in R12. O/P will be in excel.
    Excel output having two Work sheet.
    Some columns data must be non editable in excel output ,whereas some columns will be editable.
    User must not be able to add any line manually in the report.
    Can anyone pls help me out to find a way to build this?????????
    Thanks
    Titas

    Hi Titas,
    Any luck with this? Were you able to create a multi-tab report using XML Publisher? Any help on this will be greatly appreciated.
    Thanks.

  • Error message when uploading - need help to fix

    I am getting this error message when uploading to ftp host:
    ﷯Error:
    Error uploading file master_a-master.css. Click Resume to try again. If this problem persists, try again later.
    [421 Idle timeout (600 seconds): closing control connection]
    how do I fix this?? have already tried to resume,,, tried from scratch.  closed program and opened again.  does this each time. 

    Make sure you're doing everything recommended by BlackBerry:
    www.blackberry.com/btsc/KB34045
    If you're hitting reload and it isn't reloading the OS for you, perhaps try reloading a backup file you've created (hopefully you've done some backups).
    Keep us up to date on your progress.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Adobe Premiere Elements 11 Uploading Problem - HELP

    I recorded some footage with Bandicam, then editted it, using a lot of clipping and cropping of the footage to give it a widescreen look. When I uploading it, I choose the setting of "High Definition Video for YouTube". When it finally uploaded, it looked out of wack. Footage was shrunk down and the cropping was off. When I re-uploaded it under the setting of "Flash Video for YouTube" it came out perfectly, just not in high quality. What setting should I use this time?

    The Tutorial Links Page http://forums.adobe.com/thread/1275830 may also help
    Plus...
    Premiere Elements FAQ List (2 pages of FAQ as of September 2013) http://forums.adobe.com/community/premiere_elements/premiere_elements_faq?view=all
    Premiere Elements TIPS List (6 pages of Tips as of September 2013) http://forums.adobe.com/community/premiere_elements/premiere_elements_tips?view=all

  • Oracle Forms - need to update multi-record block - Help needed asap

    Hi,
    We are using Oracle apps release 11i - Oracle forms 6i.
    I have a field "project_start_date" in project_block in a custom form. There is another multi-record block called role_block in the same custom form and it has a field named start_date. Requirement is when ever I make change in the project_start_date in project_block, that should reflect in role_block.start_date. I tried different means and could update only the very first record of the multi-record block - role_block. I need to update all the records in the role_block with the same project_start_date. Used looping and several other methods. But could not achieve. Any help is really appreciated.
    Thanks
    Akil

    Hi;
    For your issue i suggest close your thread here as changing thread status to answered and move it to Forum Home » Application Development in PL/SQL » Forms which you can get more quick response
    Regard
    Helios

  • Select_list_from_lov in multi row report: Help

    Oracle 10g, apex 3.2
    On windows XP client, Firefox 3.5.2
    I have a multi row editable report region, defined as below: I have a check box item for the row being selected and one of the columns in the row is a select_list_from_lov_xl. Once the user checks a particular row, using the check box, he/she will choose a particular value from that row's select list. How do I capture the value of the select_list returned value specific for that row? As you see from the highlighted code to render select_list,the value for the apex_item that I am assigning is 30. But when I look in the firebug->inspect element, the apex renders the name as 'f01'..??. What am I missing here??
    Also if user checks all rows, my code picks up the correct corresponding values picked for the select list. If user selects a row in the middle or any random row, the value selected is always the first item returned by the first orw's select_list (though this was not checked!!)
    I am confused and need help on capturing select list return values in a multi row reports.
    Thanks for all your time and expertise...
    Here's the simplified version of my query, that includes the culprits:
    SELECT APEX_ITEM.HIDDEN(10,TR.SEQ) || APEX_ITEM.CHECKBOX(20, tr.seq,'onchange="spCheckChange(this);"',:F500_REQUEST_LIST,':') "Is Requested?",
    +APEX_ITEM.SELECT_LIST_FROM_LOV_XL(30,TO_ROOM_SEQ, 'ROOMS_LOV') "To Room"*_+
    FROM TS_ASSETS TA, TS_REQS TR where <some condition>
    Here is part of my code that extracts the values picked
    -- this should pick only checked rows...
    for i in 1..apex_application.g_f20.count
    loop
    some_checked_value(i) := apex_item.g_f20(i);
    -- the below is coded thus, as thats the value that I see being set, when I inspect this element in firebug. Not sure how this came by, as I had set this item to 30 in my query...???
    some_select_list_val(i) := apex_item.g_f01(i);
    end loop;

    Why don't you try this
    SELECT    apex_item.hidden (10, tr.seq)
           || apex_item.checkbox (20,
                                  tr.seq,
                                  'onchange="spCheckChange(this);"',
                                  :f500_request_list,
                                  'f20_' || '#ROWNUM#'
                                 ) "Is Requested?",
           apex_item.select_list_from_lov_xl (30,
                                              to_room_seq,
                                              'ROOMS_LOV',
                                              'NO',
                                              NULL,
                                              NULL,
                                              'f30_' || '#ROWNUM#',
                                              NULL,
                                              'NO'
      FROM ts_assets ta, ts_reqs tr?
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • Beginner - Flat file upload error Help Please

    Hi Everyone,
    I am trying to upload a flat file [.csv] for the first time.
    I created Info objects  Material Id, Material Name , Price as keyfigure.
    Material Id holds Material Name and Price as attributes and is With Text and With Master Data.
    For the Keyfigure, Price, I have selected Amount and defined as USD.
    In the flat file, i have Material id, Material Name, Price, Description for Text, its something like this
    Mid         M-Name   Price      DESCRIPTION
    10001     A              99.99     AA
    When I create an Application Component and thereafter create a data source for master data attributes for Material
    and select the flat file and upload it, then the data types for Keyfigure PRICE changes to FLTP Length 16, its no longer as DEC and i get some werid data for Price field, something like
    "99.990000000001E+02" instead of 99.99.   Why am I having this problem and how could this be resolved ?
    I thought i would start off with my best foot forward but it didnt work. Any kind of help would be highly appreciated. Thanks guys..Byee

    hi,
    these are the BI.7 steps
    BW 7.0
    Uploading of master data
    Log on to your SAP
    Transaction code RSA1u2014LEAD YOU TO MODELLING
    1. Creation of Info Objects
    u2022 In left panel select info object
    u2022 Create info area
    u2022 Create info object catalog ( characteristics & Key figures ) by right clicking the created info area
    u2022 Create new characteristics and key figures under respective catalogs according to the project requirement
    u2022 Create required info objects and Activate.
    2. Creation of Data Source
    u2022 In the left panel select data sources
    u2022 Create application component(AC)
    u2022 Right click AC and create datasource
    u2022 Specify data source name, source system, and data type ( master data attributes, text, hierarchies)
    u2022 In general tab give short, medium, and long description.
    u2022 In extraction tab specify file path, header rows to be ignored, data format(csv) and data separator( , )
    u2022 In proposal tab load example data and verify it.
    u2022 In field tab you can you can give the technical name of info objects in the template and you not have to map during the transformation the server will automatically map accordingly. If you are not mapping in this field tab you have to manually map during the transformation in Info providers.
    u2022 Activate data source and read preview data under preview tab.
    u2022 Create info package by right clicking data source and in schedule tab click star to load data to PSA.( make sure to close the flat file during loading )
    3. Creation of data targets
    u2022 In left panel select info provider
    u2022 Select created info area and right click to select Insert Characteristics as info provider
    u2022 Select required info object ( Ex : Employee ID)
    u2022 Under that info object select attributes
    u2022 Right click on attributes and select create transformation.
    u2022 In source of transformation , select object type( data source) and specify its name and source system Note: Source system will be a temporary folder or package into which data is getting stored
    u2022 Activate created transformation
    u2022 Create Data transfer process (DTP) by right clicking the master data attributes
    u2022 In extraction tab specify extraction mode ( full)
    u2022 In update tab specify error handling ( request green)
    u2022 Activate DTP and in execute tab click execute button to load data in data targets.
    4. Monitor
    Right Click data targets and select manage and in contents tab select contents to view the loaded data. Alternatively monitor icon can be used.
    BW 7.0
    Uploading of Transaction data
    Log on to your SAP
    Transaction code RSA1u2014LEAD YOU TO MODELLING
    5. Creation of Info Objects
    u2022 In left panel select info object
    u2022 Create info area
    u2022 Create info object catalog ( characteristics & Key figures ) by right clicking the created info area
    u2022 Create new characteristics and key figures under respective catalogs according to the project requirement
    u2022 Create required info objects and Activate.
    6. Creation of Data Source
    u2022 In the left panel select data sources
    u2022 Create application component(AC)
    u2022 Right click AC and create datasource
    u2022 Specify data source name, source system, and data type ( Transaction data )
    u2022 In general tab give short, medium, and long description.
    u2022 In extraction tab specify file path, header rows to be ignored, data format(csv) and data separator( , )
    u2022 In proposal tab load example data and verify it.
    u2022 In field tab you can you can give the technical name of info objects in the template and you not have to map during the transformation the server will automatically map accordingly. If you are not mapping in this field tab you have to manually map during the transformation in Info providers.
    u2022 Activate data source and read preview data under preview tab.
    u2022 Create info package by right clicking data source and in schedule tab click star to load data to PSA.( make sure to close the flat file during loading )
    7. Creation of data targets
    u2022 In left panel select info provider
    u2022 Select created info area and right click to create ODS( Data store object ) or Cube.
    u2022 Specify name fro the ODS or cube and click create
    u2022 From the template window select the required characteristics and key figures and drag and drop it into the DATA FIELD and KEY FIELDS
    u2022 Click Activate.
    u2022 Right click on ODS or Cube and select create transformation.
    u2022 In source of transformation , select object type( data source) and specify its name and source system Note: Source system will be a temporary folder or package into which data is getting stored
    u2022 Activate created transformation
    u2022 Create Data transfer process (DTP) by right clicking the master data attributes
    u2022 In extraction tab specify extraction mode ( full)
    u2022 In update tab specify error handling ( request green)
    u2022 Activate DTP and in execute tab click execute button to load data in data targets.
    8. Monitor
    Right Click data targets and select manage and in contents tab select contents to view the loaded data. There are two tables in ODS new table and active table to load data from new table to active table you have to activate after selecting the loaded data . Alternatively monitor icon can be used
    if it is helpful assign points
    cheers
    sivaRaju

  • Flex upload problem - Help!

    Hi. I've got a JSP page that works fine when I upload a file
    to it from another JSP page, using simple Browse and Submit
    buttons. I've deployed the Flex 3 SWF to the same folder as the JSP
    page and am trying to upload a file from the Flex app and keep
    getting this error:
    Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File
    I/O Error.
    at
    TV_Schedule()[C:\flexTest\_workspace\TV_Schedule\src\TV_Schedule.mxml:9]
    at _TV_Schedule_mx_managers_SystemManager/create()
    at
    mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\3.0.x\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:2438]
    at mx.managers::SystemManager/
    http://www.adobe.com/2006/flex/mx/internal::docFrameHandler()[E:\dev\3.0.x\frameworks\proj ects\framework\src\mx\managers\SystemManager.as:2330
    On the Tomcat server's error log, it has the following,
    [Fri Aug 22 12:16:19 2008] [error] [client xxx.xxx.xx.xxx]
    mod_security: Access denied with code 403.
    Error processing request body: Multipart: final boundary
    missing [hostname "myhost.mydomain.org"] [uri
    "/myfolder/upload.jsp"]
    I've read that if we put the following in an .htaccess file
    in the root, it will get rid of the problem,
    SecFilterEngine Off
    SecFilterScanPOST Off
    However, this opens us up to all kinds of attacks. I've read
    that the "Multipart: final boundary missing" is a known issue. Is
    this true? Are there documents on this? Will the next version of
    Flex fix this?

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    All Classes (Flex 3):
    mx.automation, The Flex automation framework uses the
    AutomationID class to ..... The FileReference class provides a
    means to upload and download files
    Link:
    http://livedocs.adobe.com/flex/3/langref/class-summary.html
    Flex cookbook beta - Uploading files from Flex using PHP:
    Flex cookbook beta - Code a control so that end users can
    upload a file ... text=Error #2038: File I/O Error. And the
    permissions for the folder are 777 so
    Link:
    http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=5241&produ ctId=2
    F (Flex 3):
    The FileReference class provides a means to upload and
    download files ...... handle error messages, and bind your form
    data to the Flex data model to
    Link:
    http://livedocs.adobe.com/flex/3/langref/all-index-F.html
    Flex Solutions:
    MORE FLEX FRAMEWORK LIBRARIES AND UTILITIES. 709. 12.
    Excerpted from Flex Solutions, .... invoked if an error occurs in
    the upload phase of the file:
    Link:
    http://www.adobe.com/devnet/flex/articles/upload_files/uploading_files_to_the_server.pdf
    [#FP-292] uploading of files: io error 2038 on Apache - app
    ok on:
    Actual Results: Expected Results: Upload file Workaround (if
    any): ... This error is also seen when using Flex 3 and has been
    pending for a really long time
    Link:
    http://bugs.adobe.com/jira/browse/FP-292
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • URL Redirection Help Required

    Hi,
    I have a SharePoint 2013 site, which has been built with mostly Out of the Box functionality. 
    There is an Edit link on the Page which is a part of a web part, but it is being redirected to the wrong URL. I want to know how to modify the URL for that Link within the Web Part.
    Please kindly
    Thanks
    Vignesh

    Hi,
    From your description, my understanding is that  you want to change the URL for a link in web part.
    I am not quite sure what web part do you want to change, could provide a screenshot or detailed information for me?
    Besides, if you want to change the URL of a link, you could use jQuery code as below to accomplish your requirement(add the code into a Content Editor Web Part in the page):
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
    <script type="text/javascript">
    $(function () {
    // replace the selector with your own selector and replace the “www.bing.com” with the URL that you want to redirect to.
    $("selector").attr("href", "http://www.bing.com");
    </script>
    You also could refer to this article:
    http://stackoverflow.com/questions/179713/how-to-change-the-href-for-a-hyperlink-using-jquery.
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • How do I get my "stuff" over to a Samsung device?

    Hi , I am working on Mac os x, Indesign cs6. My problem is when I am exporting my file as jpg ore a PDF using rgb coz its going on Ipad. The file is turning out real smoggy and dirty looking when i send them via mail and open it on I pod. When I use

  • After I publish to a folder how do I get my website onto-lets say GoDaddy?

    So, lets say I'm finished creating the webpage. (I'm using iWeb '08) Now I publish to a folder, and I just recently got a GoDaddy account... So how do I go about doing the transfer from folder to my domain/GoDaddy. I know this may seem like a dumb qu

  • LSO - XI - Skillsoft integration, launch course

    Hi Gurus, I am working on a scenario where we are launching and tracking web based courses (Skill soft a third party). Let me give you more details of my scenario. 1) Commnication is from SAP LSO System to Third Party(Skill Soft) through PI(XI). 2) W

  • Error: No Logon Data found for Lotus Notes System

    Hi, I have created a lotus notes sytem and have configured the transport also. But even then i am not able to create appointment under collaboration. I get the error msg : <b>"No logon data found for the system 'system name' ".</b> And when i tried t

  • CRVS2010 StateServer Support?

    We have an application using CRVS2010, which currently uses InProc for maintaining Session Variables. We would like to change to StateServer, so that we do not lose session state if/when w3wp.exe crashes (as per another post, we are having problems w