Help with uploading quality of prints

Hello--- need help - I use photoshop elements 9 to edit my pictures and digital scrapbook pages--- it seems like when I submit them online to a website to have them printed- they are too bright ??? I am using an acer aspire notebook model 7551-7422 not sure  ?? Any thoughts on why they are overexposed they appear to be fine on my screen.  Thanks

Colour Management is a complex process, everyone's eyes will see an onscreen image differently. Realistically you need to use a hardware calibrator to properly calibrate your monitor. Many people will turn down brightness and increase contrast to avoid eye strain, but this then means that what you see is not what is really represented in the image.
Do your pictures look right if you print them on your own printer?
In Edit> Color Settings do you have it set to Optimize for Printing?
Cheers,
Neale
Insanity is hereditary, you get it from your children
If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

Similar Messages

  • Can anyone help with uploading photos from iPad to Facebook.  Thanks

    Can anyone help with uploading photos fom iPad to Facebook?  Thanks

    What app are you to trying to use ? You can't upload photos to Facebook via Safari, but a number of the Facebook apps support it e.g. the 'official' app : http://itunes.apple.com/us/app/facebook/id284882215?mt=8 (thought it's optimised for the iPhone/iPod Touch it does support uploading photos), Friendly For Facebook (http://itunes.apple.com/us/app/friendly-for-facebook/id400169658?mt=8)

  • Can Somebody help with uploading.........

    Can Somebody help with uploading my iweb creation.
    i have made a iweb site and upload it to my .mac.
    later that day i deleted on my idisk the site manualy and i want to upload a news site but every time i tryed to upload the site iweb says that i need a .mac account. and that i have.
    i have tryed with a other account (from a friend) and that worked. Strange but now it works. I tryed again with my account but still he ask that i need a .mac account.
    Can anybody help me????

    i have solved it the solution was here
    http://discussions.apple.com/thread.jspa?threadID=334447&tstart=45
    many thanks

  • Help with display quality (LCD TV)

    I've hooked up my Mac mini to my Samsung 32" LCD TV via HDMI cable.
    The overall quality is just far from desireable and is taking away all of the fun from using this new mac.
    I set the resolution output to 720p, which is what the TV supports. So that's good.
    I played slightly with the Contrast and Brightness on the TV settings.
    But I must be missing something. Although the image is sharp, it's very difficult to read from 6ft away, pictures look terrible (seeing the same picture on a different computer and monitor is so much more revealing), and the display is bad for everything basically.
    Please help with any settings suggestions or perhaps a detailed guideline for my setup.
    I started to configure a color profile on the display settings but the results weren't that great and I reverted to default. Too many subtle changes. My colorblindness probably doesn't help.
    Thanks.

    Thanks for the response.
    It's the latest Mac Mini with 2.5ghz i5, AMD Radeon HD 6630M, and 8GB RAM.
    I am familiar with the "Just Scan" setting under picture size on the Samsung TV.
    I'll look for the digital noise reduction.
    Are there complete guides with recommended settings for different setups? Or maybe even general, that would help me here?
    Thanks.

  • Help with Upload file to Server Examples

    I have been working with the examples for how to upload a file to the server. Though i got the example to work. there is one more thing i need to do. i need to allow the user to be able to select multiple files.  In the example when you click on Upload, it opens a MS window to allow you to select a file. This example does not allow you to select more then one file though. I found another example for selecting multiple files but this one differs very much in that the person who make it "Ryan Favro" created a whole new GUI window to select multiple files. those his example works great, i dont want a special window to select files, i want the MS window to do it.
    Is there a way to make the original example that uses the MS window to allow the user to select multiple files ?
    I have attached the example that uses the MS window.

    Hi,
    Use this code. May be it helps u.
    fileuploadapp.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:com="test.*" layout="absolute"
        creationComplete="initApp()" viewSourceURL="srcview/index.html">
        <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                private const _strDomain:String = new String("http://localhost:8400/");
                private const _strUploadScript:String = new String(_strDomain + "ProcessFileUp/UploadFile");
                // Initalize
                private function initApp():void {
                    Security.allowDomain(_strDomain);
            ]]>
        </mx:Script>
        <mx:Canvas width="400" height="300" horizontalCenter="0" verticalCenter="0">
            <com:FileUpload
                width="100%" height="100%"
                uploadUrl="{_strUploadScript}"
                uploadComplete="Alert.show('File(s) have been uploaded.', 'Upload successful')"
                uploadIOError="Alert.show('IO Error in uploading file.', 'Error')"
                uploadSecurityError="Alert.show('Security Error in uploading file.', 'Error')"/>
        </mx:Canvas>
    </mx:Application>
    fileuoload.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:com="*"
        layout="vertical" width="100%" minWidth="400" height="100%" minHeight="200"
        title="Upload Files" creationComplete="initCom()">
        <mx:Metadata>
            [Event(name="uploadComplete", type="flash.events.Event")]
            [Event(name="uploadProgress", type="flash.events.ProgressEvent")]
            [Event(name="uploadCancel", type="flash.events.Event")]
            [Event(name="uploadIOError", type="flash.events.IOErrorEvent")]
            [Event(name="uploadSecurityError", type="flash.events.SecurityErrorEvent")]
        </mx:Metadata>
        <mx:Script>
            <![CDATA[
                import mx.controls.*;
                import mx.managers.*;
                import mx.events.*;
                import flash.events.*;
                import flash.net.*;
                private var _strUploadUrl:String;
                private var _refAddFiles:FileReferenceList;   
                private var _refUploadFile:FileReference;
                private var _arrUploadFiles:Array;
                private var _numCurrentUpload:Number = 0;           
                // Set uploadUrl
                public function set uploadUrl(strUploadUrl:String):void {
                    _strUploadUrl = strUploadUrl;
                // Initalize
                private function initCom():void {
                    _arrUploadFiles = new Array();               
                    enableUI();
                    uploadCheck();
                // Called to add file(s) for upload
                private function addFiles():void {
                    _refAddFiles = new FileReferenceList();
                    _refAddFiles.addEventListener(Event.SELECT, onSelectFile);
                    _refAddFiles.browse();
                // Called when a file is selected
                private function onSelectFile(event:Event):void {
                    var arrFoundList:Array = new Array();
                    // Get list of files from fileList, make list of files already on upload list
                    for (var i:Number = 0; i < _arrUploadFiles.length; i++) {
                        for (var j:Number = 0; j < _refAddFiles.fileList.length; j++) {
                            if (_arrUploadFiles[i].name == _refAddFiles.fileList[j].name) {
                                arrFoundList.push(_refAddFiles.fileList[j].name);
                                _refAddFiles.fileList.splice(j, 1);
                                j--;
                    if (_refAddFiles.fileList.length >= 1) {               
                        for (var k:Number = 0; k < _refAddFiles.fileList.length; k++) {
                            _arrUploadFiles.push({
                                name:_refAddFiles.fileList[k].name,
                                size:formatFileSize(_refAddFiles.fileList[k].size),
                                file:_refAddFiles.fileList[k]});
                        listFiles.dataProvider = _arrUploadFiles;
                        listFiles.selectedIndex = _arrUploadFiles.length - 1;
                    if (arrFoundList.length >= 1) {
                        Alert.show("The file(s): \n\n• " + arrFoundList.join("\n• ") + "\n\n...are already on the upload list. Please change the filename(s) or pick a different file.", "File(s) already on list");
                    updateProgBar();
                    scrollFiles();
                    uploadCheck();
                // Called to format number to file size
                private function formatFileSize(numSize:Number):String {
                    var strReturn:String;
                    numSize = Number(numSize / 1000);
                    strReturn = String(numSize.toFixed(1) + " KB");
                    if (numSize > 1000) {
                        numSize = numSize / 1000;
                        strReturn = String(numSize.toFixed(1) + " MB");
                        if (numSize > 1000) {
                            numSize = numSize / 1000;
                            strReturn = String(numSize.toFixed(1) + " GB");
                    return strReturn;
                // Called to remove selected file(s) for upload
                private function removeFiles():void {
                    var arrSelected:Array = listFiles.selectedIndices;
                    if (arrSelected.length >= 1) {
                        for (var i:Number = 0; i < arrSelected.length; i++) {
                            _arrUploadFiles[Number(arrSelected[i])] = null;
                        for (var j:Number = 0; j < _arrUploadFiles.length; j++) {
                            if (_arrUploadFiles[j] == null) {
                                _arrUploadFiles.splice(j, 1);
                                j--;
                        listFiles.dataProvider = _arrUploadFiles;
                        listFiles.selectedIndex = 0;                   
                    updateProgBar();
                    scrollFiles();
                    uploadCheck();
                // Called to check if there is at least one file to upload
                private function uploadCheck():void {
                    if (_arrUploadFiles.length == 0) {
                        btnUpload.enabled = false;
                        listFiles.verticalScrollPolicy = "off";
                    } else {
                        btnUpload.enabled = true;
                        listFiles.verticalScrollPolicy = "on";
                // Disable UI control
                private function disableUI():void {
                    btnAdd.enabled = false;
                    btnRemove.enabled = false;
                    btnUpload.enabled = false;
                    btnCancel.enabled = true;
                    listFiles.enabled = false;
                    listFiles.verticalScrollPolicy = "off";
                // Enable UI control
                private function enableUI():void {
                    btnAdd.enabled = true;
                    btnRemove.enabled = true;
                    btnUpload.enabled = true;
                    btnCancel.enabled = false;
                    listFiles.enabled = true;
                    listFiles.verticalScrollPolicy = "on";
                // Scroll listFiles to selected row
                private function scrollFiles():void {
                    listFiles.verticalScrollPosition = listFiles.selectedIndex;
                    listFiles.validateNow();
                // Called to upload file based on current upload number
                private function startUpload():void {
                    if (_arrUploadFiles.length > 0) {
                        disableUI();
                        listFiles.selectedIndex = _numCurrentUpload;
                        scrollFiles();
                        // Variables to send along with upload
                        var sendVars:URLVariables = new URLVariables();
                        sendVars.action = "upload";
                        var request:URLRequest = new URLRequest();
                        request.data = sendVars;
                        request.url = _strUploadUrl;
                        request.method = URLRequestMethod.POST;
                        _refUploadFile = new FileReference();
                        _refUploadFile = listFiles.selectedItem.file;
                        _refUploadFile.addEventListener(ProgressEvent.PROGRESS, onUploadProgress);
                           _refUploadFile.addEventListener(Event.COMPLETE, onUploadComplete);
                        _refUploadFile.addEventListener(IOErrorEvent.IO_ERROR, onUploadIoError);
                          _refUploadFile.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onUploadSecurityError);
                        _refUploadFile.upload(request, "file", false);
                // Cancel and clear eventlisteners on last upload
                private function clearUpload():void {
                    _refUploadFile.removeEventListener(ProgressEvent.PROGRESS, onUploadProgress);
                    _refUploadFile.removeEventListener(Event.COMPLETE, onUploadComplete);
                    _refUploadFile.removeEventListener(IOErrorEvent.IO_ERROR, onUploadIoError);
                    _refUploadFile.removeEventListener(SecurityErrorEvent.SECURITY_ERROR, onUploadSecurityError);
                    _refUploadFile.cancel();
                    _numCurrentUpload = 0;
                    updateProgBar();
                    enableUI();
                // Called on upload cancel
                private function onUploadCanceled():void {
                    clearUpload();
                    dispatchEvent(new Event("uploadCancel"));
                // Get upload progress
                private function onUploadProgress(event:ProgressEvent):void {
                    var numPerc:Number = Math.round((event.bytesLoaded / event.bytesTotal) * 100);
                    updateProgBar(numPerc);
                    var evt:ProgressEvent = new ProgressEvent("uploadProgress", false, false, event.bytesLoaded, event.bytesTotal);
                    dispatchEvent(evt);
                // Update progBar
                private function updateProgBar(numPerc:Number = 0):void {
                    var strLabel:String = (_numCurrentUpload + 1) + "/" + _arrUploadFiles.length;
                    strLabel = (_numCurrentUpload + 1 <= _arrUploadFiles.length && numPerc > 0 && numPerc < 100) ? numPerc + "% - " + strLabel : strLabel;
                    strLabel = (_numCurrentUpload + 1 == _arrUploadFiles.length && numPerc == 100) ? "Upload Complete - " + strLabel : strLabel;
                    strLabel = (_arrUploadFiles.length == 0) ? "" : strLabel;
                    progBar.label = strLabel;
                    progBar.setProgress(numPerc, 100);
                    progBar.validateNow();
                // Called on upload complete
                private function onUploadComplete(event:Event):void {
                    _numCurrentUpload++;               
                    if (_numCurrentUpload < _arrUploadFiles.length) {
                        startUpload();
                    } else {
                        enableUI();
                        clearUpload();
                        dispatchEvent(new Event("uploadComplete"));
                // Called on upload io error
                private function onUploadIoError(event:IOErrorEvent):void {
                    clearUpload();
                    var evt:IOErrorEvent = new IOErrorEvent("uploadIoError", false, false, event.text);
                    dispatchEvent(evt);
                // Called on upload security error
                private function onUploadSecurityError(event:SecurityErrorEvent):void {
                    clearUpload();
                    var evt:SecurityErrorEvent = new SecurityErrorEvent("uploadSecurityError", false, false, event.text);
                    dispatchEvent(evt);
                // Change view state
                private function changeView():void {
                    currentState = (currentState == "mini") ? "" : "mini";
            ]]>
        </mx:Script>
        <mx:states>
            <mx:State name="mini">
                <mx:SetProperty name="height" value="60"/>
                <mx:SetProperty name="minHeight" value="60"/>
                <mx:SetStyle target="{btnView}" name="icon" value="@Embed('assets/application_put.png')"/>
            </mx:State>
        </mx:states>
        <mx:transitions>
            <mx:Transition fromState="*" toState="*">
                <mx:Resize target="{this}" duration="1000"/>
            </mx:Transition>
        </mx:transitions>
        <mx:Canvas width="100%" height="100%">
            <mx:DataGrid id="listFiles" left="0" top="0" bottom="0" right="0"
                allowMultipleSelection="true" verticalScrollPolicy="on"
                draggableColumns="false" resizableColumns="false" sortableColumns="false">
                <mx:columns>
                    <mx:DataGridColumn headerText="File" dataField="name" wordWrap="true"/>
                    <mx:DataGridColumn headerText="Size" dataField="size" width="75" textAlign="right"/>
                </mx:columns>
            </mx:DataGrid>
        </mx:Canvas>
        <mx:ControlBar horizontalAlign="center" verticalAlign="middle">
            <mx:Button id="btnAdd" toolTip="Add file(s)" click="addFiles()" icon="@Embed('assets/add.png')" width="26"/>
            <mx:Button id="btnRemove" toolTip="Remove file(s)" click="removeFiles()" icon="@Embed('assets/delete.png')" width="26"/>
            <mx:ProgressBar id="progBar" mode="manual" label="" labelPlacement="center" width="100%"/>
            <mx:Button id="btnCancel" toolTip="Cancel upload" icon="@Embed('assets/cancel2.png')" width="26" click="onUploadCanceled()"/>
            <mx:Button label="Upload" toolTip="Upload file(s)" id="btnUpload" click="startUpload()" icon="@Embed('assets/bullet_go.png')"/>
            <mx:Button id="btnView" toolTip="Show/Hide file(s)" icon="@Embed('assets/application_get.png')" width="26" click="changeView()"/>
        </mx:ControlBar>   
    </mx:Panel>
    Regards,
         Shivang

  • Need help with uploading web gallery

    When I try to upload a gallery, I recieve the following error message: An error occured sending the file: a response was not received in time.
    How do I correct this?

    Find the exported gallery on the hard drive, and open the index file in a web browser. If that works correctly, then yes, it's a problem that you'll need to discuss with your web host, rather than a Lightroom problem that we can help with, sorry.

  • Help with Elements 12 and Print Studio

    i have Elements 12 and cant get print studio supplied with my canon pixma pro 100 to install
    can any one help ??

    You messaged me (but please reply to the forum as it will help others with the same problem):
    "print studio just keeps saying its not compatible with elements 12 or vice versa??".
    Go to Canon's web site and download the latest verson and see if that works. It installed for me OK (not that it worked, as I don't have a compatible printer).
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Need help with doing double sided printing!!!

    i have a Epson XP-100 priniter and also MacBook pro laptop
    i am having serious trouble with doing double side printing
    can somebody assist me through please
    thanks

    Read the user manual that came w/the printer.  It will tell you if double sided printing is compatible w/your current OS which you did not mention.  If not, you will need to contact Epson tech support and/or post in their forums if they have one. 

  • Probelm with email quality and printing

    Why is it that when I receive a photo via email I cannot print it out without receiving an exclamation point in a yellow triangle and then when I do print it out it's all pixilated? The image I receive is also smaller than the others in my photo album even though the photo was emailed to me in large format, highest quality.
    I tried to make a book using photos I emailed myself from my moms macbook and I had a problem with every one of them. However, if I upload them through a card reader then there isn't a problem. Why is this and what am I doing wrong?
    Thanks in advance,
    ellen

    ellen:
    As aubiem pointed out Mail will resize them. Be sure to select actual size at the bottom of the Mail window before sending.
    Or, you can zip the original file, drag to the desktop, Control-click on the photo or group of selected photos and select the "Make archive of...." menu in the contextual menu. That will insure the full image file is included in the email.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • FCP Novice needs help with video quality and FCP 5!!

    Hi,
    I have a real problme that I cannot seem to fix. I think its because I am doing something really wrong!
    I have a Sony HC42E MiniDV Camcorder which by default records video in full widescreen. I recorded several tapes this way and have now begun trying to edit them in FCP 5.04 (Tiger 10.4.6). Whenever I log and capture my clips they appear to be fuzzzy and unclear on the Mac monitor whilst being totally crisp and sharp on the camcorder viewfinder. I tried capturing using the DV PAL 48Khz Anamorphic Preset which keeps everything the right size (the final output needs to be true widescreen and not with black bars added) but the resulting video on screen is blurry and bitty. I then tried capturing using the DV PAL 720 x 576 normal preset and the video is a little clearer on the screen (for both presets I have chosen lower field dominance) but when I play back it plays back in widescreen on the mac canvas window but at 4:3 on the camera's viewfinder.
    I then assumed that maybe this is just becuase the mac screen (CRT by the way) doesn't use fields. So I exported the sequence as a QT movie using DV PAL 16:9 and used quicktime (OS9 Classic - my compressor has never worked because of the dreaded "unable to connect to baackground process" problem which I've never managed to correct) to convert it to MPEG2. When I import this as an asset into DVD Studio pro 4 and set the track size to 16:9 it comes through at the right aspect ratio. However it looks blurry on screen. Thinking that this will be fine on a TV I burned the disc - inserted it into my DVD player (a good one!) and watched it on my new 32" widescreen TV (a good one!) and the picture qualitty is poor. Its so much blurrier and bittier than the original footage looks when played through the camcorder's viewfinder!
    The final footaage looks like an old VHS recording that's a year or two old!
    Does anyone know how I can capture my footage in FCP with the maximum quality, edit it without quality loss and the export it for DVD again without such significant quality loss whilst all the time keeping it at proper 16:9 widescreen?
    Is there some presets I should be working to?
    I'm tearing my hair out! Help!

    Hi Guys,
    thanx for your replies.
    here's the latest:
    Brian, I followed your instructions and the DVD burned successfully. However the video quality of the dvd when viewed on my TV ('ve tried on all 3 of my tvs now) is still a lot poorer than the quicktime movie that was imported into DVDSP4. When I play the original QT Movie on my Mac CRT monitor it looks a little blurry and grainy because I guess its non interlaced however when viewed on an external Video monitor it looks great - very sharp.
    When I view the burned DVD on my television the picture quality looks like the non interlaced version of the original QT Movie that appeared on my Mac CRT and not the sharp interlaced (lower field) version that appeared on my external video monitor.
    Its almost like taking a sharp jpeg into Photoshop and applying a gaussian blur of about 0.3 followed by jepg compression compressing it down to 5% quality!
    I'm totally mystified. Can the conversion to Mpeg2 be removing all interlacing so that you get the less sharp computer monitor look? I just want the video on my final DVDs to be as good as the original source footage! I appreciate that along the way there might be loss of some quality but surely not that much?
    Does this make sense to you guys or am I still doing something very wrong?
    Robert: I have tried setting all manner of drives including a fresh external firewire HD with nothing on it (clean out of the box) but it doesn't seem to help.
    Brian: I tried the no network suggestion a few months back but I'm not sure if I got it right. At the moment I have broadband through an external speedtouch usb modem and am also connected (occasionally although not for the last 3 months) via a crossover cable to my PCs ethernet card. When I last tried the No Network solution I had immense trouble getting my internet to work again! Can you please help me by directing me to the best ay to do this while protecting my internet settings?
    any more help guys would be greatfully appreciated.

  • Still trying to get help with Acrobat Reader - not printing

    I have tried printing from Acrobat Reader 10.1 both as regular printout and also printing as image and neither way is working. Any assistance would be greatly appreciated. Here's are the log files:
    As PDF:
    Process:         AdobeReader [3790]
    Path:            /Applications/Adobe Reader.app/Contents/MacOS/AdobeReader
    Identifier:      com.adobe.Reader
    Version:         10.1.0 (10.1.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-06-18 22:26:15.888 -0500
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          834391 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  491 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      A53C6811-1170-42FB-B252-FDD6EF1FC1AD
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation      0x95209440 CFURLCopyAbsoluteURL + 48
    1   com.apple.CoreFoundation      0x95251741 _CFBundleAddPreferredLprojNamesInDirectory + 257
    2   com.apple.CoreFoundation      0x95251230 _CFBundleGetLanguageSearchList + 160
    3   com.apple.CoreFoundation      0x9525107a CFBundleCopyResourceURL + 26
    4   com.apple.CoreFoundation      0x95261526 CFBundleCopyLocalizedString + 694
    5   ...e.print.framework.PrintCore 0x905e6fcd OpaquePMPaper::CreateLocalizedPaperName(OpaquePMPrinter*) + 355
    6   ...e.print.framework.PrintCore 0x905e9e7a PMPaperCreateLocalizedName + 202
    7   AdobeAGM                      0x01c863d7 AGMTerminate + 1732436
    8   AdobeAGM                      0x01bd463b AGMTerminate + 1003960
    9   AdobeAGM                      0x01bd4bbe AGMTerminate + 1005371
    10  AdobeAGM                      0x01bd4e5d AGMTerminate + 1006042
    11  AdobeAGM                      0x01af8c6a AGMTerminate + 104423
    12  AdobeAGM                      0x01afa1f1 AGMTerminate + 109934
    13  com.adobe.Acrobat.framework   0x0028d584 RunAcrobatInBrowser + 158795
    14  com.adobe.Acrobat.framework   0x0028b276 RunAcrobatInBrowser + 149821
    15  com.adobe.Acrobat.framework   0x0028bc47 RunAcrobatInBrowser + 152334
    16  com.adobe.Acrobat.framework   0x0028bfe2 RunAcrobatInBrowser + 153257
    17  com.adobe.Acrobat.framework   0x0028c0fe RunAcrobatInBrowser + 153541
    18  com.adobe.Acrobat.framework   0x00505404 AcroSecurityBailOutImpl + 2525809
    19  com.adobe.Acrobat.framework   0x004657cc AcroSecurityBailOutImpl + 1871417
    20  com.adobe.Acrobat.framework   0x0067ee8b AcroSecurityBailOutImpl + 4072696
    21  com.adobe.Acrobat.framework   0x004925d2 AcroSecurityBailOutImpl + 2055231
    22  com.adobe.Acrobat.framework   0x00492718 AcroSecurityBailOutImpl + 2055557
    23  com.adobe.Acrobat.framework   0x0088eaac AcroSecurityBailOutImpl + 6234393
    24  com.adobe.Acrobat.framework   0x0088e85c AcroSecurityBailOutImpl + 6233801
    25  com.adobe.Acrobat.framework   0x00242a4e RunAcrobat + 2291709
    26  com.apple.AppKit              0x96c30c46 -[NSApplication sendAction:to:from:] + 112
    27  com.apple.AppKit              0x96c30af9 -[NSMenuItem _corePerformAction] + 435
    28  com.apple.AppKit              0x96c307eb -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    29  com.apple.AppKit              0x96c306da -[NSMenu performActionForItemAtIndex:] + 65
    30  com.apple.AppKit              0x96c3068d -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    31  com.apple.AppKit              0x96c305f3 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    32  com.apple.AppKit              0x96c30537 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    33  com.apple.AppKit              0x96c24c61 NSSLMMenuEventHandler + 404
    34  com.apple.HIToolbox           0x94884c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    35  com.apple.HIToolbox           0x94883ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    36  com.apple.HIToolbox           0x948a67f3 SendEventToEventTarget + 52
    37  com.apple.HIToolbox           0x948d2e87 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    38  com.apple.HIToolbox           0x948f7b90 SendMenuCommandWithContextAndModifiers + 66
    39  com.apple.HIToolbox           0x948f7b47 SendMenuItemSelectedEvent + 121
    40  com.apple.HIToolbox           0x948f7a5d FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    41  com.apple.HIToolbox           0x948c7160 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 454
    42  com.apple.HIToolbox           0x948c68bb _HandleMenuSelection2 + 465
    43  com.apple.HIToolbox           0x948c66d9 _HandleMenuSelection + 53
    44  com.apple.AppKit              0x96c1e1a2 _NSHandleCarbonMenuEvent + 285
    45  com.apple.AppKit              0x96bf2d3e _DPSNextEvent + 2304
    46  com.apple.AppKit              0x96bf1fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    47  com.apple.AppKit              0x96bb4247 -[NSApplication run] + 821
    48  com.adobe.Acrobat.framework   0x000149d5 RunAcrobat + 6020
    49  com.adobe.Acrobat.framework   0x0001338d RunAcrobat + 316
    50  com.adobe.Reader              0x00001e92 main + 94
    51  com.adobe.Reader              0x00001e16 start + 54
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x95d97922 kevent + 10
    1   libSystem.B.dylib             0x95d9803c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x95d974f9 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x95d9729e _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x95d96d21 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x95d96b66 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib             0x95d710fa semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x95d9ec85 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x95dcdaa8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore 0x90f78e3d TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    5   com.adobe.Acrobat.framework   0x00066a2d RunAcrobat + 341980
    6   com.adobe.Acrobat.framework   0x00064126 RunAcrobat + 331477
    7   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    8   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    9   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib             0x95d97922 kevent + 10
    1   com.adobe.Acrobat.framework   0x00edc352 AcroSecurityBailOutImpl + 12843455
    2   com.adobe.Acrobat.framework   0x00e44d7f AcroSecurityBailOutImpl + 12223468
    3   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    4   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 10:  com.apple.CFSocket.private
    0   libSystem.B.dylib             0x95d90066 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation      0x9527bc83 __CFSocketManager + 1091
    2   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    3   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95dcaec5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib             0x95dcae03 usleep$UNIX2003 + 61
    3   com.apple.AppKit              0x96d5bfe1 -[NSUIHeartBeat _heartBeatThread:] + 2039
    4   com.apple.Foundation          0x978a1ad0 -[NSThread main] + 45
    5   com.apple.Foundation          0x978a1a80 __NSThread__main__ + 1499
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 12:
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xa06118ac  ebx: 0x9520941e  ecx: 0x00000000  edx: 0x0000001d
      edi: 0xa0612294  esi: 0x00000000  ebp: 0xbfffcf18  esp: 0xbfffced0
       ss: 0x0000001f  efl: 0x00010287  eip: 0x95209440   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -     0x1fff +com.adobe.Reader 10.1.0 (10.1.0) <C103209A-BE79-55CF-8297-9635C3F28BFD> /Applications/Adobe Reader.app/Contents/MacOS/AdobeReader
        0x6000 -  0x16f6ff7 +com.adobe.Acrobat.framework 10.1.0 (10.1.0) <B3A2F0C5-6AAF-C7F4-2D67-804B86FC7FAC> /Applications/Adobe Reader.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x1920000 -  0x1a41fff +AdobeACE ??? (???) <8764F712-6333-8E08-EDF7-4414F1A9CE1C> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1a64000 -  0x2029feb +AdobeAGM ??? (???) <7A72C679-CC12-2C8A-717C-C595E294E688> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x20dc000 -  0x20f9ff7 +AdobeBIB ??? (???) <83F5EE67-C9F9-DC7C-681B-F2EEA04DD6D1> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x2100000 -  0x2424fe3 +com.adobe.CoolType AdobeCoolType 5.08.106.1 (5.08.106.1) <DFA9738F-6A52-52AC-4455-098271C8F0E1> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x15300000 - 0x154f7feb +com.adobe.Acrobat.adm 10.1.0 (10.1.0) <8A8094B3-FEB9-ABF1-ED78-8B041CE5A4E1> /Applications/Adobe Reader.app/Contents/Frameworks/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0x15630000 - 0x1568ffe7 +AcroSQLite ??? (???) <5C62F963-9742-B74F-CC84-E734E1DC7610> /Applications/Adobe Reader.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0x19a7f000 - 0x19aa3fe7  GLRendererFloat ??? (???) <0C6A1BCF-97F0-F7D6-C840-2991681BB67C> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x19adc000 - 0x19ae4ff7  com.apple.qldisplay.PDF 2.3 (327.6) <9026F23B-3D1B-DDC4-D863-A8A833FE2973> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/Resources/DisplayBundles/PDF.qldisplay/Contents/MacOS/PDF
    0x19e60000 - 0x1a066feb +com.adobe.AcrobatPlugin.EScript 10.1.0 (10.1.0) <B30B6091-2C3D-897F-D860-A1D975AA0E3A> /Applications/Adobe Reader.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0x1b6c2000 - 0x1b83afe7  GLEngine ??? (???) <0E1DF3E4-0EEE-9FD8-8F52-FFFCF0DF23A7> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1b86c000 - 0x1bc6affb  com.apple.ATIRadeonX2000GLDriver 1.6.26 (6.2.6) <496702B6-1B8D-0FCE-E3DB-707FFA7D5EE0> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
    0x1bc9a000 - 0x1bcf7fff +AdobeXMP ??? (???) <E3A59E8C-A514-8A4A-F965-E9C043C7AC96> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x1c861000 - 0x1c887ffb +AdobeBIBUtils ??? (???) <B9888BEE-A939-50E3-1CD3-3313AC14A073> /Applications/Adobe Reader.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x1cc2f000 - 0x1d2bbff3 +com.adobe.AcrobatPlugin.Comments 10.1.0 (10.1.0) <60934D21-72D2-1CBD-064F-03C3F953B262> /Applications/Adobe Reader.app/Contents/Built-in/Comments.acroplugin/Contents/MacOS/Comments
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <28F0312C-0678-159E-34E2-9A4E3DEADB20> /usr/lib/dyld
    0x90003000 - 0x9009bfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9009c000 - 0x9014aff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x9014b000 - 0x9032dfff  com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x90484000 - 0x9049cff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9049d000 - 0x9049dff7  com.apple.Carbon 150 (152) <BD34A993-AF6F-10EE-ACDA-6D11E21A8F37> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9049e000 - 0x904a0ff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x904da000 - 0x904e4ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x904e5000 - 0x90582fe3  com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x90583000 - 0x905c7ff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x905c8000 - 0x9065afe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x9067d000 - 0x90682ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x90683000 - 0x9069ffe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x906a0000 - 0x90e8f557  com.apple.CoreGraphics 1.545.0 (???) <8A4CB0D9-1001-0F62-4DA4-B8AB3B45E226> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x90e90000 - 0x90ec1ff7  libGLImage.dylib ??? (???) <1AF72191-087A-5D75-B3B9-3F537315F635> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x90ec2000 - 0x90f09ffb  com.apple.CoreMediaIOServices 134.0 (1160) <4CD78557-3CDA-A4B5-33CB-BBB876B4463D> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
    0x90f0a000 - 0x90f2afe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x90f32000 - 0x91252ff3  com.apple.CoreServices.CarbonCore 861.34 (861.34) <3DA9098F-B71B-4BDE-5DE5-4B76C49158EB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x912cc000 - 0x916e2ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x916e3000 - 0x91826fef  com.apple.QTKit 7.6.6 (1756.15) <32C49374-14BC-53E7-FBFF-E11B42A41F56> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91827000 - 0x91842ff7  libPng.dylib ??? (???) <65E824F7-523A-CC34-ABDD-2A3B12DE1CA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x91843000 - 0x9184bff7  com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x9184c000 - 0x9188eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9188f000 - 0x9189bff7  libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x9189c000 - 0x918d5ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <90C5DE81-1BEF-D807-A898-0FC19BDD14EC> /usr/lib/libcups.2.dylib
    0x918d6000 - 0x918d8ff7  libRadiance.dylib ??? (???) <B83179D4-E41C-D2BA-1E4C-A64CB45C15E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x918d9000 - 0x91916ff7  com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9191d000 - 0x91923ff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <218EC7C4-0520-2D8C-62EE-AA82D35448FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x91924000 - 0x91934ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
    0x91935000 - 0x91942ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91943000 - 0x919bcff7  com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x919bd000 - 0x919c8ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <4560936D-7730-5DD2-BFD7-95270DDC210A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x91b72000 - 0x91b76ff7  libGFXShared.dylib ??? (???) <4F2199F0-320F-0B59-0380-D3131D644CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x92acb000 - 0x92b06feb  libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x92b20000 - 0x92c22fef  com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
    0x92c30000 - 0x92c73ff7  libGLU.dylib ??? (???) <2C7B2727-26F6-F29D-9D15-33044E87359F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92c74000 - 0x92e72ff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92e73000 - 0x92e85ff7  com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x92e91000 - 0x92ec7fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x92ec8000 - 0x92ed8ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x92ed9000 - 0x92f2fff7  com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime. framework/Versions/A/MeshKitRuntime
    0x92f30000 - 0x92f33ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B84D7376-EE9C-2B7F-04FA-D622E2C10CA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x92f39000 - 0x92fe6fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x92fe7000 - 0x93115fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9323b000 - 0x9323fff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x93240000 - 0x9334ffe7  com.apple.WebKit 6533.21 (6533.21.1) <4FBCE2F9-84EB-302C-FD1F-DAD2422A219E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93350000 - 0x933a1ff7  com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x933a2000 - 0x933caff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x933cb000 - 0x93448ff7  com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <3B7F5895-B48D-A2E0-D708-58EC58EB9514> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowse r
    0x936d7000 - 0x936d7ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936d8000 - 0x93b0fff3  com.apple.RawCamera.bundle 3.6.4 (561) <DBA5D7C1-CD82-CE7F-5AE5-A0E4E128236F> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x93b10000 - 0x93c14fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x93c15000 - 0x93c3fff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93c40000 - 0x94693ff7  com.apple.WebCore 6533.21 (6533.21.1) <09CE6602-4DB5-6E93-8593-4E1C57CB202F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x947f7000 - 0x94879ffb  SecurityFoundation ??? (???) <006B3166-E7E2-F763-04FC-3DD458C14F5F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9487d000 - 0x94ba1fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x94ba2000 - 0x94bc8ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x94bc9000 - 0x94ccafe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x94ccb000 - 0x94ccbff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94ccc000 - 0x94ccdff7  com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x94cce000 - 0x94cdfff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x94cf9000 - 0x94cfcfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x94cfd000 - 0x94d00ffb  com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x94d01000 - 0x94d6fff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x94d70000 - 0x94da3ff7  com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x94da4000 - 0x94f5efeb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <C96F11A7-2569-3037-C4C3-0342708FA3CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x94f5f000 - 0x94f73ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x94f74000 - 0x94f9bff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x94f9c000 - 0x95046fe7  com.apple.CFNetwork 454.11.12 (454.11.12) <BE832CCE-B692-F55F-F5F8-3973649AFEA1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x951bb000 - 0x951feff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x951ff000 - 0x9537afe7  com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95385000 - 0x95385ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x955cf000 - 0x9560cff7  com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x9560d000 - 0x95677fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x959b5000 - 0x95a50ff7  com.apple.ApplicationServices.ATS 275.15.1 (???) <FD63F92B-8DDE-4DBA-A7A5-0294E3607083> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x95a51000 - 0x95b7dffb  com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x95b7e000 - 0x95b82ff7  libGIF.dylib ??? (???) <447BC6E8-4C56-3D5D-983B-6BEA0D26F319> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x95bbc000 - 0x95c2bff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x95d70000 - 0x95f17ff7  libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    0x95ff5000 - 0x95ff6ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x96075000 - 0x9607bfe7  com.apple.CommerceCore 1.0 (9) <928FCA4F-1366-AE18-CF67-87C79F5DAC21> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x9607c000 - 0x96135fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x96136000 - 0x96144fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x96145000 - 0x9614cff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x9614d000 - 0x9614dff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x9614e000 - 0x9617eff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x96251000 - 0x962a9fe7  com.apple.datadetectorscore 2.0 (80.7) <58C659CA-72CC-31D2-9732-09BF1A0CAAF6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x962aa000 - 0x962cbfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x962cc000 - 0x9644efe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D375C1CF-C88D-C5F6-3C49-CD429023FBAC> /usr/lib/libicucore.A.dylib
    0x9644f000 - 0x96450ff7  com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <253E9552-5CEA-0D5A-1EDA-3B8F669B79EA> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x964ac000 - 0x964afff7  libCoreVMClient.dylib ??? (???) <12EF6056-7AC7-6691-75A2-BD0675C56A35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x964b0000 - 0x964d4ff7  libJPEG.dylib ??? (???) <A50127EB-C202-0436-E62D-41E2E893E436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x9660d000 - 0x96749ff7  com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <781018FB-474B-E09C-D419-5BFF80590A10> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9674a000 - 0x9678efe7  com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x967a3000 - 0x967acff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x967ad000 - 0x967adff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x96865000 - 0x96945fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x969f0000 - 0x96acaffb  com.apple.DesktopServices 1.5.10 (1.5.10) <2BA08DD4-35A2-A0FF-ADEA-B381F0CEEB81> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x96acb000 - 0x96b96fef  com.apple.CoreServices.OSServices 359 (359) <EC340F74-8192-C9DD-40B3-AE4E519A38D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x96baa000 - 0x9748aff7  com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97499000 - 0x97804ff7  com.apple.QuartzCore 1.6.3 (227.36) <8E927524-EB0A-D5BA-C2E4-FA26FE4C428A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97805000 - 0x97885feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9788b000 - 0x97afefe7  com.apple.Foundation 6.6.6 (751.53) <C73FDD37-000B-C505-FD8D-80D1C9D17965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x97aff000 - 0x97b32ff3  libTrueTypeScaler.dylib ??? (???) <E5E16584-870F-CBCD-F861-3BB45324DE16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x97b3b000 - 0x97f70ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x97f7f000 - 0x97fd9fe7  com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x98020000 - 0x981fcfe7  libType1Scaler.dylib ??? (???) <CB930F73-3CD3-BF41-645B-470660F57FF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x981fd000 - 0x981fdff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x981fe000 - 0x982b4ffb  libFontParser.dylib ??? (???) <D85C1840-0FA8-27A2-54B7-FF336099EBC0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x982bf000 - 0x982e1fef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x982e2000 - 0x982edff7  libGL.dylib ??? (???) <4425B9AA-B494-A336-EABB-6BBC9FF4EC4F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x982ee000 - 0x98553feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x985a2000 - 0x9864affb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9864b000 - 0x98691ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x98692000 - 0x986efff7  com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x986f0000 - 0x98751fe7  com.apple.CoreText 3.151.8 (???) <6F5D6C49-4693-B9B7-6612-832E8F155747> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x9877d000 - 0x987e1ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x98857000 - 0x98857ff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9899a000 - 0x989affff  com.apple.ImageCapture 6.0.2 (6.0.2) <E9F4B952-27A1-5BFC-CA8D-DADA055D30E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x989b0000 - 0x98bdbff3  com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x98bdc000 - 0x98c25fe7  libTIFF.dylib ??? (???) <5CE284EC-F637-EDBB-FDB3-61E86407CBB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x98c32000 - 0x98d3eff7  libGLProgrammability.dylib ??? (???) <2D172B4E-432F-D18E-EA99-3BD56DBE7649> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x98d6b000 - 0x98dacff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <95079B56-0B7B-F114-5C43-5220DBE0FBB1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x98dee000 - 0x98eaafff  com.apple.ColorSync 4.6.6 (4.6.6) <D00B95AE-2379-CB8E-B18C-FF5B66741C23> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x98eab000 - 0x98f25fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98fba000 - 0x98ffaff7  com.apple.ImageCaptureCore 1.0.4 (1.0.4) <CE815114-CEFA-4AF4-7365-7908428AB733> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x9906a000 - 0x9907efe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9907f000 - 0x9908dff7  com.apple.opengl 1.6.12 (1.6.12) <81AEF74E-E33A-B021-9CDB-6199104105FF> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9913f000 - 0x99149fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9914a000 - 0x99443fef  com.apple.QuickTime 7.6.6 (1756.15) <C2567783-4EAC-6803-522B-D701B95C4DAE> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99444000 - 0x9944afff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9944b000 - 0x9949bff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9949c000 - 0x99517fff  com.apple.AppleVAFramework 4.10.23 (4.10.23) <57B7C626-F344-AB15-8556-00425FA765DE> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x99518000 - 0x99556ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x99557000 - 0x99576ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9957f000 - 0x9957fff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x99580000 - 0x99a39ffb  com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x99a3a000 - 0x99a87feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x99ac0000 - 0x99acaff7  com.apple.HelpData 2.0.5 (34.1.1) <A9CF754F-B254-5D40-B8B5-F35414DFD875> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <ADF8138B-2384-2FC0-CCBF-C4721B53568A> /usr/lib/libSystem.B.dylib
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.06 GHz, 4 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: SAMSUNG HD502HJ, 465.76 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd110000
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0xfa111000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa120000
    Printing as image:
    Process:         AdobeReader [3814]
    Path:            /Applications/Adobe Reader.app/Contents/MacOS/AdobeReader
    Identifier:      com.adobe.Reader
    Version:         10.1.0 (10.1.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-06-18 22:29:49.584 -0500
    OS Version:      Mac OS X 10.6.7 (10J869)
    Report Version:  6
    Interval Since Last Report:          834604 sec
    Crashes Since Last Report:           4
    Per-App Interval Since Last Report:  534 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      A53C6811-1170-42FB-B252-FDD6EF1FC1AD
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation      0x95209440 CFURLCopyAbsoluteURL + 48
    1   com.apple.CoreFoundation      0x95254624 _CFFindBundleResources + 740
    2   com.apple.CoreFoundation      0x952510f3 CFBundleCopyResourceURL + 147
    3   com.apple.CoreFoundation      0x95261526 CFBundleCopyLocalizedString + 694
    4   ...e.print.framework.PrintCore 0x905e6fcd OpaquePMPaper::CreateLocalizedPaperName(OpaquePMPrinter*) + 355
    5   ...e.print.framework.PrintCore 0x905e9e7a PMPaperCreateLocalizedName + 202
    6   AdobeAGM                      0x01c863d7 AGMTerminate + 1732436
    7   AdobeAGM                      0x01bd463b AGMTerminate + 1003960
    8   AdobeAGM                      0x01bd4bbe AGMTerminate + 1005371
    9   AdobeAGM                      0x01bd4dec AGMTerminate + 1005929
    10  AdobeAGM                      0x01c19a80 AGMTerminate + 1287677
    11  AdobeAGM                      0x01c0e729 AGMTerminate + 1241766
    12  AdobeAGM                      0x01c090a3 AGMTerminate + 1219616
    13  AdobeAGM                      0x01c00114 AGMTerminate + 1182865
    14  AdobeAGM                      0x01c00830 AGMTerminate + 1184685
    15  AdobeAGM                      0x01af9388 AGMTerminate + 106245
    16  AdobeAGM                      0x01af9bf2 AGMTerminate + 108399
    17  com.adobe.Acrobat.framework   0x00d30066 AcroSecurityBailOutImpl + 11089619
    18  com.adobe.Acrobat.framework   0x00ca1583 AcroSecurityBailOutImpl + 10505200
    19  com.adobe.Acrobat.framework   0x00ca3230 AcroSecurityBailOutImpl + 10512541
    20  com.adobe.Acrobat.framework   0x0028b82d RunAcrobatInBrowser + 151284
    21  com.adobe.Acrobat.framework   0x0028bc47 RunAcrobatInBrowser + 152334
    22  com.adobe.Acrobat.framework   0x0028bfe2 RunAcrobatInBrowser + 153257
    23  com.adobe.Acrobat.framework   0x0028c0fe RunAcrobatInBrowser + 153541
    24  com.adobe.Acrobat.framework   0x00505404 AcroSecurityBailOutImpl + 2525809
    25  com.adobe.Acrobat.framework   0x004657cc AcroSecurityBailOutImpl + 1871417
    26  com.adobe.Acrobat.framework   0x0067ee8b AcroSecurityBailOutImpl + 4072696
    27  com.adobe.Acrobat.framework   0x004925d2 AcroSecurityBailOutImpl + 2055231
    28  com.adobe.Acrobat.framework   0x00492718 AcroSecurityBailOutImpl + 2055557
    29  com.adobe.Acrobat.framework   0x0088eaac AcroSecurityBailOutImpl + 6234393
    30  com.adobe.Acrobat.framework   0x0088e85c AcroSecurityBailOutImpl + 6233801
    31  com.adobe.Acrobat.framework   0x00242a4e RunAcrobat + 2291709
    32  com.apple.AppKit              0x96c30c46 -[NSApplication sendAction:to:from:] + 112
    33  com.apple.AppKit              0x96c30af9 -[NSMenuItem _corePerformAction] + 435
    34  com.apple.AppKit              0x96c307eb -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    35  com.apple.AppKit              0x96c306da -[NSMenu performActionForItemAtIndex:] + 65
    36  com.apple.AppKit              0x96c3068d -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    37  com.apple.AppKit              0x96c305f3 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    38  com.apple.AppKit              0x96c30537 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    39  com.apple.AppKit              0x96c24c61 NSSLMMenuEventHandler + 404
    40  com.apple.HIToolbox           0x94884c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    41  com.apple.HIToolbox           0x94883ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    42  com.apple.HIToolbox           0x948a67f3 SendEventToEventTarget + 52
    43  com.apple.HIToolbox           0x948d2e87 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    44  com.apple.HIToolbox           0x948f7b90 SendMenuCommandWithContextAndModifiers + 66
    45  com.apple.HIToolbox           0x948f7b47 SendMenuItemSelectedEvent + 121
    46  com.apple.HIToolbox           0x948f7a5d FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    47  com.apple.HIToolbox           0x948c7160 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 454
    48  com.apple.HIToolbox           0x948c68bb _HandleMenuSelection2 + 465
    49  com.apple.HIToolbox           0x948c66d9 _HandleMenuSelection + 53
    50  com.apple.AppKit              0x96c1e1a2 _NSHandleCarbonMenuEvent + 285
    51  com.apple.AppKit              0x96bf2d3e _DPSNextEvent + 2304
    52  com.apple.AppKit              0x96bf1fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    53  com.apple.AppKit              0x96bb4247 -[NSApplication run] + 821
    54  com.adobe.Acrobat.framework   0x000149d5 RunAcrobat + 6020
    55  com.adobe.Acrobat.framework   0x0001338d RunAcrobat + 316
    56  com.adobe.Reader              0x00001e92 main + 94
    57  com.adobe.Reader              0x00001e16 start + 54
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x95d97922 kevent + 10
    1   libSystem.B.dylib             0x95d9803c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x95d974f9 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x95d9729e _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x95d96d21 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x95d96b66 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   ...ple.CoreServices.CarbonCore 0x90f8d48e TSWaitOnCondition + 126
    4   ...ple.CoreServices.CarbonCore 0x90f78e15 TSWaitOnConditionTimedRelative + 202
    5   ...ple.CoreServices.CarbonCore 0x90f747e3 MPWaitOnQueue + 250
    6   AdobeACE                      0x01922737 ACEInitialize + 3741
    7   AdobeACE                      0x019226ad ACEInitialize + 3603
    8   ...ple.CoreServices.CarbonCore 0x90f587ca PrivateMPEntryPoint + 68
    9   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    10  libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x95d9f046 __semwait_signal + 10
    1   libSystem.B.dylib             0x95d9ed02 _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x95da0998 pthread_cond_wait$UNIX2003 + 73
    3   AdobeAGM                      0x01a6f79c AGMInitialize + 33770
    4   AdobeAGM                      0x01a6f6d6 AGMInitialize + 33572
    5   AdobeAGM                      0x01a6f231 AGMInitialize + 32383
    6   libSystem.B.dylib             0x95d9e7fd _pthread_start + 345
    7   libSystem.B.dylib             0x95d9e682 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x95

    First of all, it is important to remember that "sometimes, things happen" to computers, and that a problem that you are experiencing may be a unique set of circumstances, and not necessarily a defect in the software.
    1. Is your printer driver up-to-date? If you create another printer queue for a Generic PostScript Printer, does the problem still occur?
    2. Create a brand new user account and test the problem there. If printing works, then the cause of the problem is something inside your original user account, like a preference file or a cache. Use a utility like Onyx to clear cache files and test removing any preference files in <user>/LibraryPreferences that seem relevant to printing. Remove the preference to the Desktop. If the problem persists, replace the preference file. If it goes away, trash it. Note that you may need to restart after removing a pref file.
    3. Reset the Printing System. In System Preferences > Print & Fax, right click on the list of printers. There will be a menu command "Reset Printing System". Note that this will delete all your print queues, and you will need to add them again.
    4. Is there a crash with every document? Try changing some of the print menu options. Any reason that you are printing as an image? Try not doing that.
    5. There doesn't seem to be anything reported in the crash logs, but do you have any third-party software that runs at startup, or in the background? Very often these things can interfere with many processes.

  • Help with hp 7520 wireless printer does not recognize black photo ink

    brand new 7520 hp photosmart wireless printer . i set it up put in all set up ink cartridges correctly. machine says missing cartridge shows photo of black photo ink . this machine is not recognizing the ink. i heard it snap in and i see it but this wireless photosmart 7520 wireless printer is not smart enough to recognize its own set up photo black ink ive tried everything i even went to staples and purchased a new  photo black ink. put it in and again it states that it is missing. any suggestions before i throw it in the trash where a stupid machine belongs many thanks

    Hello @notrevo157,
    Welcome to the HP Support Forums! I see you are setting up your HP Photosmart 7520 and it is not recognizing the Black setup cartridge. You have tried replacing the cartridge with no success.
    I would like you to start troubleshooting here: Ink Cartridge Problem: An 'Ink Cartridge Problem,' 'Incompatible Ink Cartridge,' or 'Ink Cartridge F..., I understand you may not be getting this exact error message however these are the steps I would like you to do to try and resolve the issue you are experiencing.
    If after the troubleshooting you are still experiencing the issue, I would call our technical support at 800-474-6836 as you may need the setup cartridge replaced. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    I hope this helps!
    Thanks,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Help with uploading an excel file to a table using an application

    Hello,
    Can anyone please help me out with this issue. I have apex application where in the end users upload an excel file to a table. For this I have followed the solution provided in this link
    http://avdeo.com/2008/05/21/uploading-excel-sheet-using-oracle-application-express-apex/
    Using the above solution, I was able to upload the excel data to a table "sample_tbl1" successfully with fields Id,acct_no,owner_name,process_dt. But the thing is I want accomdate a particular condition while uploading the file data, to check see if the acct_no already exists in another table say "sample_tbl2" or not. If acct_nos already exists in sample_tbl2 then give out an error displaying the list of account numbers that already exists in the database. Below is the code which I am using to upload file data to a table.
    DECLARE
    v_blob_data       BLOB; 
    v_blob_len        NUMBER; 
    v_position        NUMBER; 
    v_raw_chunk       RAW(10000); 
    v_char            CHAR(1); 
    c_chunk_len       number       := 1; 
    v_line            VARCHAR2 (32767)        := NULL; 
    v_data_array      wwv_flow_global.vc_arr2; 
    v_rows            number; 
    v_sr_no           number         := 1; 
    l_cnt             BINARY_INTEGER := 0;
    l_stepid          NUMBER := 10;
    BEGIN
    --Read data from wwv_flow_files</span> 
    select blob_content into v_blob_data 
    from wwv_flow_files 
    where last_updated = (select max(last_updated) from wwv_flow_files where UPDATED_BY = :APP_USER) 
    and id = (select max(id) from wwv_flow_files where updated_by = :APP_USER); 
    v_blob_len := dbms_lob.getlength(v_blob_data); 
    v_position := 1; 
    /* Evaluate and skip first line of data
    WHILE (v_position <= v_blob_len ) LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char :=  chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    -- Clear out 
    v_line := NULL;
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char</span> 
    WHILE ( v_position <= v_blob_len ) LOOP 
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position); 
    v_char :=  chr(hex_to_decimal(rawtohex(v_raw_chunk))); 
    v_line := v_line || v_char; 
    v_position := v_position + c_chunk_len; 
    -- When a whole line is retrieved </span> 
    IF v_char = CHR(10) THEN
    -- Convert comma to : to use wwv_flow_utilities </span> 
    v_line := REPLACE (v_line, ',', ':'); 
    -- Convert each column separated by : into array of data </span> 
    v_data_array := wwv_flow_utilities.string_to_table (v_line); 
    -- Insert data into target table
    EXECUTE IMMEDIATE 'insert into sample_tbl1(ID,ACCT_NO,OWNER_NAME,PROCESS_DT) 
    values (:1,:2,:3,:4)'
    USING 
    v_sr_no, 
    v_data_array(1), 
    v_data_array(2),
    to_date(v_data_array(3),'MM/DD/YYYY');
    -- Clear out 
    v_line := NULL; 
    v_sr_no := v_sr_no + 1; 
    l_cnt := l_cnt + SQL%ROWCOUNT;
    END IF; 
    END LOOP;
    delete from wwv_flow_files
    where last_updated = (select max(last_updated) from wwv_flow_files where UPDATED_BY = :APP_USER)
    and id = (select max(id) from wwv_flow_files where updated_by = :APP_USER);
    l_stepid  := 20;
    IF l_cnt = 0 THEN
    apex_application.g_print_success_message := apex_application.g_print_success_message || '<p><span style="font-size:14;font-weight:bold">Please select a file to upload.</span></p>' ;
    ELSE
    apex_application.g_print_success_message := apex_application.g_print_success_message || '<p><span style="font-size:14;font-weight:bold;color:green">File uploaded and processed ' || l_cnt || ' record(s) successfully.</span></p>';
    END IF;
    l_stepid  := 30;
    EXCEPTION WHEN OTHERS THEN
    ROLLBACK;
    apex_application.g_print_success_message := apex_application.g_print_success_message || '<p><span style="font-size:14;font-weight:bold;color:red">Failed to upload the file. '||REGEXP_REPLACE(SQLERRM,'[('')(<)(>)(,)(;)(:)(")('')]{1,}', '') ||'</span></p>';
    END;
    {code}
    Can anyone please help me, how do i accomdate the condition within my existing code.
    thanks,
    Orton                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Orton,
    From your code it appears that the account No comes in the second column of the file = > v_data_array(1)
    So You can put a conditional block around the execute immediate code that inserts the records
    For instance
      SELECT count(1) INTO ln_account_no_exists from <"sample_tbl2> where account_no = v_data_array(1);
      IF (  ln_account_no_exists > 0 ) THEN
         --Account No: already exists
        <Do what you want to do here >
      ELSE
        EXECUTE IMMEDIATE ...
      END IF:
    {code}
    Inorder to handle the account no records which exists you can
      <li>Raise an exception
      <li> Write record to table or insert into collection and then use a report region in the page based on this table/collection to show error records
      <li> Append errored account No:s to the Success Message Variable programmatically(this variable is used by PLSQL process success/error message )
       {code}
        IF ( record exists)
          apex_application.g_print_success_message := apex_application.g_print_success_message||','|| v_data_array(1) ; -- Comma separated list of errored account no:s
        ELSE ...
       {code}
    Hope it helps                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Please help with highest quality export settings...

    I have searched the forum and web for hours (no joke!) and I am still trying to figure out what are the best video settings to give me the highest HD quality video in daylight. I am using a Canon HF200 and the latest updated version of FCE. My problem is that I am unable to produce an HD quality video at 1920 x 1080 Full HD without being "jagged". I have two questions; what do you suggest to be the best FCE import and export settings to produce the best HD video, and what settings do you have your HF200 set to (for normal daylight conditions), to produce the best HD video file? The file will be played directly thru my computer to a plasma HDTV.
    I have tried several settings, but using anything above 1280x720 16:9, makes the video "jagged". Again, I don't care about the size of the file or how long it takes, I just want the best. Is there something I am missing?
    My FCP settings are the following:
    I log and transfer the video from the camera into FCP (on a black MacBook; 2.16 GHz with 4 GB RAM) using the AVCHD Apple Intermediate Codec 1920 x 1080i source. I then export the video using the following:
    Export using "Quicktime Conversion".
    Quicktime options video settings are:
    Frame Rate set to "Current"
    Key Frames set to every "24" frames
    Compressor quality: "best" (Encoding set to "best quality")
    Data Rate set to "automatic"
    Quicktime options video size are:
    "HD 1280 x 720 16:9" (anything higher produces the jags!)
    Deinterlace source video is NOT checked
    My Canon HF 200 settings are the following:
    - P mode
    - FXP (17 Mbps)
    - 60i framerate
    all others are set to the normal default
    I have read some reports saying the above is good and others suggesting changing FXP to MXP (24 Mbps) and/or the framerate from 60i to PF30. I don't care about the size of the file, I just want the highest quality HD file.
    Any suggestions for the best FCE settings and/or HF200 settings would be very much appreciated!
    Thanks for your help,
    Evan

    Thanks again for the feedback
    Let me try my best to answer the above (I'm new at all this and I appreciate you guys taking the time to try and help me out).
    First off, I tried rendering and that did not help.
    Here is my sequence. I am not going into FCE from the camera directly. I have archived the video file from the camera using iMovie (as well as just making an exact copy of the camera files; they both appear to me to be the exact same, both can be logged and transferred into FCE, and both files give me a jagged FCE result).
    Once I log and transfer the file(s), I then take the clip and add it to a sequence file (rendering or not rendering the clip(s) at this point does not make a difference), and then click/highlight the sequence file in the browser and export it.
    As for "editing the video in a 1920x1080i60 sequence", I think I am. I am not doing any editing to the clip. It is logged and transferred using the AVCHD Apple Intermediate Codec 1920 x 1080i and then exported using either as a Quicktime Movie or Quicktime Conversion (set for 1920 x 1080 using H.264 compression; both ways still result in a jagged video).
    That's about it...log and transfer, add clip to sequence, and then export sequence...
    I hope this answers the above, but if not, I apologize; I'm still learning!
    Also, if I use iMovie, with similar export (share) settings, I get a non-jagged video (I have tried with deinterlacing and not deinterlacing, and both video results are fine)
    Thanks again,
    Evan

  • Novice , need help with upload error

    My original hosting company went south and not all my files
    were backed up..., but one application i'm having trouble with on
    the new server and I can't identifing the cause of the error.. this
    is the error.. don't know if i'm missing a script or something else
    Note: It uploads the primary images but fails to write a path
    or upload the thumb images...
    Please helpppppppppp
    and this is the code ...I have been using..
    <!--- <cffile
    destination="#trim(APPLICATION.config.pathtoimage)#"
    action="upload" nameconflict="makeunique" filefield="photo"
    accept="image/*" attributes="archive"> --->
    <cfif form.photo1 NEQ "" OR form.photo2 NEQ "" OR
    form.photo3 NEQ "" OR form.photo4 NEQ ""></cfif>
    <!--- new file upload process for multiple file uploads
    --->
    <cfif isDefined("Form.Photo")>
    <cfif CGI.HTTP_HOST EQ "192.168.1.103:88">
    <cfset uploaddir =
    "C:\Websites\121899ba6\properties\upload\">
    <cfset thumbdir =
    "C:\Websites\121899ba6\properties\upload\thumbnails\">
    <cfelse>
    <cfset uploaddir =
    #trim(APPLICATION.config.pathtoimage)#>
    <cfset thumbdir = #trim(APPLICATION.config.pathtoimage)#
    & "thumbnails\">
    </cfif>
    <cf_FileUpload
    directory="#uploaddir#"
    weight="100,100,100,100,100,100,100,100"
    nameofimages="photo1,photo2,photo3,photo4,photo5,photo6,photo7,photo8"
    nameConflict="overwrite"
    accept="image/*"
    default="na">
    <!--- <cf_FileUpload
    directory="#curDirectory#"
    weight="5,3"
    nameofimages="image,image2"
    nameConflict="overwrite"
    accept="image/gif"
    default="na"> --->
    <cfif request.filesaved eq "Yes">
    <!--- cleanup result list --->
    <cfset tmpCount = 0>
    <cfset tmpNewList = "">
    <cfloop list="#request.result#" index="currImage">
    <cfset tmpCount = IncrementValue(tmpCount)>
    <cfif ListGetAt(request.result, tmpCount) neq "na">
    <cfset tmpNewList = ListAppend(tmpNewList, currImage)>
    </cfif>
    </cfloop>
    <cfset photolist = ListAppend(form.photo,tmpNewList)>
    <cfquery datasource="#request.dsn#"
    username="#request.user#" password="#request.pass#"
    name="updatebook">
    update adinfo
    set
    photo = '#photolist#'
    where adinfoid = #trim(val(form.adinfoid))#
    </cfquery>
    <!--- create the thumbnails now --->
    <cfloop list="#tmpnewlist#" index="currImage">
    <CFX_IMAGE ACTION="RESIZE"
    FILE="#uploaddir##currImage#"
    OUTPUT="#thumbdir##currImage#"
    QUALITY="100"
    WIDTH="100">
    </cfloop>
    <!--- if the image file was not saved --->
    <cfelse>
    <CFINCLUDE template="skeleton.cfm">

    first thing that comes to mind: custom tag not
    installed/mapped to.
    make sure the custom tag cf_FileUpload is installed on your
    new host or
    that the new host has set up cutom tag mapping to the folder
    in your
    site where this custom tag is located.
    second: you have a hard-coded IP address in there - make sure
    it is
    valid in your current hosting environment
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

Maybe you are looking for

  • How do i set a peer to peer network between my iMac and windows machines?

    I want to set up a peer to peer network between my iMac and Windows based computers in my house.  I also want it to a wireless set up.  Mostly being done to share videos, pictures, and music. Any insight would be appreciated.

  • Help needed in a Query

    I have a table TAB that has two colums. COL1 and COL2. Both are composite Primary key. The data is as COL1 COL2 1 C 2 C 3 C 4 G 5 G 1 G 3 G 6 G 7 G I need to find out those COL1 values whose COL2 values are C and G. Ex COL1 COL2 1 C 3 C 1 G 3 G So i

  • IMac Duo shuts down when trying to encode a DVD for burning.

    Last night my Imac Duo 17" with one GB of memory shut down and wouldn't eject a DVD after encoding and burning a DVD with iDVD. The upper LEFT hand corner of the iMac was very hot to the touch. I checked the temperature with CoreDuoTemp before it shu

  • JBO-30003: The application pool - Failed to checkout Attn: Stegeman

    Hello: We have a jspx that has a table view based on a database table. The same jspx has another table view on it that is the detail view (child) of a master-detail table. This master is not the table mentioned above. When a "Create" button is clicke

  • ICS totally screwed up my phone

    <Discussion moved from Android to DROID BIONIC by Motorola for more exposure.> I need to know if there is anything I can do to fix my screwed up Bionic phone after the ICS update.  I think I already know there isn't anything, but I'll vent anyway in