Using the CTRL key in Screen Sharing

I am using native OS X screen sharing to share my Mac OS X Lion iMac screen on my Mac OS X Snow Leopard MacBook Pro.  I am using it to run Xcode since I can't run the latest version of Xcode on my Snow Leopard machine (2006 MacBook Pro).  It works great with one exception - I can't seem to find out how to do a CTRL-drag operation.  In Xcode, you use CTRL-drag to link objects to their controller.  It works fine if I perform the operation on the iMac that is sharing its screen.  But it doesn't do anything on the MacBook Pro screen sharing session.  Is there a way to get the CTRL-drag to work in the screen sharing session?

I have the same issue with Interface Builder. It's weird because CTRL-click works.

Similar Messages

  • I can no longer open a new browser tab by either clicking the + at the end of the last browser or by using the Ctrl key + T, how do I fix this?

    I have uninstalled firefox and reinstalled firefox to try and solve this
    issue, but it has not fixed the issue. To open a new tab I must right click
    any current page link to get a new browser tab and then navigate to a new web address. This is a recent issue that just started happening and I can't figure out what happened or what got disabled. Please help me fix this.

    Try uninstalling the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.

  • Use of the Ctrl key

    Hi all
    does anyone know of a method whereby I can use the Ctrl key (or Alt/Shift) as a trigger for an action?
    Spiersy

    Which version of Firefox do you use?
    You have a weird user agent:
    * Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.0; hi, Mom) Gecko/20020604
    Try to reset the preferences.
    * http://kb.mozillazine.org/Resetting_preferences
    * http://kb.mozillazine.org/Preferences_not_saved

  • Help: How Can I turn off a sound bound to the CTRL key?

    Hi, I made a small Unity3D game using the CTRL key as the fire button. There I added a sound to the CTRL key. Now all of a sudden that key always makes that sound "on mouse release". No help even after deleting the sound file, clearing the PR Ram, making restarts. OS X Yosemite on my iMac 5k will always make that sound initially only active during the game. Any help appreciated. Thanks Rolf

    Problem found - there was a hidden web page open with a similar game that accepted the CTRL key. :-)

  • Why are all my keyboard shortcuts using the "Alt" key instead of the "Ctrl" key? I'm using Windows 7 and Firefox 5.0.1.

    I recently downloaded Firefox 5 and noticed that all my keyboard shortcuts default to using "Alt" key instead of the "Ctrl" key (so, for example, opening a new tab is Alt + T instead of Ctrl + T).
    I noticed that this is even true for copying and pasting within Firefox (Alt + C and Alt + P are the only commands that work).
    Any idea why this is happening? I am running Windows 7 and Firefox 5.0.1.

    Thanks, eveostay! That worked. (And for the record, what a crazy user agent string...)

  • Is there a way to change the Alt key to the Ctrl Key?

    Is there a to access the Alt key screen functions (the quick Eyedrop, (holding Alt and click the color) and the Zoom in and Zoom out (holding alt alt and scrolling with the mouse wheel) with other key instead of alt, for instance the Ctrl key?
    It is really annoying to me to deal with it, because in my shortcut configuration I use the keys "Q" and "W" to increace and decrease the size of the brush and the keys "A" and "S" to increase and decrease the hardness of the brush. What happens is that when I hold Alt to pick a color or to zoom, it calls the menu bar's shortcuts (it underlines the menu shortcuts) , so If I do so and press "S" it calls the Select menu, which is not what I'm trying to do.
    In Gimp, the pick a color and zoom in and zoom out actions are configured to work with the Ctrl key instead of Alt, so the shortcut menus are not an issue. Is there anyway to switch it to Ctrl? Is there anyway to make the Alt stop calling the menu bar?
    Thanks

    Hello, Other than a keyboard remapping software, you might be out of luck.

  • Key Bindings using the arrow keys

    Following is some code that allows you to move a component around the screen using the arrow keys. I've noticed a problem and I'm just wondering if its Java or my keyboard.
    Lets start with an example that works:
    Press the down and right keys. Then press either the up or left key. The image moves proving that it supports 3 keys.
    Now for the problem:
    Press the up and left keys. Then press either the down or right key. Three things to notice:
    a) the direction doesn't change when the third key is pressed
    b) no output is displayed, so the ActionListener is not being invoked
    c) after a short time, the program starts beeping
    Now try rerunning the code after removing the comments that assign the key bindings to the "a, s, d, f" keys. Redo the above test and it works even if all four keys are pressed.
    I don't remember this problem when I wrote the code a while ago, but I did recently get a cheap new keyboard so I'm just wondering if the problem is my keyboard or whether its a quirk with Java.
    You can download Duke from here:
    http://java.sun.com/docs/books/tutorial/uiswing/examples/components/LayeredPaneDemoProject/src/components/images/dukeWaveRed.gif
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class KeyboardNavigationProblem implements ActionListener
         private JComponent component;
         private int deltaX;
         private int deltaY;
         private Timer timer;
         private int keysPressed;
         private InputMap inputMap;
         public KeyboardNavigationProblem(JComponent component, int delay)
              this.component = component;
              this.deltaX = deltaX;
              this.deltaY = deltaY;
              timer = new Timer(delay, this);
              timer.setInitialDelay( 0 );
              inputMap = component.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
         public void addAction(int keyCode, String description, int deltaX, int deltaY)
              new NavigationAction(keyCode, description, deltaX, deltaY);
         public void updateDeltaX(int delta)
              deltaX += delta;
         public void updateDeltaY(int delta)
              deltaY += delta;
         public void actionPerformed(ActionEvent e)
              int componentWidth = component.getSize().width;
              int componentHeight = component.getSize().height;
              Dimension parentSize = component.getParent().getSize();
              int parentWidth  = parentSize.width;
              int parentHeight = parentSize.height;
              //  Determine next X position
              int nextX = Math.max(component.getLocation().x + deltaX, 0);
              if ( nextX + componentWidth > parentWidth)
                   nextX = parentWidth - componentWidth;
              //  Determine next Y position
              int nextY = Math.max(component.getLocation().y + deltaY, 0);
              if ( nextY + componentHeight > parentHeight)
                   nextY = parentHeight - componentHeight;
              //  Move the component
              component.setLocation(nextX, nextY);
         class NavigationAction extends AbstractAction implements ActionListener
              private int deltaX;
              private int deltaY;
              private KeyStroke pressedKeyStroke;
              private boolean listeningForKeyPressed;
              public NavigationAction(int keyCode, String description, int deltaX, int deltaY)
                   super(description);
                   this.deltaX = deltaX;
                   this.deltaY = deltaY;
                   pressedKeyStroke = KeyStroke.getKeyStroke(keyCode, 0, false);
                   KeyStroke releasedKeyStroke = KeyStroke.getKeyStroke(keyCode, 0, true);
                   inputMap.put(pressedKeyStroke, getValue(Action.NAME));
                   inputMap.put(releasedKeyStroke, getValue(Action.NAME));
                   component.getActionMap().put(getValue(Action.NAME), this);
                   listeningForKeyPressed = true;
              public void actionPerformed(ActionEvent e)
                   if (listeningForKeyPressed)
                        updateDeltaX( deltaX );
                        updateDeltaY( deltaY );
                        inputMap.remove(pressedKeyStroke);
                        listeningForKeyPressed = false;
                           if (keysPressed == 0)
                                timer.start();
                     keysPressed++;
                   else // listening for key released
                        updateDeltaX( -deltaX );
                        updateDeltaY( -deltaY );
                        inputMap.put(pressedKeyStroke, getValue(Action.NAME));
                        listeningForKeyPressed = true;
                        keysPressed--;
                           if (keysPressed == 0)
                                timer.stop();
                   System.out.println(KeyboardNavigationProblem.this.deltaX + " : "
                   + KeyboardNavigationProblem.this.deltaY);
         public static void main(String[] args)
              JPanel contentPane = new JPanel();
              contentPane.setLayout( null );
              JLabel duke = new JLabel( new ImageIcon("dukewavered.gif") );
              duke.setSize( duke.getPreferredSize() );
              duke.setLocation(100, 100);
              contentPane.add( duke );
              KeyboardNavigationProblem navigation = new KeyboardNavigationProblem(duke, 100);
              navigation.addAction(KeyEvent.VK_LEFT, "zLeft", -5, 0);
              navigation.addAction(KeyEvent.VK_RIGHT, "zRight", 5, 0);
              navigation.addAction(KeyEvent.VK_UP, "zUp", 0, -5);
              navigation.addAction(KeyEvent.VK_DOWN, "zDown", 0, 5);
    //          navigation.addAction(KeyEvent.VK_A, "zLeft", -5, 0);
    //          navigation.addAction(KeyEvent.VK_S, "zRight", 5, 0);
    //          navigation.addAction(KeyEvent.VK_D, "zUp", 0, -5);
    //          navigation.addAction(KeyEvent.VK_F, "zDown", 0, 5);
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.setContentPane( contentPane);
              frame.setSize(800, 600);
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }

    if you hold down left and right (so it doesn't move), down works, but not up.
    hold up/down, right works but not left.Yes, the problem only seems to be when the up and left in combination with the right or down key is pressed.
    num lock off - use the number pad arrow keys and all works OK Thats interesting, I didn't notice that. Although it just confuses the issue as to what the problem is.
    So it appears to me that:
    a) left + up + down, and
    b) left + up + right
    are special key combinations that are intercepted by either the OS or the JVM. Do these key combinations ring a bell to anybody?
    I'm use JDK1.4.2 on XP. I wonder if other OS will have the same problem?
    Again, this isn't a real, problem, just more of a curiosity. Thanks,

  • Firefox won't let me use the shift key

    Hi
    Basically when I try and use the shift key I keep getting this bar come up on the bottom of my screen and begins typing my text in there. Even when I close the bar and press the shift key again it still appears; I'm not sure how I can stop it from happening or how to disable it. It's getting frustrating not being able to type properly- I have to use the caps lock key for capitals.
    Can someone please help me out?
    Thanks

    hello Sab01, your screenshot shows the firefox developer toolbar which can be brought up with the keyboard shortcut shift+f2. so this is just a guess, but maybe your keyboard's f2 key is hanging...
    in case you cannot solve it that way, please enter '''about:config''' into the firefox location bar (confirm the info message in case it shows up) & search for the preference named '''devtools.toolbar.enabled''' - double-click the entry and toggle its value to '''false'''. this will generally disable the developer toolbar after you restart the browser.

  • EKM using the Azure Key Vault is now available for SQL Database and SQL Server running in Azure VM's

    In preview today, you can create keys in the Azure Key Vault, and use them with Azure SQL Database, or SQL Server running in a Azure VM. Use the Extensible Key Management (EKM) for TDE, backup encryption, or cell level encryption. For more information, see
    Extensible Key Management Using Azure Key Vault (SQL Server)
    http://msdn.microsoft.com/en-us/library/dn198405.aspx.
    The announcement:
    Azure Key Vault in public preview
    Key Vault offers an easy, cost-effective way to safeguard keys and other sensitive data used by cloud applications and services. Included are the following features:
    Enhance data protection and compliance:
    Protect cryptographic keys and sensitive data   like passwords with keys stored in Hardware Security Modules (HSMs). For   added assurance, import or generate your keys in HSMs certified to FIPS 140-2   level 2 and Common Criteria EAL4 standards,
    so that keys stay within the HSM   boundary. Key Vault is designed so that Microsoft doesn’t see or extract your   keys.
    All the control, none of the work:
    Provision new vaults and keys in minutes   and centrally manage keys, sensitive data, and policies. You maintain control   over your encrypted data—simply grant permission for your own and third-party   applications to use keys as needed. Enable
    developers to easily manage keys   used for dev/test and migrate seamlessly to production keys managed by   security operations.
    Boost performance and achieve global scale: Improve
    performance and reduce latency of   cloud applications by storing cryptographic keys in the cloud (versus   on-premises). Key Vault rapidly scales to meet the cryptographic needs of   your cloud applications and match peak demand.
    Get started with Azure Key Vault by creating keys for applications you develop,
    SQL Server encryption (TDE, CLE, and Backup), and partner solutions like
    CloudLink SecureVM.
    Key Vault is available now at no charge with discounted preview pricing starting on January 15, 2015.
    For more information, please visit the
    Key Vault webpage. For a comprehensive look at pricing, please visit the
    Key Vault Pricing webpage.
    Rick Byham, Microsoft, SQL Server Books Online, Implies no warranty

    Thank you for sharing this Rick.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Using the control key to scale to a certain size proportionally without it being locked

    In illustrator CS5 if there is a particular size you want to enter, after entering the size in the width you could hold down the control key and it would scale everything proportionally without the lock button being on. I cant seem to get CS6 to do this feature. Is there a way to get this feature back?

    Update to Illustrator to get to 16.05. I assume you are on PC since you said CTRL and not Command.
    Adobe - Illustrator : For Windows  
    I leave the transform palette with the lock off
    So that I can use the hot key as you mentioned and that would scale proportionately as if the hot key was held down
    Uninstall any 3rd party Illustrator or Windows plug ins that may be interfering with this.
    Also wanted to make sure you are holding down the CTRL key while you hit enter to accept the value.
    Select item(s)
    change either width or height
    hold down CTRL on windows
    Hit return or enter
    Release CTRL

  • How to use the windows key (super or hiper) as a keystroke modifier?

    I can associate the windows key (KeyEvent.VK_WINDOWS) as a regular key on a KeyStroke without problem.
    It can be alone or with a modifier, like CTRL+WIN
    KeyStroke.getKeyStroke( KeyEvent.VK_WINDOWS, InputEvent.CTRL_DOWN_MASK )My doubt is: Is there a way to use it as a modifier?
    In other words, is it possible to create the KeyStroke using the windows key with any other? e.g. "WIN+K"
    Thanks,
    Henrique Abreu

    Thanks a lot for the quick answer.
    Your KeyboardCommands class doesn't do it (but gives the idea), because it can only trigger an action on one key (like KeyStroke, that handles key+modifier).
    I could make big changes on it to add the functionality of triggering an event on a combination of keys, which would solve my problem.
    Although this solution is not so good because we totally give up of actions in Swing, which I mean stuff like actionMaps, InputMaps WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, etc.
    If KeyStroke class really doesn't provide this (unbelievable!), I wonder if there is a way to extend and enhance it? (or AWTKeyStroke)
    Can anyone say if its possible, before I go deep and find out that it isn't?
    Another secondary question (that I think doesn't worth a new topic), what's the META_DOWN_MASK or META_MASK? or where is this key?
    Henrique Abreu

  • When I open a PDF and try to use the Ctrl F (Find feature), the colorful spin wheel pops up and it spins for a while. When it finishes I get an error box that's titled 'Adobe Reader Quit Unexpectantly'. I work off of a MACBOOK Pro, version 10.9.2. I have

    Hello:
              When I open a PDF and try to use the Ctrl F (Find feature), the colorful spin wheel pops up and it spins for a while. When it finishes I get an error box that’s titled ‘Adobe Reader Quit Unexpectantly’. The following is all of the information in that box. I work off of a MACBOOK Pro, version 10.9.2. I have the latest version of Adobe Reader downloaded. Please help, as I need to use the Adobe Reader for my class. I have an assignment due by 11:59pm Monday 3/10.
    Error Message Below:
    Problem Details and System Configuration
    Process:         AdobeReader [1423] 
    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 [157]
    Responsible:     AdobeReader [1423]
    User ID:         501
    Date/Time:       2014-03-09 23:34:16.983 -0400
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  8617A4DB-F5EF-60C5-CADF-243F00035FD6
    Sleep/Wake UUID: 72F58578-8A21-4473-8D1D-0802EE6BEAE8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bf7d602c
    VM Regions Near 0xbf7d602c:
        __LINKEDIT             00000000bab23000-00000000bab25000 [    8K] r--/rwx SM=COW  /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    --> Stack                  00000000bbfd7000-00000000bf7d7000 [ 56.0M] ---/rwx SM=NUL 
        Stack                  00000000bf7d7000-00000000bffd7000 [ 8192K] rw-/rwx SM=COW 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.ColorSync                     0x96b63cd2 ConversionManager::ApplySequenceToBitmap(CMMConvNode*, CMMEncoDec&, CMMRuntimeInfo*, unsigned long, CMMProgressNotifier*) + 12
    1   com.apple.ColorSync                     0x96b4d64d CMMProcessBitmap(CMMConversionParams*) + 626
    2   com.apple.ColorSync                     0x96b4d176 DoApplyTransform + 690
    3   com.apple.ColorSync                     0x96b4ea70 AppleCMMApplyTransform + 235
    4   com.apple.ColorSync                     0x96b8bfb8 ColorSyncCMMApplyTransform + 118
    5   com.apple.ColorSync                     0x96b3a1ad ColorSyncTransformConvert + 200
    6   libCGCMS.A.dylib                        0x9492ac04 ConvertImageGeneric + 690
    7   libCGCMS.A.dylib                        0x9492a944 CMSColorWorldConvertData + 33
    8   libCGCMS.A.dylib                        0x9492aef5 CMSTransformConvertData + 47
    9   com.apple.CoreGraphics                  0x9b6b9c91 CGCMSTransformConvertData + 56
    10  com.apple.CoreGraphics                  0x9b6b9c36 CGColorTransformConvertData + 201
    11  libRIP.A.dylib                          0x91c8acb5 ripc_AcquireFunction + 2033
    12  libRIP.A.dylib                          0x91c89fa8 ripc_DrawShading + 9462
    13  com.apple.CoreGraphics                  0x9b6bc711 CGContextDrawShading + 66
    14  com.adobe.Acrobat.framework             0x0014656c 0x33000 + 1127788
    15  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    16  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    17  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    18  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    19  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    20  com.adobe.Acrobat.framework             0x0040bd6d 0x33000 + 4033901
    21  com.adobe.Acrobat.framework             0x0053f04e 0x33000 + 5292110
    22  com.adobe.Acrobat.framework             0x004aa9d5 0x33000 + 4684245
    23  com.adobe.Acrobat.framework             0x004ac0c3 0x33000 + 4690115
    24  com.adobe.Acrobat.framework             0x004ace91 0x33000 + 4693649
    25  com.adobe.Acrobat.framework             0x004acf98 0x33000 + 4693912
    26  com.adobe.Acrobat.framework             0x004abfaf 0x33000 + 4689839
    27  com.adobe.Acrobat.framework             0x0053e786 0x33000 + 5289862
    28  com.adobe.Acrobat.framework             0x0053dad5 0x33000 + 5286613
    29  com.adobe.Acrobat.framework             0x0014539a 0x33000 + 1123226
    30  com.adobe.Acrobat.framework             0x00144ec3 0x33000 + 1121987
    31  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    32  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    33  com.adobe.Acrobat.framework             0x0014567b 0x33000 + 1123963
    34  com.adobe.Acrobat.framework             0x00144f62 0x33000 + 1122146
    35  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    36  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    37  com.adobe.Acrobat.framework             0x0014567b 0x33000 + 1123963
    38  com.adobe.Acrobat.framework             0x00144f62 0x33000 + 1122146
    39  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    40  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    41  com.adobe.Acrobat.framework             0x0014567b 0x33000 + 1123963
    42  com.adobe.Acrobat.framework             0x00144f62 0x33000 + 1122146
    43  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    44  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    45  com.adobe.Acrobat.framework             0x0014567b 0x33000 + 1123963
    46  com.adobe.Acrobat.framework             0x00144f62 0x33000 + 1122146
    47  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    48  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    49  com.adobe.Acrobat.framework             0x004b6aa7 0x33000 + 4733607
    50  com.adobe.Acrobat.framework             0x00119590 0x33000 + 943504
    51  com.adobe.Acrobat.framework             0x00145dbd 0x33000 + 1125821
    52  com.adobe.Acrobat.framework             0x00144f9e 0x33000 + 1122206
    53  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    54  com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    55  com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    56  com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    57  com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    58  com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    59  com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    60  com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    61  com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    62  com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    63  com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    64  com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    65  com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    66  com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    67  com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    68  com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    69  com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    70  com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    71  com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    72  com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    73  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    74  com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    75  com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    76  com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    77  com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    78  com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    79  com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    80  com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    81  com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    82  com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    83  com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    84  com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    85  com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    86  com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    87  com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    88  com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    89  com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    90  com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    91  com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    92  com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    93  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    94  com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    95  com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    96  com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    97  com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    98  com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    99  com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    100 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    101 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    102 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    103 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    104 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    105 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    106 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    107 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    108 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    109 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    110 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    111 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    112 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    113 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    114 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    115 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    116 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    117 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    118 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    119 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    120 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    121 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    122 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    123 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    124 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    125 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    126 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    127 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    128 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    129 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    130 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    131 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    132 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    133 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    134 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    135 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    136 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    137 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    138 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    139 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    140 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    141 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    142 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    143 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    144 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    145 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    146 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    147 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    148 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    149 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    150 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    151 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    152 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    153 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    154 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    155 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    156 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    157 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    158 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    159 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    160 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    161 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    162 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    163 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    164 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    165 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    166 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    167 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    168 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    169 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    170 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    171 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    172 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    173 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    174 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    175 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    176 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    177 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    178 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    179 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    180 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    181 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    182 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    183 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    184 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    185 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    186 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    187 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    188 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    189 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    190 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    191 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    192 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    193 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    194 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    195 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    196 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    197 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    198 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    199 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    200 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    201 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    202 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    203 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    204 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    205 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    206 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    207 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    208 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    209 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    210 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    211 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    212 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    213 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    214 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    215 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    216 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    217 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    218 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    219 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    220 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    221 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    222 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    223 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    224 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    225 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    226 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    227 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    228 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    229 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    230 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    231 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    232 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    233 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    234 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    235 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    236 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    237 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    238 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    239 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    240 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    241 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    242 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    243 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    244 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    245 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    246 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    247 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    248 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    249 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    250 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    251 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    252 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    253 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    254 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    255 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    256 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    257 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    258 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    259 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    260 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    261 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    262 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    263 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    264 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    265 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    266 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    267 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    268 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    269 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    270 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    271 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    272 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    273 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    274 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    275 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    276 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    277 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    278 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    279 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    280 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    281 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    282 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    283 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    284 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    285 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    286 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    287 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    288 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    289 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    290 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    291 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    292 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    293 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    294 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    295 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    296 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    297 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    298 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    299 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    300 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    301 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    302 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    303 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    304 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    305 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    306 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    307 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    308 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    309 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    310 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    311 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    312 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    313 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    314 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    315 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    316 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    317 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    318 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    319 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    320 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    321 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    322 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    323 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    324 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    325 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    326 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    327 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    328 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    329 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    330 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    331 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    332 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    333 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    334 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    335 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    336 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    337 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    338 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    339 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    340 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    341 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    342 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    343 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    344 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    345 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    346 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    347 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    348 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    349 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    350 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    351 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    352 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    353 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    354 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    355 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    356 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    357 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    358 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    359 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    360 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    361 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    362 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    363 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    364 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    365 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    366 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    367 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    368 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    369 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    370 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    371 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    372 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    373 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    374 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    375 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    376 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    377 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    378 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    379 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    380 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    381 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    382 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    383 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    384 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    385 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    386 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    387 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    388 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    389 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    390 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    391 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    392 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    393 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    394 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    395 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    396 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    397 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    398 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    399 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    400 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    401 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    402 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    403 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    404 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    405 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    406 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    407 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    408 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    409 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    410 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    411 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    412 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    413 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    414 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    415 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    416 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    417 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    418 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    419 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    420 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    421 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    422 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    423 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    424 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    425 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    426 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    427 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    428 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    429 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    430 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    431 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    432 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    433 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    434 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    435 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    436 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    437 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    438 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    439 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    440 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    441 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    442 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    443 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    444 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    445 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    446 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    447 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    448 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    449 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    450 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    451 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    452 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    453 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    454 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    455 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    456 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    457 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    458 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    459 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    460 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    461 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    462 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    463 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    464 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    465 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    466 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    467 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    468 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    469 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    470 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    471 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    472 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    473 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    474 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    475 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    476 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    477 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    478 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    479 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    480 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    481 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    482 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    483 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    484 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    485 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    486 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    487 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    488 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    489 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    490 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    491 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    492 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    493 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    494 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    495 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    496 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    497 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    498 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    499 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    500 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    501 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    502 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    503 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    504 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    505 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    506 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    507 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    508 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    509 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    510 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    511 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    Thread 1:: Dispatch queue: NSOperationQueue 0x7a62c400
    0   libsystem_kernel.dylib                  0x906efb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9be20fb7 nanosleep$UNIX2003 + 219
    2   com.apple.Foundation                    0x94b54621 +[NSThread sleepForTimeInterval:] + 170
    3   com.adobe.Acrobat.framework             0x00a4c569 0x33000 + 10589545
    4   com.apple.Foundation                    0x94ac234c -[__NSOperationInternal _start:] + 702
    5   com.apple.Foundation                    0x94ac2081 -[NSOperation start] + 71
    6   com.apple.Foundation                    0x94ac1fa8 __NSOQSchedule_f + 50
    7   libdispatch.dylib                       0x93021e11 _dispatch_async_redirect_invoke + 158
    8   libdispatch.dylib                       0x9301d396 _dispatch_client_callout + 50
    9   libdispatch.dylib                       0x9301f457 _dispatch_root_queue_drain + 257
    10  libdispatch.dylib                       0x93020722 _dispatch_worker_thread2 + 39
    11  libsystem_pthread.dylib                 0x936eadab _pthread_wqthread + 336
    12  libsystem_pthread.dylib                 0x936eecce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x906f0992 kevent64 + 10
    1   libdispatch.dylib                       0x9301f8ad _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x9301f546 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x906ef7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x936ebd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x936edbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x913f1682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x913f18a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x913bdcf2 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x019f94dc 0x19f7000 + 9436
    7   com.adobe.ACE                           0x019f9441 0x19f7000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x913be2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x906ef7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x936ebd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x936edbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x01b61f67 0x1b56000 + 48999
    4   com.adobe.AGM                           0x01b61ea6 0x1b56000 + 48806
    5   com.adobe.AGM                           0x01b61e44 0x1b56000 + 48708
    6   com.adobe.AGM                           0x01b61ae4 0x1b56000 + 47844
    7   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x906eaf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x906ea16c mach_msg + 68
    2   com.apple.CoreFoundation                0x996f0d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x996f0301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x996efb1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x996ef97b CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x9602cb68 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x906f0976 kevent + 10
    1   com.adobe.Acrobat.framework             0x00f6d771 0x33000 + 15968113
    2   com.adobe.Acrobat.framework             0x00ede593 0x33000 + 15381907
    3   com.adobe.Acrobat.framework             0x00edb04b 0x33000 + 15368267
    4   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x906eaf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x906ea16c mach_msg + 68
    2   com.apple.CoreFoundation                0x996f0d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x996f0301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x996efb1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x996ef97b CFRunLoopRunInMode + 123
    6   com.adobe.AcrobatPlugin.EFS             0x055e6876 0x55cf000 + 96374
    7   com.apple.Foundation                    0x94b26f0e -[NSThread main] + 45
    8   com.apple.Foundation                    0x94b26e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 8:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x906eaf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x906ea16c mach_msg + 68
    2   com.apple.CoreFoundation                0x996f0d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x996f0301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x996efb1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x996ef97b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x94b27095 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation                    0x94b26f0e -[NSThread main] + 45
    8   com.apple.Foundation                    0x94b26e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        

    Acrobat Support

  • Can I use the CD key more than once?

    I bought Lightroom as a Christmas present for my husband this year, but his laptop was stolen recently. It will be a few months before we can afford getting him a new one, and I want him to still be able to use Lightroom until then, so I was considering installing it on my computer, if it will do so (my computer is getting a bit old). But I don't want to do that unless he'll still be able to use the CD key to install it on a new laptop once we get him one. I've never had to worry about installing software on more than one computer, so I'm not completely sure of myself here. Any advice?

    LR’s license, like most Adobe products’ licenses, is for one person on two different computers, with a desktop and a laptop or a work computer and a home computer being the typical examples, as long as only one of those computers is used at a time.

  • SSL: How to use the same key pair for ABAP & JAVA?

    Hello,
    I want to setup an XI (3.0 on Netweaver04)installation in the way, that ABAP AS and JAVA AS use the same key pair for SSL. My problem is to define the same private key on ABAP and JAVA. With the JAVA Administrator I am able to define or import a private key. But I could not find a possibility in ABAP to manage private keys in order to use the same on as in JAVA. What is the procedure for this?
    Thanks and Regards,
    Frank Tottleben

    Hello,
    I want to setup an XI (3.0 on Netweaver04)installation in the way, that ABAP AS and JAVA AS use the same key pair for SSL. My problem is to define the same private key on ABAP and JAVA. With the JAVA Administrator I am able to define or import a private key. But I could not find a possibility in ABAP to manage private keys in order to use the same on as in JAVA. What is the procedure for this?
    Thanks and Regards,
    Frank Tottleben

  • How to use the distinct key in formula field in SAP Crystal Reports

    I want to use the distinct key in formula field in SAP Crystal reports.
    When i'm using it shows an error.
    Please suggest me....

    Hi,
    Use DistinctCount keyword directly for your calculation instead of count(distinct(....
    Alternatively, if you want to avoid duplicate records, under "File" > "Report Options" make the 'Select Distinct Records' as True.
    Thanks,
    Raghavendra

Maybe you are looking for