Flex/Air applications with an OS X Menu Bar icon

(Flash Builder 4 beta)
I'm developing a flex/air application for mac os x exclusivley. The application should be very unobtrusive to the user, and as such, I want to eliminate the dock icon for the application and have it run exclusivley in the os x menu bar. Similar to a twitterific app. I've scoured the documentation for a way to do this, but only come up with methods for a system tray in windows, and dock icon function on a mac.
Does AIR really lack the ability to have a menu bar icon?
Thanks in advance!

I've made menu's already for the application. They are native os x menu's but they are used create contextual menus (file, edit, view...etc...) and are only visible when the application is open. Unless their is a feauture I missed I don't think I can do it with those. I'm looking for the ability to create a menubar icon application similar to twitter, or the default apple spotlight.

Similar Messages

  • AIR application with Flex 4.5 will not render content. What gives?

    OK,
    So I've upgraded to Flash Builder 4.5 Premium and I am unable to develop desktop AIR applications with the 4.5 Flex SDK. I start by simply creating a brand new AIR application using the default SDK (Flex 4.5). I set the title property on WindowedApplication and include a simple Label component. The project compiles fine but when I run the application all I see is the adl window in the dock but that's it. If I modify the Main-app.xml file to set the visible attribute to true, I will get a small window but there is no content although the output window shows the application swf being loaded. Checking the release version of the Main-app.xml file shows the correct path location to the swf.
    Here is what I've tried so far:
    Install/reinstall Flash Builder, 4+ times
    Downloaded the trial installation twice
    Downloaded the SDK's for 3.6, 4.1 and 4.5.0. I then copied each SDK folder and merged the AIR 2.6 SDK with each copy. So now I have 6 SDK versions; one pristine and the other with the AIR 2.6 SDK merged. I then added each SDK individually and created an AIR desktop application for each. Each and every one works fine with the exception of the two 4.5 SDK's. They will not render content.
    I created a simple creation complete handler for the application that declares a simple variable and assigns a value to it. I then put a break point on the assignment and it never gets caught. More evidence that the swf isn't getting loaded.
    The computer I'm running on is a Mac Book Pro with Snow Leopard 10.6.7. If I create a web project in each of the 6 SDK's, those will work just fine. What the heck is it with Flex 4.5 and the AIR 2.6 SDK on this machine? I have the AIR 2.6 runtime installed as well as a number of AIR applications that work just fine. I also tried my 4.5 test on my windows machine and that worked like a champ.
    I am completely out of ideas. Finding information has been difficult because everyone is all about mobile so searching for desktop issues is a losing battle. I realize this is a long email but I'm desperate for help. There must be someone out there that knows more about the low level interaction between Flex 4.5/AIR 2.6 and the OS.

    Well, I finally found the issue, a corrupted mm.cfg file in /Library/Application Support/Macromedia. I deleted the file and then adl ran just fine.

  • Twitter Feed Within A Flex/Air Application

    I am attempting to advance an appilcation I've created so that it incorporates a live twitter feed i.e. when users access the application their own twitter feed is shown within it and is updated live.
    I have no experience in using either twitter itself or how to incorporate twitter feeds into a flex/air application specifically and was wondering if anyone can tell me exactly what I'd need to do to achieve this?
    A further addition my client has requested is the use of live images. The app itself is basically an interactive favourites menu with users clicking on and adding links to sites within the app. Each of these links is represented by an icon which is basically a screenshot of each site. I want to alter this so that these images change live AS the site themselves change so they are constantly up to date. Is this also possible at all and if so can anyone give me advice on how this could be achieved?

    Thanks a lot. I've used another method that simply lets the user enter their twitter name and it loads their live feed. I suppose that way would work too though. Cheers.

  • PDF Not loading anymore on Flex Air Application

    Hi,
    Ever since I updated my Adobe Readed to Version 11, I can't view any PDF on my Flex Air Application anymore. Is there anything i need to do?
    AIR version: 3.6
    OS: Mac OS X
    Flex Builder: 4.6
    Adobe Reader: 11.0.02
    Flex components used: mx:HTML
    Please help.
    Thanks!

    Yes.  This is a well known bug in Air/Google Maps.  A lot of folks reported it on the Google Maps forums and here.  It was reported over a year ago with no action yet.  Major show stopper.
    For this main reason, I switched to the http://developer.mapquest.com AS3 API.  Plus they also recently released a Mobile Flash API that works great.
    I suggest you check it out because I don't anticipate any action on this issue on either side any time soon.
    Good luck!
    Don

  • Compile AIR application with Ant (WindowedApplication could not be found)

    I'm trying to compile my AIR application with Ant, using the mxmlc Ant Task. It seems to compile fine, and I get a .swf, but when I try to run it with ADL, I get the message "Class mx.core::WindowedApplication could not be found." It looks like the AIR libraries aren't being included properly.
    Here's my mxmlc task:
    Class mx.core::WindowedApplication could not be found.
    <mxmlc
         file="${MAIN_MXML}"
         output="${DEPLOY_DIR}/MyApp.swf"
         compatibility-version="3"
         locale="en_US"
         static-rsls="true"
         debug="${DEBUG_FLAG}"
         optimize="true"
         link-report="${DEPLOY_DIR}/report.xml"
         configname="air">
         <load-config filename="${FLEX_HOME}/frameworks/air-config.xml" />
         <library-path dir="${FLEX_HOME}/frameworks/libs" append="true">
              <include name="*.swc" />
         </library-path>
         <library-path dir="${FLEX_HOME}/frameworks/libs/air" append="true">
              <include name="*.swc" />
         </library-path>
         <library-path dir="${FLEX_HOME}/frameworks/locale" append="true">
              <include name="{locale}" />
         </library-path>
         <source-path path-element="${SRC_DIR}" />
    </mxmlc>
    Any idea why this is happening? I've tried not including the load-config section and not including the library paths, but it's always the same result - it can't find WindowedApplication.
    Thanks!

    Hi, Guys!
    I ran into the same problem when i tried to write an ant-script to compile the asDocs for my project.
    After reading shades post i added the air-config (This resolved the WindowApplication couldn't be found error, because it adds all the air libs i guess)
    but lead to the problem that the flex vector-class wasn't found. As Vector is flashplayer 10.0.0 i also
    used the target-player parameter (This fixed that nicely).
    But now i got the problem that i get lots of this error msgs: DepartmentItemRendererClass.as(11):
    Error: The private attribute may be used only on class property definitions.
    I guess the problem now is that ant doesn't understand that the AS-Classes producing that errors are not used as
    standalone-classes. To divide my mxml and AS-Code i import external AS-Classes to my MXML
    like that <mx:Script source="ascodeClass.as" />
    Is there a solution allowing me to use this pattern and still compile my asDoc with ant?
    It confuses me a little, because Ant-Scripts worked to compile the project.
    Thanks in advance!
    Florian
    My Ant-Script producing that error:
    <project name="Red bull BPT 2.0: Generate ASDoc" basedir=".">
        <description>
           Creates the ASDoc for Red Bull BPT 2.0
        </description>
        <property file="FlexbuilderASDocAntTask.properties" />
        <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar" />
        <target name="cleanAndCreateASDoc"
                depends="cleanASDoc, compileASDoc"
                description="Cleans and creates Actionscript-Documentation"
                />
            <!-- Delete the existing output folder and files and then regenerate the output folder -->
                <target name="cleanASDoc">
                    <echo>Deleting ASDoc Directory...</echo>
                        <!--Delete the folder specified for the Asdoc.dir variable-->
                        <delete dir="${Asdoc.dir}" failOnError="false" includeEmptyDirs="true" />
                        <echo>Deleted ASDoc Directory</echo>
                        <echo>Creating ASDoc Directory...</echo>
                        <!--Creates the folder specified for the Asdoc.dir variable-->
                        <mkdir dir="${Asdoc.dir}" />
                    <echo>Created ASDoc Directory</echo>
                </target>
            <!-- Run the ASDoc executable and generate the ASDocs to the new output folder -->
                <target name="compileASDoc">
                    <echo>ASDoc Compiling...</echo>
                        <exec executable="${AsDocs.executable}" failonerror="true">
                        <!--THIS SEEMS TO SOLVE THE WINDOWEDAPPLICATION AND FOLLOWING VECTOR ERROR -->   
                            <arg line="-load-config ${FLEX_HOME}/frameworks/air-config.xml" />
                            <arg line="-target-player 10.0.0" />
                        <!--THIS SEEMS TO SOLVE THE WINDOWEDAPPLICATION AND FOLLOWING VECTOR ERROR -->
                        <!--Main title for the top of all ASDoc pages-->
                            <arg line="-main-title '${Main.title}'" />
                        <!--Prefix Title of the window-->
                            <arg line="-window-title '${Window.title}'" />
                        <!--Defines the output directory for the ASDoc-Files-->
                            <arg line="-output '${Asdoc.dir}'" />
                        <!--Footer added to each ASDoc page-->
                            <arg line="-footer '${Footer.text}'" />
                        <!--Adding the source folders the ASDoc should be created from (Start)-->
                            <arg line="-doc-sources '${ModuleBaseDir}/source'" />
                        <!--Adding the source folders the ASDoc should be created from (End)-->
                        <!--Adding the folders for external Libraries needed to compile the application(Start)-->
                            <arg line="-external-library-path '${ModuleBaseDir}/libs'" />
                        <!--Adding the folders for external Libraries needed to compile the application(End)-->
                        </exec>
                    <echo>ASDoc Compile Complete!</echo>
        </target>
    </project>

  • Testing adobe air application with qtp

    Hi,
    We want to test our adobe air applications with quicktest. Where can I find addin for QTP and how do the AIR applcation have to be developed? What have to be done? There is no much info in google about this.
    Thank you in advanced!

    QTP does not currently work with AIR applications.  It will work with Web deployed FLEX applications.
    I have been told by Adobe that whilst they're not sure of an exact date, they do believe that QTP will be supported in AIR with Flex 4.
    You might want to look at some alternatives:
    http://code.google.com/p/fluint/
    http://code.google.com/p/flexmonkey/
    http://www.borland.com/us/products/silk/silktest/index.html

  • Call JSFL from Flex Air application

    Hi,
    I have a Flex Air application that converts old style flash
    text var txt files into XML. As part of the process it creates a
    jsfl file that when run will automate through older FLAs and
    upgrade them with changes required.
    My question is this. Using the command
    fl.runScript(locationOfJSFLscript) in flash, it will automatically
    call the script and execute it. How do I do the same in Flex? i.e.
    I have a button in the application. I press it and it sends the
    call to run the script.
    Thank you

    Of course you may have some unstated reason for doing this in Air, but if not...
    Google photoshop droplet....
    Bob

  • Identical flex-air applications do not compile

    I'm having terrible difficulty with writing Air Applications for compiling with the flex 3.2 SDK.
    I have two identical basic flex air applications, but one will not compile, the other will.
    When I try to run the application from flex builder the first app runs fine while the second one doesn't.
    any ideas?
    http://www.andy-hayes.com/download/TestApp.zip
    http://www.andy-hayes.com/download/TestTransparentApplication.zip
    I've just about had enough of flex builder's bs. tbh.

    Hi Randy,<br /><br />This forum really isn't the place to try to get support on app compilation.  We try to keep discussion here to development of the SDK itself.  I'd suggest looking at the regular Flex forums or flexcoders and posting more details as to the error you're seeing.<br /><br />Matt<br /><br /><br />On 1/13/09 3:51 AM, "randy gland" <[email protected]> wrote:<br /><br />A new discussion was started by randy gland in<br /><br />Developers --<br />  Identical flex-air applications do not compile<br /><br />I'm having terrible difficulty with writing Air Applications for compiling with the flex 3.2 SDK.<br /><br />I have two identical basic flex air applications, but one will not compile, the other will.<br /><br />When I try to run the application from flex builder the first app runs fine while the second one doesn't.<br /><br />any ideas?<br /><br />http://www.andy-hayes.com/download/TestApp.zip<br />http://www.andy-hayes.com/download/TestTransparentApplication.zip<br /><br />I've just about had enough of flex builder's bs. tbh.<br /><br />________________________________<br />View/reply at Identical flex-air applications do not compile <a href=http://www.adobeforums.com/webx?13@@.59b78044><br />Replies by email are OK.<br />Use the unsubscribe <a href=http://www.adobeforums.com/webx?280@@.59b78044!folder=.3c060fa3>  form to cancel your email subscription.

  • Digitally Signing Flex/AIR Application

    I am looking for some help with updating an AIR application with a renewed certificate.
    The way that Adobe AIR handles digitally signed certificates is fairly confusing. I think it has changed with the release of AIR 1.5.3 and this change has caught us off guard and has resulted in some problems.
    According to the Adobe website: Prior to AIR 1.5.3, signing an AIR application with a renewed certificate did not always require a migration signature. Starting with AIR 1.5.3, a migration signature is always required for renewed certificates.
    Furthermore: The certificate must be changed before the original certificate expires. If you do not create an update signed with a migration signature before your certificate expires, users will have to uninstall their existing version of your application before installing a new version. As of AIR 1.5.3, an expired certificate can be used to apply a migration signature within a 180 day grace period after the certificate has expired. (You cannot use the expired certificate to apply the main application signature.).
    See:
    http://help.adobe.com/en_US/AIR/1.5/devappsflex/WS5b3ccc516d4fbf351e63e3d118666ade46-7ff0. html#WS5b3ccc516d4fbf351e63e3d118666ade46-7cca
    http://help.adobe.com/en_US/AIR/1.5/devappsflex/WS13ACB483-1711-43c0-9049-0A7251630A7D.htm l
    BOTTOM LINE:
    We did not create a "migration signature" within the 180 grace period because we had no updates (bug fixes or enhancements) to our application during this time. When I finally did prepare a new release of our application and signed it with our new certificate, the Adobe installer is not recognizing the new application as an UPDATE of the old application so when you try to install it, the user gets an error message that an application that the same name is already installed. In the past, the installer recognizes the new application as an update and it replaces the old app. I think there may be a way for me to handle this properly, but all of my attempts so far have not produced the results I am looking for.
    The issues may be related to specifying a Publisher ID. We may need to specify the publisherId in the descriptor.xml file, which we have never had to do in the past. However, the publisherId property may only be available in 1.5.3. I have been having trouble specifying the 1.5.3 name space (<application xmlns="http://ns.adobe.com/air/application/1.5.3">). I think that must only be available for newer versions of the compiler. I am currently using 3.5.
    Are there any experts on this topic that can explain How I can package my updated app so that the installer recognizes it as an UPDATE and not a NEW APP with the same name (which doesn't work)?

    Any ideas on this?

  • Building AIR Applications with the NetBeans IDE

    Hello Everyone,
    Here's a link to screencast showing you how to Build AIR
    Applications with the NetBeans IDE.
    http://xwisdomhtml.com/netbeans-and-air.html

    Neat!

  • Trying to activate a menu bar icon with no luck :/

    Hello everyone, how great is it to assign hotkeys for your application menus.  Yet... for the more interesting users like me, we need to also activate menu bar icon settings, particularly the 'show ink window' in my case.  Respectively iv'e tried every corner in the world for another way of activating that besides the point and click method everyone is forced to use... and came up with no answer... so i figured, what about Terminal? maybe... just maybe there is a Terminal(OS X native command-line tool) command for this, if anyone knows please share!!

    Works fine,on  Toshiba a135...ASUS

  • Menu Bar Icons Disappear/Reappearing

    My menu bars icons in the top right corner keep disappearing and reappearing.  (Clock, language, battery, wifi etc). It seems to freeze up the finder while they disappear.  It is very frustrating, any help is greatly appreciated.

    This is the most recent report.  However I noticed 20 or so with the title SystemUIServer followed by todays date I will post this following this report which is the most recent.
    Process:    
    Finder [169]
    Path:       
    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier: 
    com.apple.finder
    Version:    
    10.7.1 (10.7.1)
    Build Info: 
    Finder_FE-751001009000000~3
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [124]
    Date/Time:  
    2012-01-25 16:18:15.352 -0600
    OS Version: 
    Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Crashed Thread:  10  Dispatch queue: Query work queue
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    objc[169]: garbage collection is OFF
    Performing @selector(searchTextChanged:) from sender SGTSearchField 0x7fc085812a30
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x00007fff8ff99bf2 __psynch_mutexwait + 10
    1   libsystem_c.dylib        
    0x00007fff9229a1a1 pthread_mutex_lock + 545
    2   com.apple.DesktopServices
    0x00007fff972824cc TDSMutex::Acquire() + 38
    3   com.apple.DesktopServices
    0x00007fff972c0c43 TNode::StPopulating::StPopulating(TNodePtr const&, TNode::StPopulating*) + 97
    4   com.apple.DesktopServices
    0x00007fff972b30c1 TNode::RemoveAllChildren(unsigned int, TNodeEventPtrSet*) + 55
    5   com.apple.DesktopServices
    0x00007fff972b370b TNode::CancelQuery() + 317
    6   com.apple.DesktopServices
    0x00007fff972db545 NodeCancelQuery + 63
    7   com.apple.finder         
    0x00000001025d0211 0x10252b000 + 676369
    8   com.apple.finder         
    0x00000001025d01b9 0x10252b000 + 676281
    9   com.apple.finder         
    0x00000001025ce619 0x10252b000 + 669209
    10  com.apple.finder         
    0x000000010261fd2c 0x10252b000 + 1002796
    11  com.apple.finder         
    0x000000010274c976 0x10252b000 + 2234742
    12  com.apple.finder         
    0x000000010274ca0e 0x10252b000 + 2234894
    13  com.apple.CoreFoundation 
    0x00007fff94864a1d -[NSObject performSelector:withObject:] + 61
    14  com.apple.AppKit         
    0x00007fff907c6710 -[NSApplication sendAction:to:from:] + 139
    15  com.apple.AppKit         
    0x00007fff907c6642 -[NSControl sendAction:to:] + 88
    16  com.apple.AppKit         
    0x00007fff907c656d -[NSCell _sendActionFrom:] + 137
    17  com.apple.AppKit         
    0x00007fff90c0c76a -[NSSearchFieldCell(NSSearchFieldCell_Local) _sendPartialString] + 169
    18  com.apple.Foundation     
    0x00007fff8e9f3014 __NSFireTimer + 102
    19  com.apple.CoreFoundation 
    0x00007fff94829f84 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    20  com.apple.CoreFoundation 
    0x00007fff94829ad6 __CFRunLoopDoTimer + 534
    21  com.apple.CoreFoundation 
    0x00007fff9480a471 __CFRunLoopRun + 1617
    22  com.apple.CoreFoundation 
    0x00007fff94809ae6 CFRunLoopRunSpecific + 230
    23  com.apple.HIToolbox      
    0x00007fff903693d3 RunCurrentEventLoopInMode + 277
    24  com.apple.HIToolbox      
    0x00007fff9037063d ReceiveNextEventCommon + 355
    25  com.apple.HIToolbox      
    0x00007fff903704ca BlockUntilNextEventMatchingListInMode + 62
    26  com.apple.AppKit         
    0x00007fff906c13f1 _DPSNextEvent + 659
    27  com.apple.AppKit         
    0x00007fff906c0cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    28  com.apple.AppKit         
    0x00007fff906bd62d -[NSApplication run] + 470
    29  com.apple.AppKit         
    0x00007fff9093c80c NSApplicationMain + 867
    30  com.apple.finder         
    0x000000010253099b 0x10252b000 + 22939
    31  com.apple.finder         
    0x0000000102530960 0x10252b000 + 22880
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff8ff9a7e6 kevent + 10
    1   libdispatch.dylib        
    0x00007fff8d3435be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib        
    0x00007fff8d34214e _dispatch_mgr_thread + 54
    Thread 2:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x00007fff8ff99df2 __select + 10
    1   com.apple.CoreFoundation 
    0x00007fff94852f9b __CFSocketManager + 1355
    2   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    3   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 3:: WebCore: LocalStorage
    0   libsystem_kernel.dylib   
    0x00007fff8ff99bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff9229f274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore 
    0x00007fff8f78a5a0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore        
    0x00007fff94dd8d5a ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore        
    0x00007fff94dd8cb3 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore        
    0x00007fff94dd8bfb WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    7   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff8ff9867a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8ff97d71 mach_msg + 73
    2   com.apple.CoreFoundation 
    0x00007fff94801b6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation 
    0x00007fff9480a2d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation 
    0x00007fff94809ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation     
    0x00007fff8ea010ab +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation     
    0x00007fff8e9f57fe -[NSThread main] + 68
    7   com.apple.Foundation     
    0x00007fff8e9f5776 __NSThread__main__ + 1575
    8   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    9   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 5:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib   
    0x00007fff8ff99bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff9229f274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore 
    0x00007fff8f78a5f7 ***::ThreadCondition::timedWait(***::Mutex&, double) + 151
    3   com.apple.JavaScriptCore 
    0x00007fff8f9b6ccf JSC::Heap::blockFreeingThreadMain() + 319
    4   com.apple.JavaScriptCore 
    0x00007fff8f9b6d09 JSC::Heap::blockFreeingThreadStartFunc(void*) + 9
    5   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    6   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 6:: CVDisplayLink
    0   libsystem_kernel.dylib   
    0x00007fff8ff99bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff9229f274 _pthread_cond_wait + 840
    2   com.apple.CoreVideo      
    0x00007fff8ca6ab3c CVDisplayLink::runIOThread() + 710
    3   com.apple.CoreVideo      
    0x00007fff8ca6a85d _ZL13startIOThreadPv + 148
    4   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff8ff99bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff9229f274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff8e1e5c9a TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8e1783f6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8e1bd0bd MPWaitOnQueue + 181
    5   com.apple.DesktopServices
    0x00007fff972fda44 TSuboperationTask::OperationTaskProcedure() + 232
    6   com.apple.DesktopServices
    0x00007fff972a8ffe TNodeOperationTask::OperationTaskProc(void*) + 26
    7   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 8:: CoreAnimation render server
    0   libsystem_kernel.dylib   
    0x00007fff8ff9867a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff8ff97d71 mach_msg + 73
    2   com.apple.QuartzCore     
    0x00007fff9685d569 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore     
    0x00007fff9685d4a9 thread_fun + 24
    4   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    5   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff8ff99bca __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x00007fff9229f274 _pthread_cond_wait + 840
    2   com.apple.CoreServices.CarbonCore
    0x00007fff8e1e5c9a TSWaitOnCondition + 106
    3   com.apple.CoreServices.CarbonCore
    0x00007fff8e1783f6 TSWaitOnConditionTimedRelative + 127
    4   com.apple.CoreServices.CarbonCore
    0x00007fff8e1bd0bd MPWaitOnQueue + 181
    5   com.apple.DesktopServices
    0x00007fff972fda44 TSuboperationTask::OperationTaskProcedure() + 232
    6   com.apple.DesktopServices
    0x00007fff972a8ffe TNodeOperationTask::OperationTaskProc(void*) + 26
    7   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    8   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 10 Crashed:: Dispatch queue: Query work queue
    0   com.apple.CoreFoundation 
    0x00007fff947e07a3 __CFTypeCollectionRetain + 19
    1   com.apple.CoreFoundation 
    0x00007fff948118a5 __CFDictionaryRetainValue + 53
    2   com.apple.CoreFoundation 
    0x00007fff947dfb7a __CFBasicHashAddValue + 1146
    3   com.apple.CoreFoundation 
    0x00007fff947dea8c CFDictionarySetValue + 252
    4   com.apple.Metadata       
    0x00007fff8ed05e77 MDPlistBytesCreateUniquedString + 289
    5   com.apple.Metadata       
    0x00007fff8ecc3bb9 copyObject + 2361
    6   com.apple.Metadata       
    0x00007fff8ecc3645 copyObject + 965
    7   com.apple.Metadata       
    0x00007fff8ecc3645 copyObject + 965
    8   com.apple.Metadata       
    0x00007fff8ecc31e6 MDPlistBytesCopyPlistAtIndexWithCallbacks + 374
    9   com.apple.Metadata       
    0x00007fff8ece5a82 queryOIDArrayApplier + 1530
    10  com.apple.Metadata       
    0x00007fff8ed0508f MDStoreOIDArrayApplyFunction + 122
    11  com.apple.Metadata       
    0x00007fff8ece5447 _MDQueryCallback + 137
    12  com.apple.Metadata       
    0x00007fff8ece5b30 doQueryResultsCallback + 106
    13  com.apple.Metadata       
    0x00007fff8ecd03c4 _XQueryResultsCallback + 276
    14  com.apple.Metadata       
    0x00007fff8ecd027f MDSClientCallbacks_server + 146
    15  libsystem_kernel.dylib   
    0x00007fff8ff98537 mach_msg_server_once + 427
    16  com.apple.Metadata       
    0x00007fff8ece702b ___MDQueryExecute_block_invoke_3 + 107
    17  libdispatch.dylib        
    0x00007fff8d3462b6 _dispatch_source_invoke + 635
    18  libdispatch.dylib        
    0x00007fff8d342f77 _dispatch_queue_invoke + 71
    19  libdispatch.dylib        
    0x00007fff8d3430d4 _dispatch_queue_drain + 210
    20  libdispatch.dylib        
    0x00007fff8d342f66 _dispatch_queue_invoke + 54
    21  libdispatch.dylib        
    0x00007fff8d342760 _dispatch_worker_thread2 + 198
    22  libsystem_c.dylib        
    0x00007fff9229d3da _pthread_wqthread + 316
    23  libsystem_c.dylib        
    0x00007fff9229eb85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib   
    0x00007fff8ff9a192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff9229d594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff9229eb85 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib   
    0x00007fff8ff9a192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff9229d594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff9229eb85 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib   
    0x00007fff8ff9a192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff9229d594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff9229eb85 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib   
    0x00007fff8ff99e42 __semwait_signal + 10
    1   libsystem_c.dylib        
    0x00007fff92251dea nanosleep + 164
    2   com.apple.Foundation     
    0x00007fff8ea24f95 +[NSThread sleepUntilDate:] + 181
    3   com.apple.imageKit       
    0x00007fff8e59a6a8 -[IKTaskManager taskLoop] + 2031
    4   com.apple.Foundation     
    0x00007fff8e9f57fe -[NSThread main] + 68
    5   com.apple.Foundation     
    0x00007fff8e9f5776 __NSThread__main__ + 1575
    6   libsystem_c.dylib        
    0x00007fff9229b8bf _pthread_start + 335
    7   libsystem_c.dylib        
    0x00007fff9229eb75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib   
    0x00007fff8ff9a192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff9229d594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff9229eb85 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff8ff9a192 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x00007fff9229d594 _pthread_wqthread + 758
    2   libsystem_c.dylib        
    0x00007fff9229eb85 start_wqthread + 13
    Thread 17:: Dispatch queue: TNodeQuery Task
    0   com.apple.CoreFoundation 
    0x00007fff947d3edb CFRetain + 43
    1   com.apple.DesktopServices
    0x00007fff9731222c TFSInfo::GetCachedMDItemRef() const + 34
    2   com.apple.DesktopServices
    0x00007fff97292a50 TFSInfo::LessThan(TCountedPtr<TFSInfo> const&) const + 146
    3   com.apple.DesktopServices
    0x00007fff97285008 TChildrenList::Find(TCountedPtr<TFSInfo> const&) + 190
    4   com.apple.DesktopServices
    0x00007fff972898fe TNode::SynchronizeChildren(unsigned int, TNodeEventPtrSet&) + 478
    5   com.apple.DesktopServices
    0x00007fff97289273 TNode::HandleSync(unsigned int) + 1957
    6   com.apple.DesktopServices
    0x00007fff972be333 TNode::QueryProgressCallback(__CFNotificationCenter*, void*, __CFString const*, void const*, __CFDictionary const*) + 125
    7   com.apple.CoreFoundation 
    0x00007fff9481de0a _CFXNotificationPost + 2634
    8   com.apple.CoreFoundation 
    0x00007fff94854d13 CFNotificationCenterPostNotificationWithOptions + 115
    9   com.apple.Metadata       
    0x00007fff8ece2624 ___pushNotification_block_invoke_1 + 104
    10  libdispatch.dylib        
    0x00007fff8d3418ba _dispatch_call_block_and_release + 18
    11  libdispatch.dylib        
    0x00007fff8d34310a _dispatch_queue_drain + 264
    12  libdispatch.dylib        
    0x00007fff8d342f66 _dispatch_queue_invoke + 54
    13  libdispatch.dylib        
    0x00007fff8d342760 _dispatch_worker_thread2 + 198
    14  libsystem_c.dylib        
    0x00007fff9229d3da _pthread_wqthread + 316
    15  libsystem_c.dylib        
    0x00007fff9229eb85 start_wqthread + 13
    Thread 10 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7c8c7f40  rbx: 0x0000000000000000  rcx: 0x00007fff7c89f8a8  rdx: 0x00007fff7c8cf6c0
      rdi: 0x00007fff7c8c7f40  rsi: 0x0000000000000000  rbp: 0x0000000103320d20  rsp: 0x0000000103320d10
       r8: 0x000000000000004c   r9: 0x00007fff94939480  r10: 0x0103030100000000  r11: 0x0001020100000000
      r12: 0x0000000000000078  r13: 0x0000000000000000  r14: 0x00007fff7c8c7f40  r15: 0x00007fff947e0790
      rip: 0x00007fff947e07a3  rfl: 0x0000000000000246  cr2: 0x0000000108c2aff8
    Logical CPU: 3
    Binary Images:
    0x10252b000 -   
    0x102a2efff  com.apple.finder (10.7.1 - 10.7.1) <548C24A0-975C-3167-88AA-036CEFBE3F9D> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x102e11000 -   
    0x102e11ff5 +cl_kernels (??? - ???) <21C433DE-5EBC-40A2-9A1C-B7EE2E1A7FCE> cl_kernels
    0x102fe5000 -   
    0x102fe7fff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1062) <F03F0085-D9E7-3838-9ED6-248E8397620E> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x103024000 -   
    0x103028ff7  com.apple.qldisplay.Generic (3.1 - 500.1) <3E03AE16-B014-3BD4-BAF0-7E8A3773BE33> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/PlugIns/Generic.qldisplay/Contents/MacOS/Generic
    0x10316f000 -   
    0x103184fff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
    0x105675000 -   
    0x105678fff  com.apple.DirectoryServicesSource (1.2 - 1062) <0F479AAE-037E-3310-8206-DDEB075456C9> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x10591b000 -   
    0x105920fff  com.apple.JavaLaunching (14.1.0 - 14.1.0) <6322E021-91C3-36A3-AEED-AD4FAB888E4A> /System/Library/PrivateFrameworks/JavaLaunching.framework/JavaLaunching
    0x1077fe000 -   
    0x107804fef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <EAC03E33-595E-3829-8199-479FA5CD9987> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x10780a000 -   
    0x10780dff7  libCoreFSCache.dylib (??? - ???) <D4B5EFEA-7878-3674-A973-BA1D675E5A3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x107822000 -   
    0x107822ffd +cl_kernels (??? - ???) <F4546CB3-AD64-4E5A-AB56-2BCAAB319BAC> cl_kernels
    0x107824000 -   
    0x1078b7ff7  unorm8_argb.dylib (1.50.61 - compatibility 1.0.0) <D453434E-9E63-3D38-B59E-6B333A5373D6> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0x1078da000 -   
    0x1078dbff3 +cl_kernels (??? - ???) <8533AC1B-BA78-4A55-A56D-1265391E1D95> cl_kernels
    0x1078dd000 -   
    0x107970ff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x107993000 -   
    0x107994ff3 +cl_kernels (??? - ???) <F8666D20-72C3-40E1-B0AE-12F1BF439B3D> cl_kernels
    0x10799c000 -   
    0x10799dffc +cl_kernels (??? - ???) <784ADAA6-FE50-4637-89F1-0BFC75AF79E4> cl_kernels
    0x107cf7000 -   
    0x107e8fff7  GLEngine (??? - ???) <D770A837-9F8D-3C86-AB33-CBDEF5599CA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x107ec3000 -   
    0x107fbcfff  libGLProgrammability.dylib (??? - ???) <BCA0FD49-2103-33D8-8801-326C6A62465E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x107fe2000 -   
    0x1083ecfef  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.14.5 - 7.1.4) <471C13B5-5698-3A89-815B-B5EB252BA681> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
    0x1085c8000 -   
    0x1085f6ff7  GLRendererFloat (??? - ???) <16DF14A0-7264-31A4-83F6-E6F96CF4AB3D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x108b39000 -   
    0x108b59ff7  com.apple.qldisplay.Web (3.1 - 500.1) <82E510FA-47DB-3A78-99D0-8F4322F83A94> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/PlugIns/Web.qldisplay/Contents/MacOS/Web
    0x108bf1000 -   
    0x108bf4fff  libLatinSuppConverter.dylib (54.0.0 - compatibility 1.0.0) <7E087B67-5698-34B6-9F16-1E0C1C3FF0DD> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
    0x10ea38000 -   
    0x10eac9ff7  unorm8_rgba.dylib (1.50.61 - compatibility 1.0.0) <278541F2-18CC-3BE4-AD6B-24A3E983ACB5> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
    0x7fff6212b000 -
    0x7fff6215fac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
    0x7fff8b42c000 -
    0x7fff8b488fff  com.apple.QuickLookFramework (3.1 - 500.1) <0C9E98D2-D8F9-3161-9809-0D77B98AD938> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8b503000 -
    0x7fff8b536ff7  com.apple.GSS (2.1 - 2.0) <9A2C9736-DA10-367A-B376-2C7A584E6C7A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8b537000 -
    0x7fff8b54cfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8b77d000 -
    0x7fff8bd61fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff8bdf3000 -
    0x7fff8bee8fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
    0x7fff8c2c0000 -
    0x7fff8c2c6ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    0x7fff8c2c7000 -
    0x7fff8c312ff7  com.apple.SystemConfiguration (1.11.1 - 1.11) <F832FE21-5509-37C6-B1F1-48928F31BE45> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff8c313000 -
    0x7fff8c316fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff8c317000 -
    0x7fff8c357fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
    0x7fff8c358000 -
    0x7fff8c375ff7  libxpc.dylib (77.17.0 - compatibility 1.0.0) <72A16104-2F23-3C22-B474-1953F06F9376> /usr/lib/system/libxpc.dylib
    0x7fff8c376000 -
    0x7fff8c4cffff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <4877267E-F736-3019-85D3-40A32A042A80> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8c4d0000 -
    0x7fff8c4d9ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    0x7fff8c4da000 -
    0x7fff8c5bbfff  com.apple.CoreServices.OSServices (478.29 - 478.29) <B487110E-C942-33A8-A494-3BDEDB88B1CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff8c5bc000 -
    0x7fff8c5c3fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
    0x7fff8c5c4000 -
    0x7fff8c666ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff8c6bb000 -
    0x7fff8c6e2fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff8c6e3000 -
    0x7fff8c6f2ff7  com.apple.opengl (1.7.5 - 1.7.5) <2945F1A6-910C-3596-9988-5701B04BD821> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8c6f3000 -
    0x7fff8c70afff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff8c70b000 -
    0x7fff8c721ff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8c722000 -
    0x7fff8c808ff7  com.apple.Bluetooth (4.0 - 4.0.1f4) <0D2C91A5-4655-3049-BD01-A980DF3B9B04> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff8c809000 -
    0x7fff8c86dfff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8c86e000 -
    0x7fff8c8adff7  libGLImage.dylib (??? - ???) <2D1D8488-EC5F-3229-B983-CFDE0BB37586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff8c8ae000 -
    0x7fff8c8f1ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <2B1571E1-8E87-364E-BC36-C9C9B5D3EAC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8c8f2000 -
    0x7fff8c8f3fff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff8c8f4000 -
    0x7fff8c8f4fff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8c8f5000 -
    0x7fff8c96aff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
    0x7fff8c96b000 -
    0x7fff8ca68fff  com.apple.avfoundation (2.0 - 180.30) <061DDF4C-E7BB-33D0-BEB9-0443ADF6EC8C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff8ca69000 -
    0x7fff8ca91ff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8ca92000 -
    0x7fff8caa0fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff8cb1e000 -
    0x7fff8cdf6ff7  com.apple.security (7.0 - 55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff8cdf7000 -
    0x7fff8ce4bff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x7fff8ce58000 -
    0x7fff8ce6ffff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff8ce70000 -
    0x7fff8cf0ffff  com.apple.LaunchServices (480.21 - 480.21) <6BFADEA9-5BC1-3B53-A013-488EB7F1AB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff8cf10000 -
    0x7fff8cff4def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
    0x7fff8cff5000 -
    0x7fff8d316fff  com.apple.AddressBook.framework (6.1 - 1062) <94321204-A094-3BBE-8EA6-6048D39F4E54> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8d340000 -
    0x7fff8d34efff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    0x7fff8d34f000 -
    0x7fff8d4b5fff  com.apple.CFNetwork (520.2.5 - 520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff8d4b9000 -
    0x7fff8d4fbff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8d504000 -
    0x7fff8d512fff  com.apple.HelpData (2.1.0 - 70) <917CF02F-276E-3571-9042-AAAAC0D3D4E1> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff8d513000 -
    0x7fff8d64cfef  com.apple.vImage (5.1 - 5.1) <EB634387-CD15-3246-AC28-5FB368ACCEA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8d64d000 -
    0x7fff8d8bbff7  com.apple.QuartzComposer (5.0 - 236) <CBF3070A-BD09-328D-857F-F35A0E1D22B5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff8d8bc000 -
    0x7fff8d8ecff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8d8f2000 -
    0x7fff8d8f7ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    0x7fff8dd8c000 -
    0x7fff8dd90fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8dd9a000 -
    0x7fff8dd9dfff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8dd9e000 -
    0x7fff8de51fff  com.apple.CoreText (220.11.0 - ???) <4EA8E2DF-542D-38D5-ADB9-C0DAA73F898B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff8de6f000 -
    0x7fff8df4dff7  com.apple.DiscRecording (6.0 - 6000.4.1) <DB0D0211-953B-3261-A4FD-74D2AC671DA6> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff8df4e000 -
    0x7fff8df77fff  com.apple.datadetectors (3.0 - 172.3) <7C8B98DD-68C0-3AE0-BCD9-55CBD63925B7> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x7fff8df78000 -
    0x7fff8df7ffff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <40374018-2832-3144-8114-CED417321C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff8df80000 -
    0x7fff8dfa6ff7  com.apple.framework.familycontrols (3.0 - 300) <41A6DFC2-EAF5-390A-83A1-C8832528705C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8dfaf000 -
    0x7fff8dfb0ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
    0x7fff8e026000 -
    0x7fff8e133fff  libJP2.dylib (??? - ???) <6052C973-9354-35CB-AAB9-31D00D8786F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff8e134000 -
    0x7fff8e450ff7  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <6020C3FB-6125-3EAE-A55D-1E77E38BEDEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8e457000 -
    0x7fff8e46cfff  com.apple.FileSync.framework (6.0 - 432) <D296CA43-BAED-3AA9-953A-C879FEBD6104> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x7fff8e46d000 -
    0x7fff8e474fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8e481000 -
    0x7fff8e481fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff8e4b3000 -
    0x7fff8e4b9fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
    0x7fff8e4c9000 -
    0x7fff8e4ccff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8e4cd000 -
    0x7fff8e4cefff  com.apple.ServerInformation (1.0 - 1) <EE6BFCB2-C727-3CE6-B8C9-834230B2646B> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x7fff8e4cf000 -
    0x7fff8e74afff  com.apple.imageKit (2.1.1 - 1.0) <9C159577-0FFF-34D8-890E-66627A9E44FB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff8e74b000 -
    0x7fff8e780fff  com.apple.securityinterface (5.0 - 55004) <790DDF7E-6BA9-36DD-B818-2322A712E1F5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff8e7f5000 -
    0x7fff8e7f5fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8e7f6000 -
    0x7fff8e7f8fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
    0x7fff8e899000 -
    0x7fff8e960ff7  com.apple.ColorSync (4.7.0 - 4.7.0) <F325A9D7-7203-36B7-8C1C-B6A4D5CC73A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8e96d000 -
    0x7fff8e99aff7  com.apple.opencl (1.50.63 - 1.50.63) <DB335C5C-3ABD-38C8-B6A5-8436EE1484D3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8e99b000 -
    0x7fff8ecb4ff7  com.apple.Foundation (6.7.1 - 833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff8ecb5000 -
    0x7fff8ecbcff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7fff8ecbd000 -
    0x7fff8ecc0fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff8ecc1000 -
    0x7fff8ed44fef  com.apple.Metadata (10.7.0 - 627.20) <E00156B0-663A-35EF-A307-A2CEB00F1845> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8ed45000 -
    0x7fff8ed47fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff8ed48000 -
    0x7fff8ed4bfff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8ed85000 -
    0x7fff8ed85fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8ed86000 -
    0x7fff8f51afef  com.apple.CoreAUC (6.11.04 - 6.11.04) <FFC336DF-C71F-3C93-8E93-5CBD9EEAE940> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8f51b000 -
    0x7fff8f521fff  libGFXShared.dylib (??? - ???) <343AE6C0-EB02-333C-8D35-DF6093B92758> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8f522000 -
    0x7fff8f549fff  com.apple.framework.internetaccounts (1.1 - 2) <B01A08DC-2735-3783-B0C8-63492BD845CF> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x7fff8f54a000 -
    0x7fff8f5dcff7  com.apple.PDFKit (2.6.1 - 2.6.1) <33A0A777-8CF4-3F36-BB1A-78F8A3D7E8C2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff8f5df000 -
    0x7fff8f671fff  com.apple.CorePDF (3.0 - 3.0) <6056B710-155A-3543-9373-B9F3E5FC99CE> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8f672000 -
    0x7fff8f77efff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8f77f000 -
    0x7fff8fa0afff  com.apple.JavaScriptCore (7534.52 - 7534.52.7) <4B188A38-3A5B-327D-ABE9-8EE2420B3791> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8fa0b000 -
    0x7fff8fa90ff7  com.apple.Heimdal (2.1 - 2.0) <C92E327E-CB5F-3C9B-92B0-F1680095C8A3> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8fa91000 -
    0x7fff8fec3fff  com.apple.VideoToolbox (1.0 - 705.42) <FA0AD643-845C-3378-AFD1-8C5BD0215B72> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff8fec4000 -
    0x7fff8fed0fff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x7fff8ff83000 -
    0x7fff8ffa3fff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8ffa4000 -
    0x7fff8ffb6ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    0x7fff8ffb7000 -
    0x7fff90000fff  com.apple.framework.CoreWLAN (2.1.1 - 211.3) <0FBC6087-6872-3403-A317-CE888969CF4C> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff90001000 -
    0x7fff90047ff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <EAF61ADC-DC00-34CE-B23E-7238ED54E31D> /usr/lib/libcurl.4.dylib
    0x7fff90290000 -
    0x7fff902e4ff7  com.apple.ImageCaptureCore (3.0.1 - 3.0.1) <5D86BECB-9F7A-3FDB-9436-C3DE4B2A5F29> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff902e5000 -
    0x7fff90309fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff9030a000 -
    0x7fff90315ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff90316000 -
    0x7fff90366fff  com.apple.CoreMediaIO (210.0 - 3180) <13374EA4-83BE-3407-B9DD-D199426D0E7A> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff90367000 -
    0x7fff9068bfff  com.apple.HIToolbox (1.8 - ???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff9068c000 -
    0x7fff906b7ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
    0x7fff906b8000 -
    0x7fff912b9ff7  com.apple.AppKit (6.7.2 - 1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff912ba000 -
    0x7fff912c7fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff912c8000 -
    0x7fff913c6fff  com.apple.QuickLookUIFramework (3.1 - 500.1) <D3A71FF1-7ED1-39DB-AD4E-451612DA536C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff913cd000 -
    0x7fff91435ff7  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <7966E3BE-376B-371A-A21D-9BD763C0BAE7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff91436000 -
    0x7fff9145ffff  com.apple.CoreServicesInternal (113.8 - 113.8) <C1A3CF1B-BC45-3FC6-82B3-1511EBBA9D51> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x7fff91460000 -
    0x7fff91499fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
    0x7fff9149a000 -
    0x7fff914edfff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff914ee000 -
    0x7fff914fcff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff914fd000 -
    0x7fff91578ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff91579000 -
    0x7fff9158cff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
    0x7fff9158d000 -
    0x7fff915dbfff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    0x7fff915dc000 -
    0x7fff91623ff7  com.apple.CoreMedia (1.0 - 705.42) <AA2E9D78-A08C-39E2-B423-D69A75C2397D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff91624000 -
    0x7fff91624fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff91668000 -
    0x7fff91691ff7  com.apple.framework.Apple80211 (7.1.1 - 711.1) <FD0675E6-6602-3C28-85AA-6A4AF6B36D78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff91692000 -
    0x7fff91693fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
    0x7fff91694000 -
    0x7fff91da7587  com.apple.CoreGraphics (1.600.0 - ???) <A9F2451E-6F60-350E-A6E5-539669B53074> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff91da8000 -
    0x7fff91dccff7  com.apple.RemoteViewServices (1.2 - 39) <862849C8-84C1-32A1-B87E-B29E74778C9F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff91dcd000 -
    0x7fff91dd2fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    0x7fff91dd3000 -
    0x7fff91ed6fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <7F60B0FF-4946-3639-89AB-B540D318B249> /usr/lib/libsqlite3.dylib
    0x7fff91ef3000 -
    0x7fff91ef3fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib

  • Menu Bar Icons

    I am having a problem with my system menu bar icons on my MacBook Pro. If I click on for example wifi and try moving over to volume it will not auto select volume. I need to click on volume. In Safari this does appear to be an issue if I click on file and move over to edit it autoselects edit. It only appears to effect the system icons (Time Machine, Bluetooth, Wifi, Volume, Time, etc.) On my Macbook Air it autoselects the system icons without a problem.
    I tried force quitting SystemUIServer and it will fix this issue and auto select the system icons, but once I restart my computer the issue reappears again...
    I think something must be corrupt I tried cleaning out the plist files but it had no effect... Is there some other setting I need to try adjusting somewhere?
    Thanks!

    I don't believe I do.
    If I go to my name on the menu bar and switch user and log right back in as myself it resolves itself too. If I force quit systemuiserver it will fix it too. It must be something when booting up that is causing the error.
    Is there another plist file I am using besides systemuiserver.plist?

  • Menu Bar icons disappearing

    My menu bar icons for volume, date and time, ect. All disappeared randomly and I don't know why. I went into my system preferences to try to re add them and when I click the box to put it back, it just deselects automatically and won't let me re-add them. I also can't open finder. It says the application isn't responding. I've restarted. I've gone through the disk utility stuff. I'm at my wits end on how to deal with this. Suggestions/info?
    Thanks!

    Nate
    I too am at a loss for lack of details - especially about the 'refusal' to obey in the Prefs.
    One thing that springs to mind concerning the menu bar 'icon' items - in some apps, the App's menu has a LOT of menu headings. In the case where it needs the room, it will push some out of the way (somehow) - an example is BBEdit
    BBEdit removes these
    leaving this
    ÇÇÇ

  • How does a user activate a menu bar icon?

    Hello everyone, how great is it to assign hotkeys for your application menus.  Yet... for the more interesting users like me, we need to also activate menu bar icon settings, particularly the 'show ink window' in my case.  Respectively iv'e tried every corner in the world for another way of activating that besides the point and click method everyone is forced to use... and came up with no answer... so i figured, what about Terminal? maybe... just maybe there is a Terminal(OS X native command-line tool) command for this, if anyone knows please share!!
    GL my apple friends!

    You can open the form in Adobe Reader and save the form after filling in the data.
    Ken

Maybe you are looking for

  • ACE: wrong IP in HTTP header HEALTHCHECK packet

    Hi, I encounter a strange problem with ACE when the blade performs a HTTP healthcheck towards a RSERVER. Sometimes, ACE insert in the HTTP header a strange IP address, others then the IP address of the rserver, for which it performs a healthcheck. An

  • SQL Function in SQLJ

    I am still getting following error: java.sql.SQLException: Invalid column name below is my sample code when I run it without decoding it runs fine but when I do decoding it gives me above error void dpi(int batch_no) throws SQLException { BatchRec dp

  • Windows 7 Live Photo Gallery Screensaver

    I use windows 7 and the live photo gallery screensaver.  Recently I am getting this: An error is preventing this slide show from playing. If I change the screen saver to photos it works fine.  Both Photos and Windows Live Photo Gallery point to the s

  • Inconsistent results with ANSI LEFT JOIN on 9iR2

    Is this a known issue? Is it solved in 10g? With the following data setup, I get inconsistent results. It seems to be linked to the combination of using LEFT JOIN with the NULL comparison within the JOIN. create table titles (title_id int, title varc

  • Problem importing idoc to XI integration repository

    I have deleoped a custom IDOC and released in SAP/R3. Next I have imported it to XI using transaction IDX2 without problems. However, when I try to import the metadata to the integration repository, I can't find it in the list of available IDOcs. I h