[solved] transferring OSX

Hello everybody ...
after getting archlinuxppc running on my ibook G3 clamshell I'm trying to get a dualboot system with the old OSX from a seperate harddisk. As changing the harddisk is not done within a few minutes I had to make a backup from an intel-based notebook.
Basic configuration:
ibook g3 300 MHz with 40 GB harddisk. Currently only archlinuxppc is installed. The partition map looks like this:
# type name length base ( size ) system
/dev/hda1 Apple_partition_map Apple 63 @ 1 ( 31.5k) Partition Map
/dev/hda2 Apple_Bootstrap bootstrap 1600 @ 64 (800.0k) NewWorld Bootblock
/dev/hda3 Apple_UNIX_SVR2 root 12582912 @ 1664 ( 6.0G) Linux native
/dev/hda4 Apple_UNIX_SVR2 opt 12582912 @ 12584576 ( 6.0G) Linux native
/dev/hda5 Apple_UNIX_SVR2 usr 10485760 @ 25167488 ( 5.0G) Linux native
/dev/hda6 Apple_UNIX_SVR2 var 10485760 @ 35653248 ( 5.0G) Linux native
/dev/hda7 Apple_UNIX_SVR2 home 23068672 @ 46139008 ( 11.0G) Linux native
/dev/hda8 Apple_UNIX_SVR2 swap 8388608 @ 69207680 ( 4.0G) Linux native
/dev/hda9 Apple_Free Extra 543872 @ 77596288 (265.6M) Free Space
I know, swap is too much ... it's just a temporary size.
I was not able to view the partition table from the old 3GB Mac harddisk. (I was too fast to change the 3 GB hd against the current 40 GB hd. So I plugged the old harddisk into an intel based notebook and started with knoppix. Knoppix was not able to view the partition table with the help of cfdisk, but (I don't know where knoppix got its information) it creates the nodes /mnt/hda1 to /mnt/hda8 so it seems as if knoppix knew that there are partitions like that. I made images from these partitions with the help of dd and got the following sizes:
hda1 32256 Bytes
hda2 27648 Bytes
hda3 37888 Bytes
hda4 27648 Bytes
hda5 37888 Bytes
hda6 262144 Bytes
hda7 262144 Bytes
hda8 3252775936 Bytes
I found this partition table within penguinppc.org
# type name length base ( size ) system
/dev/sdb1 Apple_partition_map Apple 63 @ 1 ( 31.5k) Partition map
/dev/sdb2 Apple_Driver43 Macintosh 54 @ 64 ( 27.0k) Driver 4.3
/dev/sdb3 Apple_Driver43 Macintosh 74 @ 118 ( 37.0k) Driver 4.3
/dev/sdb4 Apple_Driver_IOKit Macintosh 512 @ 192 (256.0k) Unknown
/dev/sdb5 Apple_Patches Patch Partition 512 @ 704 (256.0k) Unknown
/dev/sdb6 Apple_HFS untitled 194557 @ 1216 ( 95.0M) HFS
/dev/sdb7 Apple_HFS untitled 2 333025 @ 195773 (162.6M) HFS
/dev/sdb8 Apple_Free Extra 10 @ 528798 ( 5.0k) Free space
So I think my "little" partition inamges from hda2 to hda8 are the same like these. How am I able to copy the original OSX installation into my system.
My first thoughts:
adding an Apple_HFS partition with the size of the image from hda8 and copy back the image with dd. Now there are 2 questions.
first one
do I need the other partitions too? if so how do I know how to name them and in what order do I have to take them?
second one
does it matter if the osx image is on hda8 or not?
additional question
I recognized that during the partitioning process I got never asked for "primary" oder "advanced" partition. How many partitions am I able to create?
additional question 2
what are these mac-partitions for?
regards
Martin Schuchardt
Last edited by kruemeltee (2009-02-26 05:55:36)

okay ... after asking within IRC someone told me just the big partition is neccessary for running MacOSX. So I deleted the swap partition, created a Apple_HFS Partition end the rest as swap partition again. I recovered MacOSX with the help of dd and added the line "macosx=/dev/hda8" into yaboot.conf.
After rebooting MacOSX started without any questions and works fine. For getting into the dual boot menu I forgot to run the command
mkofboot -v -C /etc/yaboot.conf
within archlinux. So I restarted with the help of the boot cd, changed into my root partition and executed the command. Now I have successfully installed a dual-boot menu for choosing between linux and macosx!
Great work.
regards
Martin Schuchardt

Similar Messages

  • [solved] transferring (migrate) my install to a new hard drive

    I did some googling, but could not find a howto which replicated my situation...
    I bought a new SSD for my netbook and I am wondering what the best way to go about transferring my arch install to it without going thru an install-from-scratch would be...
    I'm planning to partition the new drive with / (10GB) and /home (the rest) in separate partitions.
    I bought a usb hdd external enclosure and plan to connect the SSD to it to make the changes.
    my old hard drive is 160GB and the new one will be 30GB, so I'm guessing dd would not work well? Or rather, I am not sure how to use dd in this situation (in part because some kind of "partition alignment" is needed for SSDs, which I guess dd would break? and the size mismatch would cause me trouble?). any pointers?
    I'm guessing rsync would help me in this situation (I'm more familiar with it as I do my backups via rsync -av --delete --checksum), but then, how do I transfer grub to the new drive, so that when I (internally) connect the SSD and boot, all I have to do would be to wait as it boots to *my* Arch without me having to do anything.
    also, if I do an rsync, which files would I need to change so the thing boots ok? I know I will have to change fstab entries to get the id of the partitions right, but what else?
    any ideas, or pointers, or links would be very much appreciated.
    thanks and sorry for this newbie question...
    update: solved using the following:
    pyther's comment below:
    ) Boot Live CD
    2) Partition New Drive
    3) mount old drive and all partitions /boot, /home, etc... (/mnt/old)
    4) mount new drive and all partitions /boot, /home, etc... (/mnt/new)
    5) Use cp or any tool that allows you to transfer files, make sure to preserve permissions. I would suggest the following command cp -av /mnt/old/* /mnt/new/*
    6) Mount /proc, /dev, /sys (mount -t proc none /mnt/new/proc; mount -o bind /dev /mnt/new/dev; mount -o bind /sys /mnty/new/sys)
    7) chroot /mnt/new /bin/bash
    8) Modify any configuration files (ex. fstab and menu.list)
    9) Rebuild initrd image mkinitcpio -p kernel26
    10) Install grub
    11) unmount everything
    12) reboot
    panuh's link
    Quick search gave me this: http://www.linuxjournal.com/article/10093
    things to be careful about: (1) grub's menu.list has both uuid and hd(X,Y) fields that need to be updated, (2) if you use an ubuntu live cd and chroot's grub-install doesn't work for you, ubuntu comes with grub2. when it craps on you during boot, see http://wiki.archlinux.org/index.php/GRU … ue_console . using this, after booting to arch, use grub-install along with --recheck http://www.gnu.org/software/grub/manual … stall.html
    Last edited by vajorie (2010-03-10 23:41:24)

    Graysky covered fairly nicely I'll add my own notes...
    1) Boot Live CD
    2) Partition New Drive
    3) mount old drive and all partitions /boot, /home, etc... (/mnt/old)
    4) mount new drive and all partitions /boot, /home, etc... (/mnt/new)
    5) Use cp or any tool that allows you to transfer files, make sure to preserve permissions. I would suggest the following command cp -av /mnt/old/* /mnt/new/*
    6) Mount /proc, /dev, /sys (mount -t proc none /mnt/new/proc; mount -o bind /dev /mnt/new/dev; mount -o bind /sys /mnty/new/sys)
    7) chroot /mnt/new /bin/bash
    8) Modify any configuration files (ex. fstab and menu.list)
    9) Rebuild initrd image mkinitcpio -p kernel26
    10) Install grub
    11) unmount everything
    12) reboot
    Edit: Don't be afraid to ask for more help
    Last edited by pyther (2010-03-08 22:29:55)

  • Transferring OSX?

    Hey,
    I need help!
    I'd like to partition a second HD (System/Storage) and basically move everything thats on my original system drive (OSX etc) on to that, thus making the 'second' drive my main drive and boot drive and get rid of my original.
    how do I do this?
    is it something I need to do via Disk Utility? Or do I need to reinstall OSX? :-/
    I have the disks to do so, of course, but I'd rather not do that and lose everything else on that drive.

    You can partition a drive into volumes with Disk Utility
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh14.html
    and then clone your current drive - if it 'Disk Verifies' ok in Disk Utility - with CCC
    http://www.bombich.com/software/ccc.html
    or SuperDuper
    http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html
    and then select it as the Startup disc in System Preferences > Startup Disc - or boot holding down the Option(alt) key. (Copying doesn't produce a 'bootable' drive.)
    You should boot and run on the cloned drive a few times to make sure it's ok.
    Please post again if you need further info.

  • Help for OSX Server 3.2.2 could not open after upgarded Mac OSX Yosemite!

    Dear All,
    Please for solving my osx server 3.2.2 could not open and show failure after upgarded Mac OSX Yosemite.

    Version 3.2.2 does not work with Yosemite you'll need to upgrade to version 4.0 to get Server functionality.
    Cheers HD

  • How to get Photostream from 'business' iPhone to 'family' iCloud-account

    Has anyone found a solution for this yet ?
    There must be numerous pleople having this same problem :
    I have a (in my opinon rather standard) setup in which I have a private iCloud-account on my 'business devices' (iPhone, iPad, MacBook Pro) and I have a shared iCloud-account on our 'family' Mac.
    Now I would like to arrange things the way that's most logical to me :
    I want my business devices to sync the more 'business-like' iCloud services :
    Mail
    Contacts
    Calendars
    (Bookmarks is less important)
    Documents & Data
    Back to My Mac
    Find My Mac
    iTunes Store
    Mac App Store
    But I want my business devices to Photostream to our 'family' Mac's, since that's the device where our (only complete) iPhoto-library is on...
    Now there seems to be no way to do so since :
    - iCloud automatically uses the same iCloud-account for Photostream, Documents & Data, Back to My Mac and Find My Mac (only for Mail, Contacts, Calendars, iTunes and Mac App Store it is optional to use a different iCloud-account)
    - setting up my business iCloud-account as the secondary iCloud-account on all my business devices would be completely un-logical and would not allow me to keep (especially) my Documents & Data 'business' ; they will be visible on our 'family' Mac, which is completely off bounds for my employer and my clients...
    Has anyone found a solution to this ?
    (or will this be solved in OSX 10.8 Mountain Lion maybe ?)
    options I have thought about, but I couldn't get working yet :
    - running a second installation of iPhoto on our 'family' Mac
    - running both iPhoto and Aperture on our 'family' Mac
    - getting the Photostream from my 'business' iCloud.com into our 'family' Mac by subscribing to the URL
    - setting up one-and-the-same Eye-Fi account on my 'business' iPhone & iPad and on our 'family' Mac
    - searching for a 3rd-party Mac-app that can read and/or import the 'business' Photostream info our 'family' iPhoto
    - something involving Photoshop Elements 10 Organiser...
    Any help would be helpful.
    Thanks !

    Thank you for your reply Winston.
    very interesting info, too bad however that Dropbox doesn't do auto-import into iPhoto...
    I might have figured out a way to do this using Eye-Fi (free account, free iOS-app & free Mac-app ; by SanDisk) :
    Eye-Fi seems to do auto-upload from iPhone/iPad, auto-transfer to a Mac (over WiFi, and if needed even over 3G it seems), and auto-import into iPhoto...
    ...it can even handle video upload (which iCloud Photostream can't) 
    and it has 'free temporary online viewing' with Eye-Fi View (which is kind-of like MobileMe Gallery...)
    (and some payed extensions that are less interesting in my opinion)
    ...I'm testing right now if Eye-Fi works for me.
    (Maybe I still need to combine it with Dropbox's auto-upload though...)
    Thanks !
    Note : Eye-Fi even has an option to upload to MobileMe... too bad MobileMe is no longer available... hopefully there will be integration with iCloud in the near future...

  • Why do USB drives plugged into USB hubs make my Mac Book Pro (Retina late 2013) wake from sleep?

    I have 2 x USB hubs, a Logitech USB 2.0 hub and a Broway USB 3.0 hub. Tested both and both seem to be the cause of my late 2013 Mac Book Pro waking from sleep. I ran syslog to find out why (syslog |grep -i "Wake reason") and the reason I got back was "kernel[0] <Notice>: Wake reason: XHC1" - this means nothing to me, but it didn't take too much mucking about to hunt the problem down and figure out it was the USB hub with any USB drive attached. If the drive is attached directly to the computer. No problem, computer sleeps fine.
    This was a problem I encountered (and never solved) with OSX 10.6.8, a 2008 Macbook Pro the same Logitech USB 2.0 hub, but with different drives. I put the problem down to a bug that never got solved in an old system. But I am simply AMAZED after my update to a new MBP and new system that it is still about almost 6 years, a dozen MBP's and 4 systems later.
    The other problem is that not only does the USB drive/ USB hub combo wake the computer it also loses the drive upon sleep and mounts it again upon wake. Then repeats this process every couple of minutes. And it obviously doesn't eject the drives properly because each time I return to the computer after I put it to sleep or let it go to sleep I get a giant list of "Disk Not Ejected Properly" notifications about it. Which I'm guessing could eventually cause some file damage.
    I've tried combinations of different drives, different hubs (a Belkin and a no-name Chinese brand 2.0 hub) and the problem persists. Is there a solve to this problem? I'm surprised to see so little posts on forums about this. Am I just unlucky and got another combination of faulty/problematic hardware, or is this a real problem that exists for everyone? If not I would love to know if people have found winning combos of USB hubs and drives. But if it is, then it HAS to be solved.
    If you have a Macbook Pro, then you are limited to 2 USB outlets, this is obviously a bare minimum and I would say that 95% of people using their laptop computer in the office or at home have a hub, and very likely a USB drive attached to it. I know actual Apple reps don't really pay much attention to the community support posts, but I've got 6 months worth of Applecare left and would like suggestions about how to get Apple's attention about this problem.
    BTW Jettison (a 3rd party app that ejects drives properly before sleep) is not a solve. It is a 3rd party app that tries to fill a hole in a broken system. I don't want to eject my drive upon sleep, I want it to got the **** to sleep.

    Is there a pattern to the time of day or other detail that may be
    traced back to a OS X system cause of this odd phenomenon?
    Are there any copies of system files on any of the attached USB
    external drives? Any libraries, such as iTunes, iPhoto, etc?
    Once the drives are indexed by Spotlight, are their permissions
    ignored by the OS X? Content, if neutral, should not affect the
    wake or sleep cycle; especially if they're ignored by the OS X.
    Could there be a bad cable or other component? If so that would
    be a difficult process of elimination to detect it. Usually replacing
    most suspect components in the USB stream (external to Macs)
    is a rote way to mechanically test that idea; & not 100% sure.
    Does the equipment all have a good ground to the utility or house
    electrical field? An intermittent ground may affect more than sleep.
    Hard to say at this point. Maybe a late-night talk radio guru on
    remote viewing could peer into your situation and sleuth it out?
    Sorry to have run out of ideas, but the process must be electrical
    & mechanical to some extent. - Or perhaps odd software inspired.
    Do you have any phone-home spyware items inside, just jumping
    at the chance to spill your information? Little Snitch may help.
    PS: Perhaps the computer needs to go into Apple & have a genius
    or product specialist at AASP test the unit thoroughly... BlueTooth?
    see:
    https://www.google.com/?gws_rd=ssl#q=Wake+reason:+XHC1
    Good luck & happy computing!
    edited 2x

  • Reader XI for Mac OS crashes often (e.g. on search, commenting, links)

    Over the past few weeks I have noticed my Reader XI crashing so often it is disrupting my work day.  It functions, but I often get the spinning wheel of death for about 20 seconds prior to a full crash when either using commenting, searching for strings, or clicking on links in the document.  I have the free version and my system is Mac OS 10.9.2.  I paste the latest crash report below.  I have tried reinstalling to no avail and have not found any online forums that seem to help or solve the problem.
    Crash report:
    Process:    
    AdobeReader [36026]
    Path:       
    /Applications/Adobe Reader.app/Contents/MacOS/AdobeReader
    Identifier: 
    com.adobe.Reader
    Version:    
    11.0.06 (11.0.06)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [146]
    Responsible:
    AdobeReader [36026]
    User ID:    
    501
    Date/Time:  
    2014-03-09 15:31:46.842 +0000
    OS Version: 
    Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  C788ED66-92FA-33ED-1732-0F5CF2B85D4F
    Sleep/Wake UUID: BFCF2A1C-F663-4149-9808-C34FBE3FB7D4
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bf7322dc
    VM Regions Near 0xbf7322dc:
    Stack             
    00000000b0abb000-00000000b0acb000 [   64K] rw-/rwx SM=COW 
    --> Stack             
    00000000bbf33000-00000000bf733000 [ 56.0M] ---/rwx SM=NUL 
    Stack             
    00000000bf733000-00000000bff33000 [ 8192K] rw-/rwx SM=COW 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.ColorSync      
    0x99615cd2 ConversionManager::ApplySequenceToBitmap(CMMConvNode*, CMMEncoDec&, CMMRuntimeInfo*, unsigned long, CMMProgressNotifier*) + 12
    1   com.apple.ColorSync      
    0x995ff64d CMMProcessBitmap(CMMConversionParams*) + 626
    2   com.apple.ColorSync      
    0x995ff176 DoApplyTransform + 690
    3   com.apple.ColorSync      
    0x99600a70 AppleCMMApplyTransform + 235
    4   com.apple.ColorSync      
    0x9963dfb8 ColorSyncCMMApplyTransform + 118
    5   com.apple.ColorSync      
    0x995ec1ad ColorSyncTransformConvert + 200
    6   libCGCMS.A.dylib         
    0x9808bc04 ConvertImageGeneric + 690
    7   libCGCMS.A.dylib         
    0x9808b944 CMSColorWorldConvertData + 33
    8   libCGCMS.A.dylib         
    0x9808bef5 CMSTransformConvertData + 47
    9   com.apple.CoreGraphics   
    0x90df8c91 CGCMSTransformConvertData + 56
    10  com.apple.CoreGraphics   
    0x90df8c36 CGColorTransformConvertData + 201
    11  libRIP.A.dylib           
    0x98420cb5 ripc_AcquireFunction + 2033
    12  libRIP.A.dylib           
    0x9841ffa8 ripc_DrawShading + 9462
    13  com.apple.CoreGraphics   
    0x90dfb711 CGContextDrawShading + 66
    14  com.adobe.Acrobat.framework  
    0x001e956c 0xd6000 + 1127788
    15  com.adobe.Acrobat.framework  
    0x001ee961 0xd6000 + 1149281
    16  com.adobe.Acrobat.framework  
    0x001ee961 0xd6000 + 1149281
    17  com.adobe.Acrobat.framework  
    0x001ee961 0xd6000 + 1149281
    18  com.adobe.Acrobat.framework  
    0x001ee961 0xd6000 + 1149281
    19  com.adobe.Acrobat.framework  
    0x001ee961 0xd6000 + 1149281
    20  com.adobe.Acrobat.framework  
    0x004aed6d 0xd6000 + 4033901
    21  com.adobe.Acrobat.framework  
    0x005e204e 0xd6000 + 5292110
    22  com.adobe.Acrobat.framework  
    0x0054d9d5 0xd6000 + 4684245
    23  com.adobe.Acrobat.framework  
    0x0054f0c3 0xd6000 + 4690115
    24  com.adobe.Acrobat.framework  
    0x0054fe91 0xd6000 + 4693649
    25  com.adobe.Acrobat.framework  
    0x0054ff98 0xd6000 + 4693912
    26  com.adobe.Acrobat.framework  
    0x0054efaf 0xd6000 + 4689839
    27  com.adobe.Acrobat.framework  
    0x005e1786 0xd6000 + 5289862
    28  com.adobe.Acrobat.framework  
    0x005e0ad5 0xd6000 + 5286613
    29  com.adobe.Acrobat.framework  
    0x001e839a 0xd6000 + 1123226
    30  com.adobe.Acrobat.framework  
    0x001e7ec3 0xd6000 + 1121987
    31  com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    32  com.adobe.Acrobat.framework  
    0x001e8833 0xd6000 + 1124403
    33  com.adobe.Acrobat.framework  
    0x001e867b 0xd6000 + 1123963
    34  com.adobe.Acrobat.framework  
    0x001e7f62 0xd6000 + 1122146
    35  com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    36  com.adobe.Acrobat.framework  
    0x001e8833 0xd6000 + 1124403
    37  com.adobe.Acrobat.framework  
    0x001e867b 0xd6000 + 1123963
    38  com.adobe.Acrobat.framework  
    0x001e7f62 0xd6000 + 1122146
    39  com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    40  com.adobe.Acrobat.framework  
    0x001e8833 0xd6000 + 1124403
    41  com.adobe.Acrobat.framework  
    0x001e867b 0xd6000 + 1123963
    42  com.adobe.Acrobat.framework  
    0x001e7f62 0xd6000 + 1122146
    43  com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    44  com.adobe.Acrobat.framework  
    0x001e8833 0xd6000 + 1124403
    45  com.adobe.Acrobat.framework  
    0x001e867b 0xd6000 + 1123963
    46  com.adobe.Acrobat.framework  
    0x001e7f62 0xd6000 + 1122146
    47  com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    48  com.adobe.Acrobat.framework  
    0x001e8833 0xd6000 + 1124403
    49  com.adobe.Acrobat.framework  
    0x00559aa7 0xd6000 + 4733607
    50  com.adobe.Acrobat.framework  
    0x001bc590 0xd6000 + 943504
    51  com.adobe.Acrobat.framework  
    0x001e8dbd 0xd6000 + 1125821
    52  com.adobe.Acrobat.framework  
    0x001e7f9e 0xd6000 + 1122206
    53  com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    54  com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    55  com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    56  com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    57  com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    58  com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    59  com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    60  com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    61  com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    62  com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    63  com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    64  com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    65  com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    66  com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    67  com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    68  com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    69  com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    70  com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    71  com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    72  com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    73  com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    74  com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    75  com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    76  com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    77  com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    78  com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    79  com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    80  com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    81  com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    82  com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    83  com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    84  com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    85  com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    86  com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    87  com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    88  com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    89  com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    90  com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    91  com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    92  com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    93  com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    94  com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    95  com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    96  com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    97  com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    98  com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    99  com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    100 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    101 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    102 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    103 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    104 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    105 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    106 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    107 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    108 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    109 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    110 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    111 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    112 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    113 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    114 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    115 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    116 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    117 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    118 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    119 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    120 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    121 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    122 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    123 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    124 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    125 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    126 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    127 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    128 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    129 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    130 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    131 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    132 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    133 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    134 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    135 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    136 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    137 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    138 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    139 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    140 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    141 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    142 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    143 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    144 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    145 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    146 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    147 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    148 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    149 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    150 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    151 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    152 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    153 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    154 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    155 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    156 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    157 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    158 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    159 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    160 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    161 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    162 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    163 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    164 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    165 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    166 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    167 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    168 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    169 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    170 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    171 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    172 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    173 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    174 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    175 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    176 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    177 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    178 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    179 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    180 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    181 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    182 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    183 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    184 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    185 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    186 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    187 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    188 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    189 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    190 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    191 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    192 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    193 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    194 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    195 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    196 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    197 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    198 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    199 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    200 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    201 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    202 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    203 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    204 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    205 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    206 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    207 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    208 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    209 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    210 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    211 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    212 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    213 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    214 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    215 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    216 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    217 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    218 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    219 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    220 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    221 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    222 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    223 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    224 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    225 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    226 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    227 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    228 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    229 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    230 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    231 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    232 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    233 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    234 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    235 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    236 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    237 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    238 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    239 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    240 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    241 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    242 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    243 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    244 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    245 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    246 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    247 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    248 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    249 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    250 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    251 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    252 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    253 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    254 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    255 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    256 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    257 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    258 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    259 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    260 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    261 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    262 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    263 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    264 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    265 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    266 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    267 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    268 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    269 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    270 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    271 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    272 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    273 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    274 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    275 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    276 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    277 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    278 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    279 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    280 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    281 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    282 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    283 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    284 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    285 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    286 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    287 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    288 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    289 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    290 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    291 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    292 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    293 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    294 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    295 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    296 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    297 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    298 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    299 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    300 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    301 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    302 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    303 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    304 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    305 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    306 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    307 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    308 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    309 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    310 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    311 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    312 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    313 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    314 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    315 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    316 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    317 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    318 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    319 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    320 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    321 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    322 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    323 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    324 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    325 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    326 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    327 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    328 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    329 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    330 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    331 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    332 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    333 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    334 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    335 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    336 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    337 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    338 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    339 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    340 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    341 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    342 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    343 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    344 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    345 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    346 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    347 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    348 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    349 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    350 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    351 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    352 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    353 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    354 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    355 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    356 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    357 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    358 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    359 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    360 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    361 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    362 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    363 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    364 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    365 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    366 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    367 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    368 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    369 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    370 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    371 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    372 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    373 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    374 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    375 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    376 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    377 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    378 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    379 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    380 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    381 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    382 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    383 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    384 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    385 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    386 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    387 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    388 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    389 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    390 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    391 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    392 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    393 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    394 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    395 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    396 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    397 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    398 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    399 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    400 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    401 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    402 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    403 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    404 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    405 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    406 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    407 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    408 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    409 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    410 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    411 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    412 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    413 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    414 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    415 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    416 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    417 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    418 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    419 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    420 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    421 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    422 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    423 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    424 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    425 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    426 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    427 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    428 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    429 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    430 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    431 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    432 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    433 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    434 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    435 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    436 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    437 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    438 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    439 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    440 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    441 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    442 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    443 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    444 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    445 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    446 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    447 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    448 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    449 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    450 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    451 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    452 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    453 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    454 com.adobe.Acrobat.framework  
    0x001e7814 0xd6000 + 1120276
    455 com.adobe.Acrobat.framework  
    0x001e70a0 0xd6000 + 1118368
    456 com.adobe.Acrobat.framework  
    0x001e6d03 0xd6000 + 1117443
    457 com.apple.AppKit         
    0x9a3622a8 -[NSView _drawRect:clip:] + 3816
    458 com.apple.AppKit         
    0x9a360cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    459 com.apple.AppKit         
    0x9a35f288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 1264
    460 com.apple.AppKit         
    0x9a35bc67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    461 com.apple.AppKit         
    0x9a33975c -[NSView displayIfNeeded] + 1414
    462 com.adobe.Acrobat.framework  
    0x006c5a6d 0xd6000 + 6224493
    463 com.adobe.Acrobat.framework  
    0x005bfd4c 0xd6000 + 5152076
    464 com.adobe.Acrobat.framework  
    0x00749ada 0xd6000 + 6765274
    465 com.adobe.Acrobat.framework  
    0x001f70e7 0xd6000 + 1183975
    466 com.adobe.Acrobat.framework  
    0x001e11e2 0xd6000 + 1094114
    467 com.adobe.Acrobat.framework  
    0x005af6d3 0xd6000 + 5084883
    468 com.adobe.Acrobat.framework  
    0x00e4122f 0xd6000 + 14070319
    469 com.adobe.Acrobat.framework  
    0x00a7b38e 0xd6000 + 10113934
    470 com.adobe.Acrobat.framework  
    0x0025b69e 0xd6000 + 1595038
    471 com.adobe.Acrobat.framework  
    0x001e8e92 0xd6000 + 1126034
    472 com.adobe.Acrobat.framework  
    0x001e7d2f 0xd6000 + 1121583
    473 com.adobe.Acrobat.framework  
    0x001e79ca 0xd6000 + 1120714
    474 com.adobe.Acrobat.framework  

    Hi there, had the same problem with 10.9.2.
    Seems (repeat: seems) to be solved with OSX update 10.9.3 without any Adobe software update. Both with Adobe Acrobat XI and Adobe Reader.
    L.

  • Firewire audio problems with OS X 10.5.6

    Hello,
    I’m experiencing audio problems with Firewire 400 on my Macbook running Mac OSX 10.5.6.
    I’ve got a 2.4Ghz IntelCore 2 Duo with 4 GB RAM and 59 GB available on the internal HD.
    It’s hooked up to a brand new Mackie D.4 mixer with 2 Firewire outputs. The problems occur on both Firewire outputs.
    I’ve installed automatically from the software update (which I will never do again) to 10.5.6. I never tried the D.4 with 10.5.5 so I can’t tell if the problems occur there also.
    The main problem is that after a couple of minutes of recording the sound starts to break up and get really distorted. After a while the sound comes back again.
    The second problem is that Soundtrack Pro or Audacity don’t get any audio input from the D.4, although audio input is clearly visible in System Preferences – Sound.
    The only sound program that works with all 14 Firewire channels is Ableton, but also in Ableton the distortion occurs.
    An example of the distortion can be checked here:
    http://media.kaalslag.com/firewire-distortion-problem-mackieD4+Macbook.mp3
    I’ve roamed several forums and sites to solve the problem and I tried these solutions:
    I updated again to 10.5.6. with the full combo download from the Apple site. Restarted. Problem still there.
    I shut Airport off, because lots of sites mentioned problems with Airport conflicting with audio/firewire. Didn’t work.
    I did the work around with shutting the Macbook off, disconnecting the D.4, restarting the Macbook, opening Audio/Midi Setup, connecting the D.4 again, toggling the format frequencies a couple of times. Again, no use.
    Right now I’m using my “old” Macbook again to record from vinyl. This one is still running on OSX 10.4.11. No problems so far.
    I’ve had the distortion problems occuring before with an USB interface. Hoped that the Mackie Firewire would solve the problem, but it seems now that there’s a serious audio Firewire problem which is still not solved in OSX 10.5.
    Any help, tips and/or a work around would be much appreciated. Thanks!

    You could try using another computer in Target Disk mode (as an "external HD"), or you can connect the firewire cable and disconnect all other network cables (turning off airport). Then on each computer go to the "Network" system preferences and select "Built-in Firewire" from the list of ports and choose "Manually" from the drop-down menu next to "Configure". Enter the following IP addresses and subnet masks, apply the changes.
    _Computer 1_
    IP Address: 192.168.1.1
    Subnet Mask: 255.255.255.0
    _Computer 2_
    IP Address: 192.168.1.2
    Subnet Mask: 255.255.255.0
    After those ip addresses are entered and you've clicked "Apply", ensure that for both computers you have file sharing enabled (done in the "Sharing" system preferences), and then check the Finder sidebar to see if the computers can see each other (their names should appear under "Shared" in the sidebar--if not, try restarting).
    If the computers dont appear (even after restarting), using the "Connect To" option that's available in the Finder's "Go" menu. In there, to connect to another computer enter it's IP address as follows:
    afp://IP_ADDRESS
    If you're on the computer with the ip address of 192.168.1.1, you would enter 192.168.1.2 as "IP_ADDRESS". The "afp" is the protocol (just like "http" for web), and stands for "Apple Filing Protocol"...Apple's file sharing protocol.

  • Cd image disappear again!!

    Hi folks,
    Earlier, cd images disappeared when it tried mounting in finder/itunes, but it got solved when osx 10.6 updated to 10.6.3 or 2, cant remember. But anyway, after itunes came with the new update, Ive got the same problem. Anyone experiencing the same? Im ripping in my own cds to itunes, and I did 5 cds and the last disappeared. So if I restart my mac, it will show up and after 4/5 new cds, it disappears again. Same old stuff.
    By the way, I experience so much troubles with itunes 10.. If I scan artwork for the cds, it wont import using the cmd+i. Only one jpg will stay imported. And I cant go back to itunes 9, cause then it mess up my iphone sync. Apple please fix this issues with disappearing cd images and artwork bugs

    Apple has a tech note about using hubs for itune sync.
    I'll post a link when I find it.
    If having a problem don't use it or try another hub.
    A powered hub should have an external power dongle- check it is working and plugged in. The hub can still work even if the dongle is not there but the USB cables will have less DC power.
    Remember the USB cables have power AND data lines and the problems is the DATA lines.
    Using longer cables or EXTENDER cables and a hub or even the supplied APPLE dock will cause data corruptions. EVERY connection in a USB line will cause a reduction of quality in high speed USB cable. A hub can add a lot of electrical noise.
    example : A 6 foot USB extender cable -- the Apple Ipad cable -- the Apple Ipad DOCK --- The Ipad = NO sync
    NOW remove the extended cable or the DOCK from this line and sync will work
    The Ipad might be a bit sensitive to USB noise or the supplied Apple cable could use some more shielding ( it does look thin ).

  • Reader XI for the Army

    Recently, the XI version of Adobe Reader has been getting pushed out to many workstations globally within Army DOIMs (Directorate of Information Management).  In our case, our application no longer works to allow us to digitally sign PDFs since XI got pushed out.  This has caused a work stoppage.  How should the preferences of each section that controls configurations for Reader be set to allow us to get back to work?  We can't modify the settings to try different things because GPO settings prevent users from modifying settings within Adobe, but if we know what settings need to be set this way or that way, we can open a trouble ticket with the DOIM and ask them to make those setting changes.  Has anyone encountered this problem before?  Does anyone know how the settings should be set in, for instance the Security settings page or others?
    We're using Windows 7 64 bit, IE 10.

    Hi there, had the same problem with 10.9.2.
    Seems (repeat: seems) to be solved with OSX update 10.9.3 without any Adobe software update. Both with Adobe Acrobat XI and Adobe Reader.
    L.

  • Photoshop CC download failed...

    Hi Adobe Help Team,
    I have ordered your special offer for Photoshop CC & PS Lightroom 5 today and tried to download PS CC via Creative Cloud (PS Lightroom 5 is already in use on my computer).
    The Creative Cloud applet says that Photoshop CC has been updated, but I cannot find any trace of Photoshop CC on my harddrive!
    I have switched to downloading Photoshop CS6 which worked just fine. Please help!
    Thanks!
    Regards,
    Torsten

    I cannot reply directly on the forum page so here is how I solved it:
    OSX 10.9.1
    I used Adobe's Cleaner Tool to rid my machine of ALL previously installed Adobe products and started from scratch. Worked fine for me!
    Best,
    Torsten
    Am 02.02.2014 um 20:46 schrieb yo_mich <[email protected]>:
    Re: Photoshop CC download failed...
    created by yo_mich in Photoshop General Discussion - View the full discussion
    I am having the same issue. Did you previously have it on your computer and then delete it? That is what I did....maybe that is the issue. I have no idea how to solve it though.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6078536#6078536
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6078536#6078536
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6078536#6078536. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop General Discussion at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Cannot access primary user account - even with Install CD

    I’ve been racking my brain trying to figure out how to solve a OSX problem for a friend that ran into some problems on his iMac. For some reason, he wasn’t able to log onto his user account – the only one on this computer. He didn’t try to change his password, but something strange must have happened.
    We tried to reset the password with an OS X install disc, but I couldn’t even find, much less access his user account. Thanks to the help of some folks at the Genius Bar of an Apple store, we were able to log onto the Root account and create a new account. I tried t recreate the original user account, but the computer wouldn’t allow it, as that account was already being used. If that user account was still active, why wasn’t I able to reset it with an install disc?
    I’ve rebuilt the volumes with Disk Warrior, and repaired permissions with Disk Utilities. I’m at a loss on how to deal with accessing the original user account, which has a lot of important data. I’ve copied the user data to an external drive, and I’m thinking I might be able to import various files – email data, photographs, and various documents, but I’m hoping there be an alternative to what seems like a tedious route. Other than using an install disc to reset the password to the user account it can’t seem to recognize, are there any other ways to gain access to this account?
    My friend’s computer is a G4 iMac running, I believe, 10.3.9.

    There are several possibilities as to why a user account may
    not be correctly available or a password to it reset to fix it.
    One of them may be, if the short name of the computer or of
    an account was changed by the user; and later the system
    may appear different or changed, with some of the user acct
    settings or preferences no longer as they were prior to that.
    There is a way to create a new admin level user account and
    then move the older user info into the new account; then go
    in and delete the other one. I am not certain as to how to do
    this; but the topic has come up in these discussions, and the
    general path is about the same from Panther through Leopard.
    A few details may be named different, but similar as things go.
    • Mac OS X: *How to change user short name* or home directory name:
    http://support.apple.com/kb/ht1428
    • How do I change owner's name in my Mac:
    http://www.askdavetaylor.com/howto_change_owners_name_applemac.html
    While these kinds of details may not be behind the exact problem in
    the computer in question, directory and user account issues do often
    have similar causes. Often, they are user-caused events. If the general
    Directory of information on the hard disk drive has a problem, the use
    of a third-party disk tool such as Disk Warrior is usually advised. If that
    were needed, usually more evidence across the system would appear.
    There may be a way to use a Setup Assistant to recreate a new user
    experience and start over with a new admin account and user name.
    Then go into the system to ferret out the old user info.
    +Sorry I can't be of more help; as I am being distracted by an elderly+
    +person who can't figure out why I am online or what it means to be.+
    Good luck & happy computing!

  • Crash reporter not launching after a crash.

    FF 14.0.1 running on OSX 10.7.4.
    FF will crash randomly, but the crash reporter doesn't launch. OSX notes the crash and offers to report it to Apple.
    Preferences -> Advanced -> General -> Submit Crash Reports is set.
    What other settings can I look at?

    We have been solving most OSX problems by reinstalling Firefox [http://kb.mozillazine.org/Firefox_crashes OSX crashes]

  • How do I install OSX onto a new SSD (in the place of my optical drive) without transferring all data across.  However, with the applications, system and library on the SSD to improve the speed, but keep non essential items (the home folder) on the HDD

    I have a mid 2009 13 inch unibody 2.53GHz MacBook Pro.  I'm finding that it doesn't run as quickly as it used to. 
    A genius in the Apple store suggested that I replace my optical drive with an SSD, however only use the SSD for OSX, applications, system and library.  Keep all documents, pictures, music etc on the current hard drive. 
    I would be grateful if someone could help me with:
    1) installing OSX on the SSD without copying across data from the current hard drive
    2) transferring applications, system and library folders across to the SSD so that they still function
    3) changing my settings so that OSX reads the home folder from the current hard drive, as well as all the applications' data (documents, music etc...)
    However, I would like to run iMovie, with all events etc solely from the SSD to speed up the process of editing movies.
    If anyone could help with this, it would be much appreciated.

    If you got the data transfer cable with your SSD, the procedure should be pretty simple - and there should be step-by-step instructions in the box. You're simply going to remove the bottom case of your computer (using a Phillips #00 screwdriver), take out the two screws in the bracket holding the hard drive into place (using same screwdriver), remove the drive and (use a Torx 6 screwdriver) remove the four screws that hold the hard drive in place. Then put in the SSD and reassemble the machine.
    Then you'll plug up the old hard drive by using the SATA to USB cable and use the option key to boot from the old drive. I don't know what data transfer software Crucial provides, but I would recommend formatting the SSD  using Disk Utility from your old drive ("Mac OS Extended (Journaled)" with a single GUID partition) and then use Carbon Copy Cloner to clone your old drive to your new SSD (see this user tip for cloning - https://discussions.apple.com/docs/DOC-4122). You needn't worry about getting an enclosure since you have the data transfer cable and you don't want to use your old hard drive.
    There are a number of videos on YouTube that take you step-by-step through this procedure - many specific to Crucial SSDs and their data transfer kit - do a little searching there if you're unsure of how to procede.
    Clinton

  • Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can't see a symbol for address book.

    Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can;t see a symbol for address book.

    Where are addresses kept on MAIL?  I don;t like the new format at all. Frances
    Begin forwarded message:
    From: Frances Topping <[email protected]>
    Subject: Re: - Old computer I had is OSX Snow Leopard with Entourage. New one is OSX Mavericks. Using Mail where are my addresses and old address book. Transferred old computer backup by Time Machine and other things work? Can't see a symbol for address book.
    Date: August 25, 2014 at 9:46:01 AM EDT
    To: discussions-replies <[email protected]>
    Old Entourage is POP and new Mavericks MAIL  is IMAP I believe. I don;t know how to export in the forms you mention. Frances

Maybe you are looking for