Dialog box position problem

Hi everyone,
I've got a simple problem : when I enter in my Portal in hebrew language, the dialog box position is not respected.
I used the dialog.setWindowPosition(x, y)
and dialog.setWindowPosition(WDWindowPos.CENTER)
but the window always appears behind the navigation of the Portal.....which is half readable.
Can someone please help with that issue ?
Thanks in advance.
Regards.

Hi,
Here is the code :
IWDConfirmationDialog dialog = wdComponentAPI.getWindowManager().createConfirmationWindow("Hello world" , wdThis.wdGetAPI().getViewInfo().getViewController().findInEventHandlers("OK"), "Ok");
dialog.setWindowPosition(10,10);          
dialog.open();     
The position (10, 10) does not do anything...the window is display in the center.
Thanks
NB : I want to correct something : the issue is also relevant if I enter in my Portal in english language.
Message was edited by: David Fryda

Similar Messages

  • File Dialog Box Position

    Hi there,
    I've been unable to find anyone else mention this problem, but then again, I'm not exactly what to search for.
    Since installing Lion, I've had a problem where when I try to open the file dialog box to save or open a file, it's position is always further down.  This is annoying, especially for programs that open files from my Download folder, which is continuinally growing as I add more stuff.  The sort on this is by date, and so usually I want to open the most recently downloaded file, which I have to scroll further and further up each time.
    Is there any way I can get it to jump to the top?
    See the attached image to see what I mean exactly.
    Thanks!

    the length of the session is not the problem. it is set to 50bpm at 29.97 drop frame which gives me 2138 bars at 3 hours 51 minutes record time. I only used 1896 bars at 2.5 hours to record the program and there were only 5 tracks recorded. the problem starts when I try to bounce the session to an interleaved stereo file either online or offline. a dialog window says it will exceed 2gigs and prevents me from performing the bounce. only when I select split stereo instead of interleaved within the bounce window does it let me bounce. I think it is because the 2 resulting mono files(left and right)are each less than 2gigs. Is there a limit to the file size you can create when bouncing?
    a 2gig file sounds small to me when there are video files much larger within video editing software.

  • 'Save Scanned File As' dialog box causing problems

    A lot of our users just upgraded to Adobe Std 8 from Adobe Std 7. With Adobe Std 8, the 'Save Scanned File As' dialog box comes up even before the document gets scanned (this was not the case with Adobe Std 7). How do you get rid of the dialog box? This is causing us a lot of problems because our Adobe is integrated with a document management program called DM5. With Adobe Standard 8 our users cannot save directly to DM5.Because the
    #Save Scanned File As# dialog box comes up first, now they have to tell Adobe to save it first somewhere other than DM, after the document
    gets scanned they save the document again to DM then they go back and delete the document that they saved in the other location. Is there a registry setting or anything that I can set to get rid of the 'Save Scanned File As' box. If you hit CANCEL, the document does not get scanned so users really do not have a choice but to save the document twice. As I said earlier, this was not the case with Adobe Std 7.

    Is there a registry setting or anything that I can set to get rid of the 'Save Scanned File As' box.
    No.

  • Editor, title, dialog box, position

    hi there;
    when i encounter an ora-xxxx error msg, a dialog box appears normally;
    but the title of the box appears nearly 5 pixel over where it must be displayed.
    how strange? what is the reason? i would like to paste an image, unfortunately
    i can not provide one.

    I have noticed the same thing - I think the problem is that they are including a trailing line break character and therefore think that the error message is two lines high, rather than just one.

  • Amodal dialog box: positioning in lower right corner of screen

    I have what seems a quite common requirement, that is to automatically position an amodal dialog box (CL_ABAP_DIALOGBOX_CONTAINER) to the lower right corner of the screen.
    The logical approach to do this would be to read the screen resolution, deduct the size of the box, and pass the result to the TOP and LEFT parameters of the constructor of the container.
    Unfortunately, I haven't found any documentation of what the values for TOP and LEFT (and for WIDTH and HEIGHT, for that matter) really represent. They're not screen pixels, that's for sure.
    To read the screen resolution, I execute the following code:
    DATA:
      lo_consumer       TYPE REF TO cl_gui_props_consumer,
      ls_metric_factors TYPE cntl_metric_factors.
      lo_consumer = cl_gui_props_consumer=>create_consumer( ).
      ls_metric_factors = lo_consumer->get_metric_factors( ).
    In ls_metric_factors-screen-x and ls_metric_factors-screen-y I get back the screen resolution (x = 1280 and y = 994 on a 1280 x 1024 screen, weirdly, but close enough). Got this from another SDN post, BTW - thanks.
    When I manually position my dialog box to the farthest right lower corner, so that the mouse cursor can just about reach it, the GET_LEFT and GET_TOP methods for the dialog box return LEFT = 1453 and TOP = 387. So, obviously, these values have nothing to do with screen pixels.
    What I did, then, was to calculate a factor between the screen pixels and the TOP and LEFT values - a factor which is different for the X and the Y dimensions. I got:
    - (1453 / 1280) = 1.135 for the x dimension
    - (387 / 994) = 0.389 for the y dimension.
    With these factors, I calculate the initial position of the box as follows:
    l_box_pos_x = ( ls_metric_factors-screen-x * lc_factor_x ) - lc_box_width.
    l_box_pos_y = ( ls_metric_factors-screen-y * lc_factor_y ) - lc_box_height.
    This seems to work fine, at least on my system and my front-end PC, with all supported resolutions from 800 x 600 up to 1280 x 1024.
    It just leaves the question open: Does anybody know what the unit of measure for the sizing and positioning parameters of controls is? Why a box with a width and a height of 100 [whatevers] each is not square, but rectangular?
    And finally: does somebody have a more intelligent way to do this?
    Thanks, regards & stuff
    Rainer

    Hi Rainer,
    While creating the dialogbox container object, just set metric property to '1' (for Pixels) and then while setting TOP and LEFT you can provide pixels.
    For example,
        CREATE OBJECT REF_DIALOGBOX_CONTAINER
            EXPORTING
                WIDTH = 100
                HEIGHT = 100
                TOP = 638
                LEFT = 924
                CAPTION = 'hello world'
    <b>            metric = 1.</b>
    Then your calculation simply becomes,
    l_box_pos_x = ls_metric_factors-screen-x - lc_box_width.
    l_box_pos_y = ls_metric_factors-screen-y - lc_box_height.
    <b>NOTE: Now you will see that your dialog box is a SQUARE!!</b>
    Hope this helps..
    Sri

  • Dialog box paint problem

    I am having a dialog box with 2 text fields and 2 buttons.
    When the dialog box is displayed it is not painted properly.
    How to paint the dialog box as well as the controls in it

    something like:
    JDialog dialog = new JDialog((Frame) null, "Dialog", true);
    Container dialogContentPane = dialog.getContentPane();
    dialogContentPane.setLayout(new FlowLayout());
    dialogContentPane.add(t1);
    dialogContentPane.add(t2);
    dialogContentPane.add(b1);
    dialogContentPane.add(b2);t1, t2, .. are ur textfieldz/buttons

  • Child Dialog Box

    I am having a jpanel , from jpanel i am invoking a new dialog box, The problem is when I open the dialog box and minimize the panel , the dialog box doesn't get minimized . So it look likes , it is not a child of the parent ,
    can anybody suggest me some solution
    Thanks inn advance .
    -amit

    So it look likes , it is not a child of the parent , When you created the JDialog, did you specify the JFrame as the parent? Take a look at the constructors for JDialog and make sure you are using the correct constructor.

  • I've developed the problem that when I click on something I get a dialog box with a mess of stuff such as: Back,re;oad page ,Open in dashboard ,print page, etc. It's quite annoying!

    I have a problem that when I click on something I get a dialog box with Back,Reload page, Open in Dashboard,View Source Save page as ETC. I don't get the normal or expected respose to a simple "click". Another problem. For some reason the back and forth arrows it the tool bar of Safari have shifted from the upper left hand cornor to the uuuer rihht hand cornor.

    Something is seriously wrong then.  Did you move it?  There are several Library folders.  One of them should be inside your HOME folder.
    If WZZZ suggestion does not work, re-install your OS by using Mac OS X 10.6.8 Update Combo.  When done, repair permissions and restart your computer.

  • Can Open dialog box be made to always open same size and position?

    The Open and the Save As dialog boxes used to reopen at the same position and size as last used.  In Mavericks the always open in a small dialog box in the upper center.  Can this be changed to open in the size of and where they were last used>

    Not that I know of. Everytime it starts it begins in the upper left corner and each new window is moved down and to the right slightly. Keeps doing that until you quit, and starts over when it launched.
    Francine
    Francine
    Schwieder

  • Autofs.service causing problems with gnome's save dialog boxes

    Recently I have been having a problem saving files to disk using the gnome save dialog box when autofs is running. Basically what happens is most of the folders on the right side of the save dialog disappear (see screenshot below) and remaining few become unresponsive when clicked. If I wait a few minutes the folders will eventually appear and work when clicked, but needless to say this is annoying.
    I can "fix" this  problem instantly by simply running systemctl stop autofs.service, but this is not a good solution because I like the convenience of mounting my  NFS shares on demand.

    Recently I have been having a problem saving files to disk using the gnome save dialog box when autofs is running. Basically what happens is most of the folders on the right side of the save dialog disappear (see screenshot below) and remaining few become unresponsive when clicked. If I wait a few minutes the folders will eventually appear and work when clicked, but needless to say this is annoying.
    I can "fix" this  problem instantly by simply running systemctl stop autofs.service, but this is not a good solution because I like the convenience of mounting my  NFS shares on demand.

  • Has anyone had the problem that I'm having - that Safari unexpectedly quit when trying to open and now I can't reopn in using the dialog box. I've also read the troubleshooting suggestion to force quit, but I can't do this as the safari immediately c

    For the past week, every time I try to open Safari I've been receiving the message saying that Safari has quit unexpectedly.
    A dialog box comes up giving me the option to ignore, report or reopen.
    When I try to reopen the same box just keeps coming up.
    I've reported it and another box comes up with a '?' . I've checked this and it gives suggestions for how to rectify the issue. I've looked at all options but none answer my problem. One suggested that I force quit in the system preferences. However I can't get the safari icon to stay on the top bar long enough for me to click on it in order to force the quit.
    I wonder if anyone else has been having this problem and can suggest a way to solve it.
    Thank you very much,
    Clare.

    Process:          
    Safari [422]
    Path:             
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:       
    com.apple.Safari
    Version:          
    8.0.2 (10600.2.5)
    Build Info:       
    WebBrowser-7600002005000000~1
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    Safari [422]
    User ID:          
    502
    Date/Time:        
    2015-01-04 15:35:34.967 +0000
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    CB78841A-4FFB-9877-E4F8-0DD0A258C566
    Time Awake Since Boot: 760 seconds
    Crashed Thread:   
    13
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
    __TEXT            
    000000010b987000-000000010b988000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x00007fff9565956a semaphore_wait_trap + 10
    1   libdispatch.dylib       
    0x00007fff9162ab9c _dispatch_group_wait_slow + 218
    2   com.apple.CloudDocs     
    0x00007fff915b2a1a -[BRXPCSyncProxy resultWithTimeout:] + 57
    3   com.apple.CloudDocs     
    0x00007fff9159e416 +[BRAccount _refreshCurrentLoggedInAccountForcingRefresh:error:] + 287
    4   com.apple.CloudDocs     
    0x00007fff9159e5ba +[BRAccount currentCachedLoggedInAccountWithError:] + 39
    5   com.apple.CloudDocs     
    0x00007fff915b6c06 LBCopyUbiquityAccountToken + 51
    6   com.apple.Foundation    
    0x00007fff92cc7f35 -[NSFileManager ubiquityIdentityToken] + 48
    7   com.apple.AppKit        
    0x00007fff8d72877c +[NSDocument _isICloudEnabled] + 41
    8   com.apple.AppKit        
    0x00007fff8d7952c9 -[NSDocumentController(NSInternal) _anyDocumentClassUsesUbiquitousStorage] + 86
    9   com.apple.AppKit        
    0x00007fff8d795192 +[NSSavePanel _supportsAppCentricBrowsing] + 99
    10  com.apple.AppKit        
    0x00007fff8d6cb95c -[NSApplication _doOpenUntitled] + 170
    11  com.apple.AppKit        
    0x00007fff8d604b91 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke + 252
    12  com.apple.AppKit        
    0x00007fff8dd2a5b0 __95-[NSPersistentUIManager restoreAllPersistentStateRegisteringAsReadyWhenDone:completionHandler:]_block_i nvoke557 + 37
    13  com.apple.AppKit        
    0x00007fff8d90e389 __97-[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:]_block_invoke_3 + 140
    14  com.apple.AppKit        
    0x00007fff8d90dd81 -[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:] + 798
    15  com.apple.AppKit        
    0x00007fff8d5fd354 -[NSPersistentUIRestorer finishedRestoringWindowsWithZOrder:completionHandler:] + 1745
    16  com.apple.AppKit        
    0x00007fff8d4ae62c -[NSPersistentUIRestorer restoreStateFromRecords:usingDelegate:completionHandler:] + 2118
    17  com.apple.AppKit        
    0x00007fff8d4adc91 -[NSPersistentUIManager restoreAllPersistentStateRegisteringAsReadyWhenDone:completionHandler:] + 406
    18  com.apple.AppKit        
    0x00007fff8d4acf37 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 412
    19  com.apple.AppKit        
    0x00007fff8d4acc69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    20  com.apple.AppKit        
    0x00007fff8d4ac6b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    21  com.apple.Foundation    
    0x00007fff92cdb458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    22  com.apple.Foundation    
    0x00007fff92cdb2c9 _NSAppleEventManagerGenericHandler + 102
    23  com.apple.AE            
    0x00007fff94c5499c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    24  com.apple.AE            
    0x00007fff94c54719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    25  com.apple.AE            
    0x00007fff94c54623 aeProcessAppleEvent + 295
    26  com.apple.HIToolbox     
    0x00007fff9071c37e AEProcessAppleEvent + 56
    27  com.apple.AppKit        
    0x00007fff8d4a8d76 _DPSNextEvent + 2665
    28  com.apple.AppKit        
    0x00007fff8d4a7e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    29  com.apple.Safari.framework  
    0x000000010ba09ad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    30  com.apple.AppKit        
    0x00007fff8d49be23 -[NSApplication run] + 594
    31  com.apple.AppKit        
    0x00007fff8d4872d4 NSApplicationMain + 1832
    32  libdyld.dylib           
    0x00007fff90c655c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff9565f22e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff91623a6a _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: com.apple.WebKit.ServicesController
    0   libsystem_kernel.dylib  
    0x00007fff9565956a semaphore_wait_trap + 10
    1   libdispatch.dylib       
    0x00007fff91627c55 _dispatch_semaphore_wait_slow + 213
    2   libextension.dylib      
    0x00007fff86f8cb62 +[NSExtension extensionsWithMatchingAttributes:error:] + 321
    3   com.apple.ShareKit      
    0x00007fff8a86b80e +[SHKSharingService sharingServicesWithIdentifier:attributes:itemTypes:matchingDictionary:itemAttri butes:] + 1273
    4   com.apple.ShareKit      
    0x00007fff8a86bfca +[SHKSharingService sharingServicesForItems:mask:] + 894
    5   com.apple.AppKit        
    0x00007fff8dd9646a +[NSSharingService sharingServicesForItems:mask:] + 69
    6   com.apple.WebKit        
    0x000000010cf6ef01 ___ZN6WebKit18ServicesController23refreshExistingServicesEb_block_invoke + 191
    7   libdispatch.dylib       
    0x00007fff91625323 _dispatch_call_block_and_release + 12
    8   libdispatch.dylib       
    0x00007fff91620c13 _dispatch_client_callout + 8
    9   libdispatch.dylib       
    0x00007fff91624365 _dispatch_queue_drain + 1100
    10  libdispatch.dylib       
    0x00007fff91625ecc _dispatch_queue_invoke + 202
    11  libdispatch.dylib       
    0x00007fff916236b7 _dispatch_root_queue_drain + 463
    12  libdispatch.dylib       
    0x00007fff91631fe4 _dispatch_worker_thread3 + 91
    13  libsystem_pthread.dylib 
    0x00007fff9608a6cb _pthread_wqthread + 729
    14  libsystem_pthread.dylib 
    0x00007fff960884a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff9565e946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff960884a1 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-qos
    0   libsystem_kernel.dylib  
    0x00007fff9565956a semaphore_wait_trap + 10
    1   libdispatch.dylib       
    0x00007fff91627c55 _dispatch_semaphore_wait_slow + 213
    2   com.apple.StoreFoundation
    0x00007fff87ca46fd -[ISServiceProxy performSynchronousBlock:withServiceName:protocol:isMachService:interfaceClassNa me:] + 273
    3   com.apple.StoreFoundation
    0x00007fff87ca47d1 -[ISServiceProxy accountServiceSynchronousBlock:] + 52
    4   com.apple.CommerceKit   
    0x00007fff9365318c -[CKAccountStore primaryAccount] + 137
    5   com.apple.Safari.framework  
    0x000000010bf817ca __51-[WBSParsecSearchClient _fetchStoreFrontIdentifier]_block_invoke + 68
    6   libdispatch.dylib       
    0x00007fff91625323 _dispatch_call_block_and_release + 12
    7   libdispatch.dylib       
    0x00007fff91620c13 _dispatch_client_callout + 8
    8   libdispatch.dylib       
    0x00007fff9162388f _dispatch_root_queue_drain + 935
    9   libdispatch.dylib       
    0x00007fff91631fe4 _dispatch_worker_thread3 + 91
    10  libsystem_pthread.dylib 
    0x00007fff9608a6cb _pthread_wqthread + 729
    11  libsystem_pthread.dylib 
    0x00007fff960884a1 start_wqthread + 13
    Thread 5:: Dispatch queue: com.apple.NSXPCConnection.m-user.com.apple.bird
    0   libsystem_kernel.dylib  
    0x00007fff9565d806 __bsdthread_ctl + 10
    1   libdispatch.dylib       
    0x00007fff91624022 _dispatch_queue_drain + 265
    2   libdispatch.dylib       
    0x00007fff91625ecc _dispatch_queue_invoke + 202
    3   libdispatch.dylib       
    0x00007fff916236b7 _dispatch_root_queue_drain + 463
    4   libdispatch.dylib       
    0x00007fff91631fe4 _dispatch_worker_thread3 + 91
    5   libsystem_pthread.dylib 
    0x00007fff9608a6cb _pthread_wqthread + 729
    6   libsystem_pthread.dylib 
    0x00007fff960884a1 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsqlite3.dylib        
    0x00007fff8b65680c purgeableCacheUnpin + 28
    1   libsqlite3.dylib        
    0x00007fff8b6da860 sqlite3PagerUnrefNotNull + 224
    2   libsqlite3.dylib        
    0x00007fff8b651371 moveToRoot + 257
    3   libsqlite3.dylib        
    0x00007fff8b65c492 sqlite3BtreeMovetoUnpacked + 242
    4   libsqlite3.dylib        
    0x00007fff8b63bf84 sqlite3VdbeExec + 8660
    5   libsqlite3.dylib        
    0x00007fff8b6383df sqlite3_step + 735
    6   com.apple.WebCore       
    0x000000010d5b0bc9 WebCore::SQLiteStatement::step() + 73
    7   com.apple.WebCore       
    0x000000010d5b1169 WebCore::IconDatabase::performURLImport() + 1113
    8   com.apple.WebCore       
    0x000000010d5af9d1 WebCore::IconDatabase::iconDatabaseSyncThread() + 353
    9   com.apple.JavaScriptCore
    0x000000010c777a9f ***::wtfThreadEntryPoint(void*) + 15
    10  libsystem_pthread.dylib 
    0x00007fff9608a2fc _pthread_body + 131
    11  libsystem_pthread.dylib 
    0x00007fff9608a279 _pthread_start + 176
    12  libsystem_pthread.dylib 
    0x00007fff960884b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib  
    0x00007fff9565e946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff960884a1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x00007fff9565e946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff960884a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff9565e946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff960884a1 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x00007fff9565952e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff9565869f mach_msg + 55
    2   com.apple.QuartzCore    
    0x00007fff90ad8d63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore    
    0x00007fff90ad8c96 thread_fun + 25
    4   libsystem_pthread.dylib 
    0x00007fff9608a2fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff9608a279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff960884b1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib  
    0x00007fff9565e946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff960884a1 start_wqthread + 13
    Thread 12:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff9565952e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff9565869f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff88183b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff88182fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff88182838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork     
    0x00007fff88682d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation    
    0x00007fff92d21b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib 
    0x00007fff9608a2fc _pthread_body + 131
    8   libsystem_pthread.dylib 
    0x00007fff9608a279 _pthread_start + 176
    9   libsystem_pthread.dylib 
    0x00007fff960884b1 thread_start + 13
    Thread 13 Crashed:
    0   libsystem_pthread.dylib 
    0x00007fff96088695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib       
    0x00007fff8697fb78 vfprintf_l + 28
    2   libsystem_c.dylib       
    0x00007fff86978620 fprintf + 186
    3   ???                     
    0x00000001139715dc 0 + 4623635932
    Thread 13 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff767061d8  rcx: 0x00007fff767061f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff767061f0  rsi: 0x00007fff96088b14  rbp: 0x000000011396de30  rsp: 0x000000011396ddb0
       r8: 0x0000000113975000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff767056b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff96088695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:
    0
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x10b987000 -   
    0x10b987fff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
    0x10b993000 -   
    0x10c2ccff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x10c76d000 -   
    0x10cc80ff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x10cde6000 -   
    0x10d09afff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x10d371000 -   
    0x10d371fff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x10d37a000 -   
    0x10d4b6ffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
    0x10d5ab000 -   
    0x10e550ff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x1139b0000 -   
    0x1139b0ff5 +cl_kernels (???) <1BD916A8-0C56-45B3-AF50-4178E0F67F8F> cl_kernels
    0x114408000 -   
    0x1144eefef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x11454a000 -   
    0x11454afff +cl_kernels (???) <5CA5A8E4-5A2F-493A-B720-086E48E064F8> cl_kernels
    0x7fff665ce000 -
    0x7fff66604837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    0x7fff866a6000 -
    0x7fff866a7ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
    0x7fff866a8000 -
    0x7fff866aaff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x7fff866ab000 -
    0x7fff866e3fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff866e4000 -
    0x7fff8675afe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
    0x7fff86836000 -
    0x7fff8690cff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff8693b000 -
    0x7fff869c7fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
    0x7fff869c8000 -
    0x7fff86a5dff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff86a5e000 -
    0x7fff86bc9ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff86bca000 -
    0x7fff86be4ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff86be5000 -
    0x7fff86c12fff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff86c62000 -
    0x7fff86c62fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff86c63000 -
    0x7fff86c69fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff86c9d000 -
    0x7fff86e2bfff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff86e2c000 -
    0x7fff86e4aff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff86e4b000 -
    0x7fff86e76fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x7fff86f6b000 -
    0x7fff86f6bfff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff86f6c000 -
    0x7fff86f70fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff86f88000 -
    0x7fff86f89ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
    0x7fff86f8a000 -
    0x7fff86fa4ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
    0x7fff86fa5000 -
    0x7fff86ffdff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
    0x7fff87017000 -
    0x7fff87071ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x7fff87072000 -
    0x7fff8707affb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x7fff8707b000 -
    0x7fff870b3ffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
    0x7fff870b4000 -
    0x7fff870b6ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
    0x7fff870cf000 -
    0x7fff870d6fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff871aa000 -
    0x7fff871b2ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff87be2000 -
    0x7fff87c0afff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
    0x7fff87c0b000 -
    0x7fff87c27fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff87c28000 -
    0x7fff87c69fff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff87c6a000 -
    0x7fff87cc8fff  com.apple.StoreFoundation (1.0 - 1) <50F9E283-FCE4-306C-AF5D-D0AEA434C04E> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
    0x7fff87cc9000 -
    0x7fff87ccefff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff87d67000 -
    0x7fff87d80fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff87dd1000 -
    0x7fff87dd4fff  libScreenReader.dylib (390.2) <96ACAA49-21B6-3D10-ADF8-FF6C8F22FD9F> /usr/lib/libScreenReader.dylib
    0x7fff87e43000 -
    0x7fff87e48ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff87e49000 -
    0x7fff87e79ffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff88012000 -
    0x7fff88036ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff880d6000 -
    0x7fff880f1fff  com.apple.PackageKit.PackageUIKit (3.0 - 434) <BE4B6C6F-4A32-3DB1-B81B-EF9ADD70E6EA> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
    0x7fff88111000 -
    0x7fff884a7fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff884ae000 -
    0x7fff88556ff7  com.apple.PackageKit (3.0 - 434) <B6C2831E-914D-3E5F-B0E9-A7079489A6FD> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff88557000 -
    0x7fff88560ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff885e2000 -
    0x7fff887e5ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff887e6000 -
    0x7fff88818ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff88819000 -
    0x7fff88824fff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff88825000 -
    0x7fff88858ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff88859000 -
    0x7fff88c66ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff88c9c000 -
    0x7fff89007fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff89008000 -
    0x7fff89117ffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff89118000 -
    0x7fff8911ffff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
    0x7fff89136000 -
    0x7fff89170ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff89171000 -
    0x7fff89356267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
    0x7fff8a301000 -
    0x7fff8a34eff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8a5f8000 -
    0x7fff8a614ff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff8a615000 -
    0x7fff8a642fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8a666000 -
    0x7fff8a67aff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8a67e000 -
    0x7fff8a69aff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8a7d0000 -
    0x7fff8a82bfff  libTIFF.dylib (1231) <ACC9ED11-EED8-3A23-B452-3F40FF7EF435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8a82c000 -
    0x7fff8a836ff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff8a837000 -
    0x7fff8a843ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8a844000 -
    0x7fff8a8b8fff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fff8a8b9000 -
    0x7fff8a8c4ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8a8c5000 -
    0x7fff8a9a8fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8a9a9000 -
    0x7fff8a9b7fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0x7fff8a9b8000 -
    0x7fff8a9e3fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8aa6c000 -
    0x7fff8aa6ffff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff8acce000 -
    0x7fff8acd4ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff8acd5000 -
    0x7fff8ace8ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff8b1fd000 -
    0x7fff8b238fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8b239000 -
    0x7fff8b2fcff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8b416000 -
    0x7fff8b41efff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff8b47a000 -
    0x7fff8b48fff7  com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x7fff8b490000 -
    0x7fff8b494fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
    0x7fff8b495000 -
    0x7fff8b5c7ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x7fff8b5d1000 -
    0x7fff8b713fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
    0x7fff8b721000 -
    0x7fff8b76ffff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
    0x7fff8b770000 -
    0x7fff8bb47fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8be29000 -
    0x7fff8bea6fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8bea7000 -
    0x7fff8bf15ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8bf26000 -
    0x7fff8bf2eff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff8bf2f000 -
    0x7fff8bf8afff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8bf8b000 -
    0x7fff8c0b2fff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8c297000 -
    0x7fff8c297ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
    0x7fff8c298000 -
    0x7fff8c2aaff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
    0x7fff8c2ab000 -
    0x7fff8c2abff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
    0x7fff8c2ac000 -
    0x7fff8c2adfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8c93b000 -
    0x7fff8c9acff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8c9ad000 -
    0x7fff8c9e6fff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x7fff8c9e7000 -
    0x7fff8c9e9fff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff8c9f7000 -
    0x7fff8ca26fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8ca27000 -
    0x7fff8ca27fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <A48738CA-5B6F-3D14-97E9-2BFDFC3DCC06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff8ca28000 -
    0x7fff8ca42ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8ca43000 -
    0x7fff8cb36ff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8cb51000 -
    0x7fff8cb54ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff8cb6a000 -
    0x7fff8cb72fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
    0x7fff8cb73000 -
    0x7fff8cb90fff  com.apple.DistributionKit (700 - 920) <079B0A4A-97CD-34D6-B50D-AB5D656B2A38> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
    0x7fff8cb91000 -
    0x7fff8cc50fff  com.apple.backup.framework (1.6.1 - 1.6.1) <A7BBE57D-D5E7-39DD-812C-31190159F679> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8cc51000 -
    0x7fff8cc59ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x7fff8cfed000 -
    0x7fff8cff1fff  com.apple.LoginUICore (3.0 - 3.0) <D76AB05B-B627-33EE-BA8A-515D85275DCD> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x7fff8cff2000 -
    0x7fff8d114ff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff8d115000 -
    0x7fff8d3e4ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x7fff8d3e5000 -
    0x7fff8d483fff  com.apple.Metadata (10.7.0 - 916.1) <CD389631-0F23-3A29-B43A-E3FFB5BC9438> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8d484000 -
    0x7fff8dfc5fff  com.apple.AppKit (6.9 - 1343.16) <C98DB43F-4245-3E6E-A4EE-37DAEE33E174> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8dfc6000 -
    0x7fff8dfddfff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff8dfde000 -
    0x7fff8dfecff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8dfed000 -
    0x7fff8e0caff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff8e0cb000 -
    0x7fff8e1e3ffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8e1e4000 -
    0x7fff8e1f9fff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff8e1fa000 -
    0x7fff8e240ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
    0x7fff8e248000 -
    0x7fff8e488ff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8e489000 -
    0x7fff8e4afff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff8e4bd000 -
    0x7fff8e53ffff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8e540000 -
    0x7fff8e580ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8e581000 -
    0x7fff8e583fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x7fff8e734000 -
    0x7fff8e77dff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff8e77e000 -
    0x7fff8e787fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff8f126000 -
    0x7fff8f14efff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
    0x7fff8f14f000 -
    0x7fff8f165ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff8f16e000 -
    0x7fff8f20ddf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff8f20e000 -
    0x7fff8f297fff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8f298000 -
    0x7fff8f3c8fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x7fff8f3f4000 -
    0x7fff8f3f4fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8f3f5000 -
    0x7fff8f421fff  libsandbox.1.dylib (358.1.1) <9A00BD06-579F-3EDF-9D4C-590DFE54B103> /usr/lib/libsandbox.1.dylib
    0x7fff8f422000 -
    0x7fff8f438ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x7fff8f47b000 -
    0x7fff8f486ff7  com.apple.CommerceCore (1.0 - 376.0.5) <57E5C067-52F6-3854-86C0-D878EDA24B55> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8f487000 -
    0x7fff8f492ff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8f5fa000 -
    0x7fff8f649ff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8f64a000 -
    0x7fff8f6dbfff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff8f6e4000 -
    0x7fff8f6e6ffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x7fff8f6e7000 -
    0x7fff8f82bff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff8f841000 -
    0x7fff8f84eff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
    0x7fff8f84f000 -
    0x7fff8f8e0ff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
    0x7fff8f8e4000 -
    0x7fff8f8e7fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8f921000 -
    0x7fff8f922fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
    0x7fff8f92c000 -
    0x7fff8f940ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    0x7fff8f990000 -
    0x7fff8fa04ff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8fa05000 -
    0x7fff8fa16ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
    0x7fff8fa17000 -
    0x7fff8fa36fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff8fa37000 -
    0x7fff8fa41fff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x7fff8fa42000 -
    0x7fff8fa44ff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8fa45000 -
    0x7fff8fa53fff  libIASAuthReboot.dylib (920) <B165E345-197F-3DC7-A52B-64C34FD95D0A> /usr/lib/libIASAuthReboot.dylib
    0x7fff8fa54000 -
    0x7fff8fa5fff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
    0x7fff8fa60000 -
    0x7fff8fcc8ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8fcc9000 -
    0x7fff8fd30ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff8fd31000 -
    0x7fff8fd35ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8fd36000 -
    0x7fff8fd8afff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff8fd8b000 -
    0x7fff8fdd5fff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff8fdd6000 -
    0x7fff8fde3fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x7fff8fde4000 -
    0x7fff8fde4fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8fe0a000 -
    0x7fff8fe13ff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
    0x7fff8fe14000 -
    0x7fff900fbffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff9

  • Problem description: Computer takes a long time to fire up. Spinning ball is seen during start up, sometimes when login dialog box, and sometimes after entering login password. My mac freeze often, especially when using Lightroom-.

    Problem description:
    Computer takes a long time to fire up. Spinning ball is seen during start up, sometimes when login dialog box, and sometimes after entering login password. My mac freeze often, especially when using Lightroom….     Help is much appreciated!
    EtreCheck version: 2.0.11 (98)
    Report generated 3. november 2014 kl. 01.23.41 CET
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2010) (Verified)
      MacBook Pro - model: MacBookPro7,1
      1 2.4 GHz Intel Core 2 Duo CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 320M - VRAM: 256 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 2:49:19
    Disk Information: ℹ️
      Samsung SSD 840 EVO 500GB disk0 : (500,11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 499.25 GB (260.35 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. Built-in iSight
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
    Configuration files: ℹ️
      /etc/sysctl.conf - Exists
      /etc/hosts - Count: 15
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/IPVanish.app
      [not loaded] foo.tap (1.0) Support
      [not loaded] foo.tun (1.0) Support
      /Applications/LaCie Desktop Manager.app
      [not loaded] com.LaCie.ScsiType00 (1.2.13 - SDK 10.5) Support
      [not loaded] com.jmicron.driver.jmPeripheralDevice (2.0.4) Support
      [not loaded] com.lacie.driver.LaCie_RemoteComms (1.0.1 - SDK 10.5) Support
      [not loaded] com.oxsemi.driver.OxsemiDeviceType00 (1.28.13 - SDK 10.5) Support
      /Applications/Private Eye.app
      [loaded] com.radiosilenceapp.nke.PrivateEye (1 - SDK 10.7) Support
      /Library/Application Support/HASP/kexts
      [not loaded] com.aladdin.kext.aksfridge (1.0.2) Support
      /System/Library/Extensions
      [loaded] com.hzsystems.terminus.driver (4) Support
      [not loaded] com.nvidia.CUDA (1.1.0) Support
      [not loaded] com.roxio.BluRaySupport (1.1.6) Support
      [not loaded] com.sony.filesystem.prodisc_fs (2.3.0) Support
      [not loaded] com.sony.protocol.prodisc (2.3.0) Support
      /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
      [not loaded] com.roxio.TDIXController (2.0) Support
    Startup Items: ℹ️
      CUDA: Path: /System/Library/StartupItems/CUDA
      ProTec6b: Path: /Library/StartupItems/ProTec6b
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.adobe.AdobeCreativeCloud.plist Support
      [loaded] com.adobe.CS5ServiceManager.plist Support
      [running] com.digitalrebellion.EditmoteListener.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.intego.backupassistant.agent.plist Support
      [running] com.mcafee.menulet.plist Support
      [invalid?] com.mcafee.reporter.plist Support
      [loaded] com.nvidia.CUDASoftwareUpdate.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [running] com.orbicule.WitnessUserAgent.plist Support
      [loaded] com.xrite.device.softwareupdate.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [running] com.aladdin.aksusbd.plist Support
      [failed] com.aladdin.hasplmd.plist Support
      [running] com.edb.launchd.postgresql-8.4.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.intego.BackupAssistant.daemon.plist Support
      [loaded] com.ipvanish.helper.openvpn.plist Support
      [loaded] com.ipvanish.helper.pppd.plist Support
      [invalid?] com.mcafee.ssm.ScanFactory.plist Support
      [invalid?] com.mcafee.ssm.ScanManager.plist Support
      [running] com.mcafee.virusscan.fmpd.plist Support
      [loaded] com.mvnordic.mvlicensehelper.offline.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [running] com.orbicule.witnessd.plist Support
      [loaded] com.radiosilenceapp.nke.PrivateEye.plist Support
      [running] com.xrite.device.xrdd.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [invalid?] com.digitalrebellion.SoftwareUpdateAutoCheck.plist Support
      [loaded] com.facebook.videochat.[redacted].plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
      [running] com.spotify.webhelper.plist Support
    User Login Items: ℹ️
      Skype Program (/Applications/Skype.app)
      GetBackupAgent Program (/Users/[redacted]/Library/Application Support/BeLight Software/Get Backup 2/GetBackupAgent.app)
      PhoneViewHelper Program (/Users/[redacted]/Library/Application Support/PhoneView/PhoneViewHelper.app)
      EarthDesk Core UNKNOWN (missing value)
      Dropbox Program (/Applications/Dropbox.app)
      AdobeResourceSynchronizer ProgramHidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
      i1ProfilerTray Program (/Applications/i1Profiler/i1ProfilerTray.app)
    Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.0 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      iPhotoPhotocast: Version: 7.0
      SiteAdvisor: Version: 2.0 - SDK 10.1 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      GarminGPSControl: Version: 3.0.1.0 Release - SDK 10.4 Support
      JavaAppletPlugin: Version: Java 7 Update 71 Check version
    User Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.2 Support
      F5 Inspection Host Plugin: Version: 6031.2010.0122.1 Support
      f5 sam inspection host plugin: Version: 7000.2010.0602.1 Support
    Safari Extensions: ℹ️
      Facebook Cleaner
      Better Facebook
      SiteAdvisor
      Incognito
      Bing Highlights
      YouTube5
      AdBlock
      YoutubeWide
    Audio Plug-ins: ℹ️
      DVCPROHDAudio: Version: 1.3.2
    3rd Party Preference Panes: ℹ️
      CUDA Preferences  Support
      EarthDesk  Support
      Editmote  Support
      Flash Player  Support
      FUSE for OS X (OSXFUSE)  Support
      Growl  Support
      Java  Support
      Witness  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          13% taskgated
          12% WindowServer
          1% WitnessUserAgent
          1% sysmond
          1% Activity Monitor
    Top Processes by Memory: ℹ️
      327 MB com.apple.WebKit.WebContent
      137 MB softwareupdated
      94 MB Safari
      82 MB VShieldScanner
      82 MB Dock
    Virtual Memory Information: ℹ️
      65 MB Free RAM
      1.58 GB Active RAM
      1.54 GB Inactive RAM
      647 MB Wired RAM
      2.95 GB Page-ins
      260 MB Page-outs

    You have SCADS of extensions and the things running. McAfee, Intego, Orbicule, CleanMyMac, and others I've not ever even heard of. My first recommendation would be to remove all of these and see if things improve.

  • Can I change the Default Position of a JColorChooser Dialog Box???

    I am working on a drawing application where I am using a button that launches a JColorChooser dialog to allow a user to select a color which. I have tied this button to the JColorChooser using the source code below to reset the color based on the user's selection. This all works fine. However, when the JColorChooser comes up, the dialog comes up right in the middle of the drawing area and erases any portion of the drawing that the dialog box overlaps with, which having my luck is more or less right in the middle of the JPanel where I am doing the drawing. My question is can I tell the JColorChooser to come up somewhere else in the user interface by offsetting it from the actual application somehow? I am using a JFrame to add all of these components to (the color choose button and the drawing area) and wonder if there is a way to tell the JColorChooser dialog not to come in the default location. Any help that anybody could provide would be greatly appreciated. Thanks!
    Kevin
    pickColor = new JButton( "Choose Color" );
    pickColor.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent event)
    color = JColorChooser.showDialog(
    ColorPicker.this, "Choose a color", color);
    if ( color == null )
    currentColor = Color.RED;
    else
    currentColor = color;
    );

    JColorChooser has a method createDialog() that lets you create (rather than
    merely show) a dialog containing your colour chooser.
    If you use this method you can position the dialog wherever you want. The
    dialog inherits the Window methods for positioning - eg
    setLocationRelativeTo(Component c).

  • I am using photoshop cc 2014.2 And when I use save for Web it gives me a dialog box that says it is using Latin characters I've never seen this before. Does anyone have an answer for this problem or do I need to go back to the older version of Photoshop.

    I'm using Photoshop cc 2014.21 I you save for Web and dialog box comes up that says that Photoshop is using Latin characters and that servers cannot recognize Latin characters in webpages and you may have trouble viewing these pages does anyone have an answer for this problem?

    What Firefox version is currently installed on the computer?
    You can find the full version of the current current Firefox release (37.0.2) in all languages and all operating systems here:
    *https://www.mozilla.org/en-US/firefox/all/
    If you have a very old Firefox version then you could consider to uninstall that version to clean up existing registry keys (especial the uninstall key).
    Make sure NOT to remove "personal data" when you uninstall Firefox, because that will remove all profile folders and you lose personal data like bookmarks and passwords including data in profiles created by other Firefox versions.
    Check the Firefox program folder and remove the Firefox program folder if there are still files left in it.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure NOT to remove personal data when you uninstall Firefox as that will remove all Firefox profile folders and you lose your personal data.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • File dialog box: how get full path and filename (firefox 3.0 problem)

    Hi,
    I have a smilar problem then discussed in this thread: file dialog box: how get  full path and filename
    Now this solution doesn't seem to work in firefox 3.0,I only get the filename but not the full path.
    I have tried to solve this problem by adding *"netscape.security.PrivilegeManager.enablePrivilege("UniversalFileRead");"* in a javacript function but that doesn't do the trick
    Although when i tested it local it does work.
    Any idees how to solve this?
    Best Regards
    Stijn

    Actually, that is strange and scarry. With 20% of the browser market share they decide to behave like Microsoft did in the past - they want to decide what users need and what they do not need. With 3.0 I have a real problem with some of my applications. They are all tested in IE6, IE7, FF2.0 and they all work the same way (they even work with Opera and Safari). Now, I will for sure not go there and make it work for 3.0, just because 2 out of 200 users use FF3.0. Up to now I have always recomended FF as the best browser. 3.0 causes my opinion to change completely. Competition is always good but it is a question if it is good if we have 20 different browsers out there with equal market shares.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

Maybe you are looking for

  • I keep getting an error message while downloading music i purchased, how do i solve this issue

    Hi All, can you please help. I am struggling to dowload 3 songs from an album i just bought on iTunes. It keeps giving me an error message. What should i do?

  • Custom profile not appearing in "Devices to simulate"

    I've downloaded a custom printer/paper profile from Dry Creek Photo for my local Costco. I've saved the .icc profile to to the Users\[user name]\Library\ColorSync\Profiles folder. However, when I try to soft proof using View > Proof Setup > Custom, I

  • Cannot Play .DAT Movie Files in Real Player/Java Media Player

    Hi, I wanted to play some movie files in Solaris 10 (Was curious if the movie might be rendered more crisply in Solaris than Windows :) ) but found that .DAT files are not played in Java Media Player. So I downloaded the Real Player for Solaris 10 x8

  • Wired OfficeJet 6500 problem

    Hello, I just recently set up an office printer with the Office Jet 6500 All in one, not the wireless model, however. I can access the printer server's web page and I can printer from within that web page (diagnostics and such) however, I can not pri

  • NEW PS Environment

    Hi All, I am new in the PS Admin activity. Currently we need to create a new PS environment. Can anyone tell me the steps involved in doing so? Please explain the same in details. We are using Unix server with Oracle as database. Thanks in Advance!!