Is there a setting while saving as a .pdf

so that'll it'll use the objects to determine the boundaries (like an eps) as opposed to the page size?

Aarmed,
For what it's worth, I don't get it either. You said nothing about wanting to import the PDF into InDesign. You just want to export a PDF with a page size that matches the artwork bounds.
The omission of such a setting in the Save As... PDF dialog is just like Illustrator's failure to provide a common-sense checkbox in its various export dialogs to simply export the selected content.
You can do this:
Rather than Save As...>PDF, select Print.
In the Print dialog, General pane, select Adobe PDF as the "printer." Set the Media size to Custom.
In the Setup pane's Crop Artwork To popup, select Artwork Bounding Box.
Click Print.
The resulting PDF will be cropped to artwork bounds.
If you have Acrobat installed, and it is your default PDF reader, and you have the View PDF After Saving option on in the Save PDF dialog, then the above digging is no less tedious than saving as PDF, letting Acrobat launch, going to Document>Crop Pages, and clicking the Remove White Margins checkbox.
Both methods are ridiculously tedious. Crop To Artwork and Seletion Only checkboxes should be present in all Illustrator's export dialogs. But then, it took Illustrator 20 years to finally acquire a Fit To Page checkbox in its Print dialog, too.
JET

Similar Messages

  • [Solved] Is there a workaround for saving an encrypted pdf?

    Hey guys, I've come into a bit of a quandry.  I needed to download a manual for my watch as I had lost the original.  As I have my system set up once I had downloaded the pdf my pdfviewer (epdfview) launched and I am able to read the manual.  However, I'd like to be able to save it for a later time.  When I go to 'File > Save a Copy' I get 'Error Saving File Document is encrypted'.  I have no idea why a manual would be encrypted but I am unable to save it.  If I try right-clicking on the browser and selecting "Save link as" it'll save it proper but when I double click it it asks for a password.  I suppose I could talk to tech support but figure that might take a while.
    Just to be sure that I'm legit heres the manuals download page.
    http://world.casio.com/wat/download/en/manual/
    Enter 3054 as the model number and try for yourself.
    Any idea on how I can get around this and have a copy of the manual?
    Last edited by Gen2ly (2010-11-08 07:00:53)

    Can you use "Print to File" or anything similar to that? (The GNOME print menu has a print to file menu using cairo or something like that; there's also a generic Cups PDF printer from the cups-pdf package in AUR.) If you can print the PDF, you can create a PDF identical to the one you're reading.
    This seems to work from stuff off that site.
    (But actually, for me, I could also save the file directly, and get something I could open in evince, mupdf and zathura just fine without a password. I didn't try ePDFReader. What does this this direct link do for you?)
    Last edited by frabjous (2010-11-08 04:51:54)

  • Skip "Print ALV list" pop up while saving ALV as PDF

    Dear experts,
    I am converting my ALV list into PDF.
    im using
    CONVERT_ABAPSPOOLJOB_2_PDF
    and
    GUI_DOWNLOAD
    But it pops up a screen asking the default printer. What parameters do i need to pass to CONVERT_ABAPSPOOLJOB_2_PDF so that I can skip the pop up?
    I have already tried passing --
    NO_DIALOG                      = 'X'
       DST_DEVICE                     = 'locl'
    Regards,
    Sumit.

    Hi Sumit,
    first use:-
    CALL FUNCTION 'RSPO_FIND_SPOOL_REQUESTS'
        EXPORTING
          allclients          = '320'
          datatype            = '*'
          has_output_requests = '*'
          rq0name             = nast-dsnam
          rq1name             = '*'
          rq2name             = '*'
          rqdest              = 'LOCL'
          rqowner             = sy-uname
        TABLES
          spoolrequests       = it_spool
        EXCEPTIONS
          no_permission       = 1
          OTHERS              = 2.
      IF sy-subrc <> 0.
        MESSAGE i000 DISPLAY LIKE 'E' WITH text-002.
        LEAVE LIST-PROCESSING.
      ENDIF.
    FORM convert_spool_to_pdf .
      READ TABLE it_spool INTO wa_spool INDEX 1.
      v_spoolno = wa_spool-rqident.
    *Get Spool request attributes
      SELECT SINGLE *
        FROM tsp01
        INTO tsp01
        WHERE rqident EQ v_spoolno.
      IF sy-subrc <> 0.
        MESSAGE i000 DISPLAY LIKE 'E'
                          WITH text-003 v_spoolno text-034.
        LEAVE LIST-PROCESSING.
      ENDIF.
      v_client = tsp01-rqclient.
      v_name   = tsp01-rqo1name.
      CALL FUNCTION 'RSTS_GET_ATTRIBUTES'
        EXPORTING
          authority     = 'SP01'
          client        = v_client
          name          = v_name
          part          = 1
        IMPORTING
          objtype       = v_objtype
        EXCEPTIONS
          fb_error      = 1
          fb_rsts_other = 2
          no_object     = 3
          no_permission = 4
          OTHERS        = 5.
      IF sy-subrc <> 0.
        MESSAGE i000(zz) DISPLAY LIKE 'E'
                           WITH text-003 v_spoolno text-034.
        LEAVE LIST-PROCESSING.
      ENDIF.
      IF v_objtype(3) EQ 'OTF'.
        CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = v_spoolno
            no_dialog                = ' '
          TABLES
            pdf                      = it_pdf
          EXCEPTIONS
            err_no_otf_spooljob      = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_dstdevice        = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11
            OTHERS                   = 12.
        IF sy-subrc <> 0.
        ENDIF.
      ELSE.
        CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
          EXPORTING
            src_spoolid              = v_spoolno
            no_dialog                = 'X'
          TABLES
            pdf                      = it_pdf
          EXCEPTIONS
            err_no_abap_spooljob     = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_destdevice       = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11
            OTHERS                   = 12.
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF.
    ENDFORM.                    " convert_spool_to_pdf

  • Aperture Crashing while saving Book as PDF

    I am working on making a book in aperture and am trying to print my book to a PDF using the save as pdf function. I am doing to this to share a draft with people helping me design the book. Aperture crashes after making it through most of the pages but usually hangs towards the final pages. I have tried building a new library, deleting the plist, deleting Aperture and reinstalling but nothing seems to help. Any ideas?
    Here is my crash report and system info
    Model: MacBookPro3,1, BootROM MBP31.0070.B02, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB
    Graphics: GeForce 8600M GT, GeForce 8600M GT, spdisplayspciedevice, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 2 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), 1.2.2
    Bluetooth: Version 2.0.0f20, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: ST9160823AS, 149.05 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E
    USB Device: Built-in iSight, Apple Inc., high_speed, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, full_speed, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., low_speed, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., full_speed, 500 mA
    Process: Aperture [449]
    Path: /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier: com.apple.Aperture
    Version: 1.5.6 (1.5.6)
    Build Info: Aperture-710231815~3
    Code Type: X86 (Native)
    Parent Process: launchd [81]
    Date/Time: 2008-01-12 17:49:53.692 -0800
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libSystem.B.dylib 0xffff08b7 __memcpy + 279
    1 com.apple.GeForce8xxxGLDriver 0x1249b481 gldAllocVertexBuffer + 24801
    2 com.apple.GeForce8xxxGLDriver 0x124984e9 gldAllocVertexBuffer + 12617
    3 GLEngine 0x1230ddd4 glReadPixels_Exec + 1972
    4 libCGXCoreImage.A.dylib 0x197a6e47 cgxcoreimageinstancewait + 513
    5 libRIP.A.dylib 0x922a147b ripc_CoreImageAccess + 52
    6 com.apple.CoreGraphics 0x904ad126 blt_imageinitialize + 2886
    7 com.apple.CoreGraphics 0x90503e98 ARGB32_image + 232
    8 libRIP.A.dylib 0x92294822 ripl_Mark + 38
    9 libRIP.A.dylib 0x92296cd1 ripl_BltImage + 1299
    10 libRIP.A.dylib 0x92280c25 ripc_RenderImage + 273
    11 libRIP.A.dylib 0x92288065 ripc_DrawShading + 8749
    12 com.apple.CoreGraphics 0x904eeb53 CGContextDrawShading + 100
    13 com.apple.QuartzCore 0x926c5ec7 -[CICGContextImpl render:] + 788
    14 com.apple.QuartzCore 0x926c5948 -[CIContext drawImage:inRect:fromRect:] + 1426
    15 com.apple.AppKit 0x93037f41 -[CIImage(NSAppKitAdditions) drawInRect:fromRect:operation:fraction:] + 228
    16 com.apple.Aperture 0x003f491a 0x1000 + 4143386
    17 com.apple.Aperture 0x001a77d8 0x1000 + 1730520
    18 com.apple.Aperture 0x0019f0d7 0x1000 + 1695959
    19 com.apple.Aperture 0x001b7a6e 0x1000 + 1796718
    20 com.apple.Aperture 0x001bc8bf 0x1000 + 1816767
    21 com.apple.Aperture 0x001b4924 0x1000 + 1784100
    22 com.apple.Aperture 0x00272a4c 0x1000 + 2562636
    23 com.apple.AppKit 0x92d31eb0 -[NSView _drawRect:clip:] + 3765
    24 com.apple.AppKit 0x92d30a44 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1050
    25 com.apple.AppKit 0x92d2f3a3 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 759
    26 com.apple.AppKit 0x92d2b814 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3090
    27 com.apple.AppKit 0x92dc0439 -[NSView displayIfNeededInRectIgnoringOpacity:] + 628
    28 com.apple.AppKit 0x92f14449 -[NSView(NSPrintingInternal) _renderCurrentPageForPrintOperation:] + 769
    29 com.apple.AppKit 0x92f9df4c -[NSView(NSPrintingInternal) _printForCurrentOperation] + 581
    30 com.apple.AppKit 0x92f9dc09 -[NSConcretePrintOperation _renderView] + 358
    31 com.apple.AppKit 0x92fe4613 -[NSConcretePrintOperation runOperation] + 362
    32 com.apple.Aperture 0x00110fb3 0x1000 + 1114035
    33 com.apple.Aperture 0x001109c1 0x1000 + 1112513
    34 com.apple.Aperture 0x001c36d3 0x1000 + 1844947
    35 com.apple.AppKit 0x92d3af94 -[NSApplication sendAction:to:from:] + 112
    36 com.apple.prokit 0x005ae70d -[NSProApplication sendAction:to:from:] + 124
    37 com.apple.Aperture 0x000101b1 0x1000 + 61873
    38 com.apple.AppKit 0x92d3aed4 -[NSControl sendAction:to:] + 108
    39 com.apple.AppKit 0x92d3ad5a -[NSCell _sendActionFrom:] + 169
    40 com.apple.AppKit 0x92d3a3bb -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1827
    41 com.apple.AppKit 0x92d39c12 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 541
    42 com.apple.prokit 0x005e9721 -[NSProButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 288
    43 com.apple.AppKit 0x92d394cc -[NSControl mouseDown:] + 888
    44 com.apple.AppKit 0x92d37d9b -[NSWindow sendEvent:] + 5362
    45 com.apple.prokit 0x005d1f17 -[NSProWindow sendEvent:] + 273
    46 com.apple.AppKit 0x92d04a2c -[NSApplication sendEvent:] + 2766
    47 com.apple.Aperture 0x0000f660 0x1000 + 58976
    48 com.apple.AppKit 0x92c62705 -[NSApplication run] + 847
    49 com.apple.prokit 0x005af271 NSProApplicationMain + 325
    50 com.apple.Aperture 0x00003106 0x1000 + 8454
    51 com.apple.Aperture 0x0000302d 0x1000 + 8237
    Thread 1:
    0 libSystem.B.dylib 0x90b13ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x90b3dced pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x91b74460 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x91b86d92 CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    5 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x90b13ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x90b3dced pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x93cb5f32 glvmDoWork + 162
    3 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    4 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x90b3c8e6 kevent + 10
    1 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    2 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x003d66c4 0x1000 + 4019908
    7 com.apple.Aperture 0x00164e72 0x1000 + 1457778
    8 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    9 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    11 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x003a642c 0x1000 + 3822636
    7 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    8 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    10 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x90b13ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x90b13896 usleep$UNIX2003 + 61
    2 com.apple.AppKit 0x92cd0122 -[NSUIHeartBeat _heartBeatThread:] + 2035
    3 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    4 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    6 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x003d66c4 0x1000 + 4019908
    7 com.apple.Aperture 0x001535cc 0x1000 + 1385932
    8 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    9 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    11 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x003d66c4 0x1000 + 4019908
    7 com.apple.Aperture 0x000916d3 0x1000 + 591571
    8 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    9 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    11 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x003d66c4 0x1000 + 4019908
    7 com.apple.Aperture 0x00091790 0x1000 + 591760
    8 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    9 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    11 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x000daf12 0x1000 + 892690
    7 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    8 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    10 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x000daf12 0x1000 + 892690
    7 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    8 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    10 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x000daf12 0x1000 + 892690
    7 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    8 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    10 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x000daf12 0x1000 + 892690
    7 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    8 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    10 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x000daf12 0x1000 + 892690
    7 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    8 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    10 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x003d66c4 0x1000 + 4019908
    7 com.apple.Aperture 0x0006bac7 0x1000 + 436935
    8 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    9 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    11 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x90d70d15 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.Aperture 0x003d66c4 0x1000 + 4019908
    7 com.apple.Aperture 0x00074c6f 0x1000 + 474223
    8 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    9 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    10 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    11 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x90b0ca06 machwaituntil + 10
    1 libSystem.B.dylib 0x90b83abf nanosleep + 314
    2 libSystem.B.dylib 0x90b94b7b sleep + 63
    3 com.apple.Aperture 0x000c15c8 0x1000 + 787912
    4 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    5 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    6 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    7 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x90d70f9c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90d70db0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Aperture 0x00367be0 0x1000 + 3566560
    6 com.apple.Foundation 0x90d2b04d -[NSThread main] + 45
    7 com.apple.Foundation 0x90d2abf4 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    9 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x90b13ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x90b3dced pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x927ad161 fefragmentthread + 54
    3 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    4 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x90b13ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x90b3dced pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x927ad161 fefragmentthread + 54
    3 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    4 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x90b0c8e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90b140dc mach_msg + 72
    2 com.apple.CoreFoundation 0x901140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90114d94 CFRunLoopRun + 84
    4 com.apple.DesktopServices 0x96abcb0f TSystemNotificationTask::SystemNotificationTaskProc(void*) + 123
    5 ...ple.CoreServices.CarbonCore 0x94a2c4bb PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    7 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 22:
    0 libSystem.B.dylib 0x90b0c8e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x90b140dc mach_msg + 72
    2 com.apple.CoreFoundation 0x901140fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90114d94 CFRunLoopRun + 84
    4 com.apple.DesktopServices 0x96abcc88 TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 216
    5 ...ple.CoreServices.CarbonCore 0x94a2c4bb PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    7 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 23:
    0 libSystem.B.dylib 0x90b13ace _semwaitsignal + 10
    1 libSystem.B.dylib 0x90b3dced pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x94a2e2a7 TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x94a0d226 TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x94a2df24 MPWaitOnQueue + 208
    5 com.apple.DesktopServices 0x96ac8db8 TNodeSyncTask::SyncTaskProc(void*) + 72
    6 ...ple.CoreServices.CarbonCore 0x94a2c4bb PrivateMPEntryPoint + 56
    7 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    8 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 24:
    0 libSystem.B.dylib 0x90b3c8e6 kevent + 10
    1 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    2 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 25:
    0 libSystem.B.dylib 0x90b5bf5a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    2 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 26:
    0 libSystem.B.dylib 0x90b0c946 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x90b3e1cf pthread_condwait + 1244
    2 libSystem.B.dylib 0x90b3fa53 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x94a0d252 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x94a2df24 MPWaitOnQueue + 208
    5 com.apple.DesktopServices 0x96acb224 TFolderSizeTask::FolderSizeTaskProc(void*) + 104
    6 ...ple.CoreServices.CarbonCore 0x94a2c4bb PrivateMPEntryPoint + 56
    7 libSystem.B.dylib 0x90b3d075 pthreadstart + 321
    8 libSystem.B.dylib 0x90b3cf32 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffff088b ebx: 0x197a6c5d ecx: 0x00000028 edx: 0xffffc400
    edi: 0x00003c00 esi: 0xfb75c240 ebp: 0xbfffc5e8 esp: 0xbfffc5e0
    ss: 0x0000001f efl: 0x00010212 eip: 0xffff08b7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x4c0fcc com.apple.Aperture 1.5.6 (1.5.6) /Applications/Aperture.app/Contents/MacOS/Aperture
    0x592000 - 0x6e9feb com.apple.prokit 4.1 (699.3) <0c44068f8274f63020bc12b71e43fd53> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x7c1000 - 0x800fff com.apple.vmutils 4.1 (104) <2fcd53ce313bb6050bfaf0ac6c1b5ead> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x822000 - 0x8ebff5 com.apple.DiscRecording 4.0 (4000.4.10) <d4130992c67baeb1ec39e6b63e080550> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x956000 - 0x981ff7 com.apple.DiscRecordingUI 4.0 (4000.4.10) <f7d79479e05b83b6b5af98cc92308bdb> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x99f000 - 0x9cfffb com.apple.DiskManagement 2.1 (152) <1a71c02f082a80656961486251b15074> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x9f1000 - 0x9f8fdf com.apple.NetServices.BDControl 1.0.4 (1.0.4) /Applications/Aperture.app/Contents/NetServices/Frameworks/BDControl.framework/ Versions/A/BDControl
    0xa02000 - 0xa05fff com.apple.NetServices.BDRuleEngine 1.0.1 (1.0.1) /Applications/Aperture.app/Contents/NetServices/Frameworks/BDRuleEngine.framewo rk/Versions/A/BDRuleEngine
    0xa0c000 - 0xa67fef com.apple.NetServices.NetServices 6.0 (6.0) /Applications/Aperture.app/Contents/NetServices/Frameworks/NetServices.framewor k/Versions/A/NetServices
    0xab1000 - 0xaf4ffb com.apple.DotMacKit 1.2 (1.2) /Applications/Aperture.app/Contents/Frameworks/DotMacKit.framework/Versions/A/D otMacKit
    0xb21000 - 0xb28ff3 com.apple.AEProfiling 1.2 (14.2) /Applications/Aperture.app/Contents/Frameworks/AEProfiling.framework/Versions/A /AEProfiling
    0xb30000 - 0xb41ff7 com.apple.AERegistration 1.2 (58.2) /Applications/Aperture.app/Contents/Frameworks/AERegistration.framework/Version s/A/AERegistration
    0xb50000 - 0xb5cfff com.apple.PluginManager 1.6 (28) /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
    0xb68000 - 0xb9dfff com.apple.MediaKit 9.0 (391) <baf0ef1d2fb7dec226bb982c991b6b95> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0xbae000 - 0xbd5ffb com.apple.framework.Admin 2.1 (2.1) <06fcd173911c7ff02508570def479a41> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0xbf7000 - 0xbfcfff com.apple.SetupAssistant.International 1.5 (1.5) <34584ce150ff7a7b62fd673fe5f48486> /System/Library/PrivateFrameworks/International.framework/Versions/A/Internatio nal
    0xc05000 - 0xcfdfe0 com.apple.DiskImagesFramework 10.5.1 (192.1) <bc81cfae2611298268170f2e25ce07b3> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0xd63000 - 0xd8effb libcurl.4.dylib ??? (???) <54ada27deb3b4ff7043d8836264eca0d> /usr/lib/libcurl.4.dylib
    0xd98000 - 0xdb1fff com.apple.frameworks.preferencepanes 12.0 (12.0) <3660cd00b953f3d950e902194bfe1144> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0xf00000 - 0xf02fff +net.culater.SIMBL 0.8.2 (8) /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL
    0xf62000 - 0xf7efff GLRendererFloat ??? (???) <5719f596b7e2c9ef8afca208544b158b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xf84000 - 0xfa6ff7 com.apple.prokit.LeopardPanels 4.1 (699.3) <dc1fc7fca339631b2672faa4ed1d445d> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/Leopard Panels.bundle/Contents/MacOS/LeopardPanels
    0x122c3000 - 0x12444fef GLEngine ??? (???) <6106cebf02eec50e8f88c5dc936f1266> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12472000 - 0x12778fe2 com.apple.GeForce8xxxGLDriver 1.5.18 (5.1.8) <3499aca7e7c6b2651119e4d131a888df> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x176e8000 - 0x176e9ff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x197a2000 - 0x197a7ff3 libCGXCoreImage.A.dylib ??? (???) <978986709159e5fe9e094df5efddac1d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x19a22000 - 0x19b08ff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1e2e7000 - 0x1e2f1ffe com.apple.URLMount 3.1 (3.1) <742db901c626729373961d2b99036aab> /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x254a6000 - 0x254c2fe7 libPDFRIP.A.dylib ??? (???) <804fa9fc9690fe05251feb8eab1fdca8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90003000 - 0x90060ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x90061000 - 0x9009bff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9009c000 - 0x9009cffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9009d000 - 0x900a0fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x900a1000 - 0x900a1ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x900a2000 - 0x901d4fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x901d5000 - 0x9021afef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9021b000 - 0x90353ff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x90354000 - 0x9035bff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9035c000 - 0x90403fff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90404000 - 0x90473fff com.apple.PDFKit 2.0 (2.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90474000 - 0x90b0bfef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90b0c000 - 0x90c66fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x90c67000 - 0x90c76fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x90c77000 - 0x90d20fff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90d21000 - 0x90f9afe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90f9b000 - 0x912a1fff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x912a2000 - 0x912adfe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x912ae000 - 0x912aeffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x912af000 - 0x91323fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91324000 - 0x91635fe2 com.apple.QuickTime 7.3.1 (7.3.1) <697ff9cc466d4388840c3b733af9c6d7> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9189f000 - 0x918dcff7 libGLImage.dylib ??? (???) <202d73e6a4688fc06ff11b71910c2ce7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x918dd000 - 0x919c1ffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91b41000 - 0x91c0cfff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91c0d000 - 0x91c34fff libcups.2.dylib ??? (???) <5521498e8902ddd0b15cfaa7db384e29> /usr/lib/libcups.2.dylib
    0x91c35000 - 0x91c35ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91c74000 - 0x91c8afe7 com.apple.CoreVideo 1.5.0 (1.5.0) <c7569b68e54114da815e9c55299fe3a4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91c8b000 - 0x91c8bffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c8c000 - 0x91cc5ffe com.apple.securityfoundation 3.0 (32768) <1e9885d63ced51f81bc1f39af624637d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91cc6000 - 0x921dcfff com.apple.WebCore 5523.10.6 (5523.10.6) <9e1a5e022ebf8134c175de5f91c63bee> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x921f1000 - 0x9227bfff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9227c000 - 0x922bdfe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x922be000 - 0x922ccffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x922cd000 - 0x922fcfe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x922fd000 - 0x9237cff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92385000 - 0x923d1fff com.apple.QuickLookUIFramework 1.0.1 (168.1) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x923e9000 - 0x92439ff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92591000 - 0x925d0fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x925d1000 - 0x92602ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92603000 - 0x92695ff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92696000 - 0x9269bfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9269c000 - 0x926b7ffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x926b8000 - 0x92a4eff7 com.apple.QuartzCore 1.5.1 (1.5.1) <deb61cbeb3f734a1b2f4669f6268b9de> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92a4f000 - 0x92b0afe3 com.apple.WebKit 5523.10.6 (5523.10.6) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x92ba2000 - 0x92ba2ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92ba3000 - 0x92bcbff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92bcc000 - 0x92c28ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92c29000 - 0x93423fef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93424000 - 0x93458fef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93459000 - 0x9345effb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x93496000 - 0x93529fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x935f0000 - 0x935f0fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x935f1000 - 0x936a1fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x936a2000 - 0x936a4ff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x936a5000 - 0x93731ff7 com.apple.LaunchServices 286 (286) <72b15e7a01e42d510f0339e90113d5d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93732000 - 0x9373bfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9373c000 - 0x9373cff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9373d000 - 0x937f3fe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x937f4000 - 0x937fbffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x937fc000 - 0x938aeffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x938bb000 - 0x938cfff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x938d0000 - 0x93902fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x939c1000 - 0x93af7fe3 com.apple.imageKit 1.0 (1.0) <2f2656deebcf595b88f010ba08cef0e4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93af8000 - 0x93b00fff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93b01000 - 0x93b24fff com.apple.CoreMediaPrivate 1.2 (1.2) <0f78d9bc7307d60cf58c0f8ac8994cf4> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x93b25000 - 0x93b43fff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x93b44000 - 0x93c89ff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93c8a000 - 0x93c8efff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93c8f000 - 0x9415bffe libGLProgrammability.dylib ??? (???) <e8bc0af671427cf2b6279a035805a086> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9415c000 - 0x9415dffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x94176000 - 0x941cffff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94215000 - 0x942dcff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x942dd000 - 0x94354fe3 com.apple.CFNetwork 220 (221) <972a41911805859205b057a6f5b91e8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94355000 - 0x94364ffe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94365000 - 0x9437dfff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9437e000 - 0x9438aff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9438b000 - 0x9479bfef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9479c000 - 0x947a3fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x947a4000 - 0x947c2ff7 com.apple.QuickLookFramework 1.0.1 (168.1) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x947c3000 - 0x947c5fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x947c6000 - 0x947eafff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x947eb000 - 0x948ccff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x948cd000 - 0x9493bfff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9493c000 - 0x9495aff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9495e000 - 0x94974fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94975000 - 0x949b7fef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x949b8000 - 0x949e2fef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x949e3000 - 0x94cbcfe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94cbd000 - 0x94cf3fff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94d42000 - 0x94d66feb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x94d67000 - 0x94da3ff7 com.apple.CoreMediaIOServicesPrivate 1.2 (1.2) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x94da4000 - 0x94dd1feb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94e02000 - 0x94f80fff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f81000 - 0x94fdbff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94fdc000 - 0x94ffbffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94ffc000 - 0x951c5fef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x951c6000 - 0x951cbfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x951cc000 - 0x95387ff3 com.apple.QuartzComposer 2.0 (106) <e31bf3733d0676dd7993afca6ce48c3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95388000 - 0x954acfe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x954b0000 - 0x954c0ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x955b6000 - 0x955c0feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x955c1000 - 0x9563dfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9563e000 - 0x9563effc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9563f000 - 0x95645fff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95756000 - 0x95756ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95757000 - 0x957deff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x957e9000 - 0x95ba7fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95ba8000 - 0x95c22ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95c28000 - 0x95c38fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96abb000 - 0x96b6afff com.apple.DesktopServices 1.4.3 (1.4.3) <66d5ed56111c43d234e235d365d02469> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96b6b000 - 0x96b77fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x96b95000 - 0x96ba0ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x96ba1000 - 0x96bebfe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x96bec000 - 0x96bf9fe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96bfa000 - 0x96bfbfef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x96bfc000 - 0x96c87ffb com.apple.QTKit 7.3.1 (7.3.1) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96c88000 - 0x96d67fff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x96d6e000 - 0x96d6effe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <7b0248c392848338f5d6ed093313eeef> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    There seems to be lots of users having this problem. I have started a thread where hopefully everyone will post their system profile - maybe we can find a common issue.
    Thanks!
    http://discussions.apple.com/thread.jspa?threadID=1421739&tstart=0

  • Userexit while saving the billing document

    Hi all,
    Is there any userexit while saving the billing document..I want to define minimum invoice value in system.
    Regards,
    Puneet Makkar

    Hi,
    In preceding project, i had the same requirement.
    Price condition : copy from std price for minimum value.
    Use condition category (for specific determination price for invoice).
    In price procedure : apply requirement to active only for invoice (std = 22).
    Re determination of price during creation of invoice :
    use RV61AFZA with the value of condition category to adapt pricing type (ex : X).
    modify copy rule (Tcode VTFL) for item : use new value for pricing type (ex : X).
    Regards,
    Lionel

  • Error while saving for Objective setting

    Hi,
    While saving the Objective setting templates i am getting the error as "Table HRPAD605 is not part of the Customizing object PDST T "
    <u>Error documentation is as follows</u>
    <b>Diagnosis</b>
    Entries in table HRPAD605 cannot be edited in connection with customizing object PDST      T as table HRPAD605 does not belong to customizing object PDST      T, according to the object definition.
    <b>System Response</b>
    The function terminates.
    <b>Procedure</b>
    Check whether the entered objects and keys are correct.Then check in the Implementation Guide whether the object was created correctly.
    Correct the object definition or the entry for the Transport Organizer interface.
    Thanks

    Hello,
    Most likely the is an inconsistency with the transport objects PDST and PDWS. Please run RHSOBJCH to correct this inconsistency.
    Afterwards you should be able to transport the templates via the catalog or via RHMOVE30. Please make sure that the category ID in the target system is the same otherwise you won't be able to locate the template.
    The report RHSOBJCH corrects the missing HR entries in the OBJS table.
    This step you need to perform only once. For OSA you need to overtake
    *5020 up to *5026, also PAD605,606 and 607 references.
    When you have done this (as said, only need to do it once) you can transport the categories and templates via the phap_catalog_pa transaction (righ-mouse click on the to be transported object).
    Hope this helps,
    Regards and Groetjes,
    Maurice

  • To set an error while saving the order when the item categor changed in CRM

    Hello SAP Gurus,
    As per our current system set up, whenever the order created in CRM once replicated to ERP should not change the item category in CRM .If the item category is changed( allows the system) and saved, it gives an error as u201CItem category should not be changedu201D. We have been encountering  this type of issue since long back
    To avoid this type of issue, an error should through while saving the order when the user changes the item category in CRM.
    Can someone help me to achieve this.
    Thanks in advance.
    Cheers
    Sreedhar

    Sreedhar,
    Can't you control it by Item Category determination?
    JD

  • When trying to do a system backup to my remote LaCie hard drive, what does it mean when I get a message that says "waiting for volume LaCie disk"?  While this message apears no back-up occurs.  Is there a setting I need to change?

    When trying to do a system backup to my remote LaCie hard drive, what does it mean when I get a message that says "waiting for volume LaCie disk"?  While this message apears no back-up occurs.  Is there a setting I need to change?

    You can't do a backup of icloud to an external drive.  In fact, does your post have anything to do with icloud (you're in the icloud forum)?
    What kind of "system backup" are you doing?  Are you using Time Machine?

  • Is there a setting for iphone 4 to have the screen dim to black while on a call?

    is there a setting for iphone 4 to have the screen dim to black while on a call?

    If you put the phone to your ear, the proximity sensor darkens the display automatically. If you are just holding the phone in your hand or something similar, the proximity sensor is not activated.

  • HT201178 when using apple bluetooth keyboard with iPad, hitting the enter/return key while typing in iMessage only adds another line not 'send' the message? is there a setting to change that somewhere?

    when using apple bluetooth keyboard with iPad, hitting the enter/return key while typing in iMessage only adds another line not 'send' the message? is there a setting to change that somewhere?

    Everywhere that I've checked it is not possible to do this. I would like to even do this using the vkb. I hate having to stretch my thumb all the way up just to send a message. It's messaging, not a report or email. Seems backwards. Hopefully some day Apple can add this option.

  • Trying to archive but keeps saying "alert-there was an error while saving"

    I have been trying to archive a dvd project in idvd6 but I get an error every time that says "Alert-there was an error while saving" The project never saves. I am trying to save this to an external hard drive. I have checked permissions and all say read and write. Help!!

    If it's like mine, there are two ports. Have you switched and tried?
    Wait a second... Did you ever format that drive as Mac OS Extended? It was probably formatted for FAT32, or whatever The Dark Side uses these days.
    I about to apply the 10.4.7 Combo updater. If I'm not back soon, it didn't go so well...

  • BADI which triggers while saving Marketing Attribute Set

    Hi,
    Could you please help me out with any BADI which triggers while saving Marketing Attribute Set.
    Thanks,
    Sandeep

    Hello Sandeep,
    Can you trt this bad CACL_VALUE_CHANGE
    thanks

  • Is there a setting that disables vibration while i am using my phone but allow my notification to continue to roll down AND enable vibration only when my phone is locked.

    The problem is that I want to be able to read the notifications that roll down but the vibration is very very annoying when i hold the phone in my hands or put it on a hard surface. I am in a group convo and when i am using my phone on an app, and still wish to see what my friends send through the notification that rolls down, my phone will vibrate. And with each notification that rolls down, my phone vibrates. So when my friends spam in the group or are having a very lively conversation, my phone will vibrate non-stop and it gets annoying because it makes a buzzing sound and its very annoying when i am holding it. also, i do not wish to turn vibration off entirely because then i wont be able to be notified when my phone is locked. is there a setting for this?
    if there isnt then i actually really hope apple would include an option like this in their settings. it would be incredibly helpful for me. and maybe some other people, i guess?

    Tap on the screen to get the camera to autofocus.  If the image looks clear to you, but the app isn't accepting it, it's a problem with the app.  Delete it and reinstall it.  If the issue persists, contact the app developer.

  • I want to add a Saved Mailbox, but I do not have an Edit button for Mailboxes?  Is there a setting that causes the Edit button to display?

    The user manual says to go Mailboxes and click the Edit button to add a Mailbox, but I do not have an Edit button displayed in Mailboxes.  Is there a setting for displaying the Edit Button?  I have the latest version of iPad (Model MD328LL).  Thanks.

    If you go to your email account in the Mail app and look at the window where your inbox, trash folder and sent folder are - if there is an Edit button at the top of the window - tap that and then tap Add Mailbox at the bottom.
    If the Edit button is not there - you cannot create folders on the iPad. Your email account is not IMAP. Only IMAP email accounts can create folders on the iPad. Any folders that you would already have in an IMAP account would sync to the device as well.

  • Error found while saving. System.Data.OleDb.OleDbException (0x80040E10): No value given for one or more required parameters.

    Hello Friends
    I am facing problem while saving the data into the ms access 2007.
    Below picture shows my database and table
    Below picture shows my error log.
    Here is my GettingCategoryId() method code.
    private OleDbCommand GettingCategoryId()
    OleDbCommand cmd2 = new OleDbCommand("select * from tbl_category where category_name='" + combobox_category_name.Text + "' ", GlobalVarClass.globalCon);
    OleDbDataReader dr = cmd.ExecuteReader();
    while (dr.Read())
    textBox1.Text = Convert.ToString(dr.GetInt32(0));
    return cmd2;
    Here is my conv_photo() method code.
    void conv_photo()
    //converting photo to binary data
    if (pictureBox1.Image != null)
    ms = new MemoryStream();
    pictureBox1.Image.Save(ms, ImageFormat.Jpeg);
    byte[] photo_aray = new byte[ms.Length];
    ms.Position = 0;
    ms.Read(photo_aray, 0, photo_aray.Length);
    cmd.Parameters.AddWithValue("@item_image", photo_aray);
    Here is my connection string.
    public static string gloabal_connection_string = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source= " + Application.StartupPath + "\\pos_fircos.accdb";
    public static OleDbConnection globalCon = new OleDbConnection(gloabal_connection_string);
    This is my saving code.
    OleDbCommand cmd = GettingCategoryId();
    cmd = new OleDbCommand("INSERT INTO tbl_items(category_id,item_no,item_model,item_description,item_sale_price,item_image)Values('" + Convert.ToInt32(textBox1.Text) + "','" + Convert.ToString(textbox_item_no.Text) + "','" + Convert.ToString(textbox_item_model.Text) + "','" + Convert.ToString(textbox_item_description.Text) + "','" + Convert.ToDouble(textbox_item_sale_price.Text) + "',@item_image)", GlobalVarClass.globalCon);
    conv_photo();
    cmd.ExecuteNonQuery();
    Please give me solution this problem.
    Waiting for your reply.
    Thanks and regards
    Your truly,
    Hasnain Ahmad
    [email protected]

    I strongly recommend that you change your command from using string formatting to build up the command to a simple command that uses parameters.  This will: a) clean up your code so it is understandable, b) prevent SQL injection attacks which your current
    code is fully vulnerable to, c) help more easily identify which parameter you aren't actually setting.
    //Not validated against the compiler so there may be syntax errors
    var cmd = new OleDbCommand("INSERT INTO tbl_items(category_id,item_no,item_model,item_description,item_sale_price,item_image) Values (@categoryId, @itemNo, @itemModel, @itemDescription, @itemPrice, @itemImage)", GlobalVarClass.globalCon);
    cmd.Parameters.AddWithValue("@categoryId", Convert.ToInt32(textBox1.Text));
    cmd.Parameters.AddWithValue("@itemNo", textbox_item_no.Text);
    cmd.Parameters.AddWithValue("@itemModel", textbox_item_model.Text);
    cmd.Parameters.AddWithValue("@itemDescription", textbox_item_description.Text);
    cmd.Parameters.AddWithValue("@itemPrice", Convert.ToDouble(textbox_item_sale_price.Text));
    //This is the parameter that doesn't seem to have any value so replace ?? with the variable holding the value of the image
    cmd.Parameters.AddWithValue("@itemImage", ??);
    conv_photo();
    cmd.ExecuteNonQuery();
    Michael Taylor
    http://blogs.msmvps.com/p3net

Maybe you are looking for

  • Re: [iPlanet-JATO] How to skip the display of a row in a TiledView ?

    Syam-- I am having problems in skiping the display of a row in a Tiled view. I have a customer search results page. Each customer has an associated type.While displaying the search results, I should skip the customer record from display, if the assoc

  • Radio buttons in a single line

    hi all, how to get more than one radio buttons in a single line in a selection screen? please give the solution as it is urgent. i will surely reward ur efforts. thanks sanjeev

  • Trouble at step number 4 when connecting Nakisa and TREX

    Hi all, We are on step #4 of this wiki: /people/luke.marson/blog/2010/09/20/setting-up-netweaver-embedded-search-trex-for-sap-ehp4-talent-management We ran the report ESH_ADM_ INDEX_ALL_SC and went back to the cockpit to check the status of the conne

  • Spinning beach ball at login after 10.5.6 update

    Since I upgraded to 10.5.6, the spinning beach ball would appear every time at startup. At the same time, Finder (and/or the menu bar) is frozen and the Dock doesn't show up. Here are the suspicious error messages in Console: 2008/12/19 上午 1:44:31 Fi

  • Mv db to another server

    9206 version customer ask to retire and mv dbs to retired server, and he want to test either he can start dbs on that server(no oracle installed)....I am wondering i have to copy Oracle base, Oracle home and inventory along with all db files/spfile/c