Access to Services Using Contextual Menu

I would love to be able to CTRL-Click on something in Safari and have a contextual menu that includes Services - Mail.
The method is to go under the Safari menu and select Services then Mail then the choice. More pointing and clicking than I would like to do.
Does anyone know of a shortcut?
Thanks.

You can make a Safari keyboard shortcut for any item in any of Safari menus including this one.
go to system preferences->keyboard&mouse->keyboard shortcuts.
click on + and make a new shortcut. Choose "safari" as the application and "Send Selection" as the Menu Title.
Now to invoke it you just select whatever you need in safari and enter your keyboard shortcut.

Similar Messages

  • Finder quits when I try to use contextual menu on Photoshop CS2 JPEGs

    Everytime when I right-click on a .jpg file saved in Photoshop's "save as" dialogue, the finder crashes immediately. It doesn't occur, when the JPEG was saved with Photoshop's "save for web" dialogue.
    A Finder or a Photoshop problem?

    Hmmm, do you remember if there were any Contextual Menu items installed by you?
    I'd try dragging the things out of these folders and put them back one at a time with a reboot to find the offener...
    System/Library/Contextual Menu Items
    Users/YourUserName/Library/Contextual Menu Items

  • Accessing Dictionary / Thesaurus with Contextual Menu

    If I have the Dictionary Application selected in the preferences, when I control click on a word, I get only the dictionary or the thesaurus (depending on the order I set in the preferences), but not both. If I have the Dictionary Panel selected in the preferences, after the panel appears, I click “more”, then I’ll have both the dictionary and the thesaurus. Am I missing something, because it would be nice to have the Dictionary Application come up right away with both?
    Steve Dutton

    Hi, Steve.
    Your post is a little hard to follow since you've not quite got the terminology correct. The short answer is that "Look up in Dictionary" is "working as designed."
    Let's see if I can clarify what's happening:
    1. In Dictionary > Preferences, under Contextual Menu, if you select "Open Dictionary application" then when you Control-click a selected word and select "Look up in Dictionary" in the contextual menu, it launches the Dictionary application and displays either the definition or thesaurus entry, depending on which is first in the list at the top of Dictionary Preferences.
    2. In Dictionary > Preferences, under Contextual Menu, if you select "Open Dictionary panel" then when you Control-click a selected word and select "Look up in Dictionary" in the contextual menu, a tiny window (the Dictionary panel opens showing either the definition or the thesaurus entry, depending on which is first in the list at the top of Dictionary Preferences. If you click More, this launches the Dictionary application, enabling you to see both the definition and thesaurus entries in one Dictionary application window.
    How the "Look up in Dictionary" contextual menu choice works on selected text depends on the setting of the Contextual Menu option in Dictionary Preferences and the first item in the list the top of those Preferences, as follows:
    • The Dictionary panel shows only one of the items for the selected text — definition or thesaurus entry — i.e. whichever is first in the list at the top of Dictionary Preferences. One then has to click More to see both definition and thesaurus entry in a window in the Dictionary application
    • The Dictionary application likewise shows only one of the items for the selected text — definition or thesaurus entry —  i.e. whichever is first in the list at the top of Dictionary Preferences.
    Note that if you make changes in Dictionary's Preferences, you have to close the Dictionary Preferences for the changes to take effect.
    It appears one only receives both the definition and thesaurus entry for a word simultaneously if:
    (a) One has set Dictionary Preferences as noted in item 2 above and clicks More after having selected text and opened the Dictionary panel via "Look up in Dictionary."
    (b) One launches Dictionary independently, searches for a word directly in Dictionary, and then selects that word from the list of search results.
    If you'd like to suggest that Apple change these behaviors in Dictionary, submit a Mac OS X Feedback.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • ORA-29541 while trying to access web service using UTL_DBWS

    Hi all,
    Solicit your help in the beforesaid scenario:
    I've 9.2.01 RDBMS, JPub 9.2.0.1.0 Production and OC4J Release 10.1.2 (standalone) environment and a local webservice.
    While issuing jpub, I get the following response:
    jpub -user=scott/tiger@ORACLE -sysuser sys/tiger -proxywsdl="e:\IMyFloatWebService.wsdl" -endpoint="http://10.177.238.71:8988/WS_Appln-WSFloat_prj-context-root/MyFloatWebService" -proxyopts=soap,tabfun -dir=FloatValue -plsqlpackage=soap_callout_wrap_eg -proxyopts=noload
    Note: FloatValue\MyFloatWebServiceProxy.java uses unchecked or unsafe operations
    Note: Recompile with -Xlint:unchecked for details.
    FloatValue\MyFloatWebServiceProxyJPub.java
    FloatValue\plsql_wrapper.sql
    FloatValue\plsql_dropper.sql
    FloatValue\plsql_grant.sql
    FloatValue\plsql_revoke.sql
    FloatValue\plsql_proxy.jar
    Please run FloatValue\plsql_wrapper.sql in the user schema, load the generated j
    ar file and run FloatValue\plsql_grant.sql in the SYS schema.
    i. e - I get message as seen above:
    "Please run FloatValue\plsql_wrapper.sql in the user schema, load the generated j
    ar file and run FloatValue\plsql_grant.sql in the SYS schema."
    And in sqlplus, while I try to access the web service, I get this error:
    "SQL> sho user;
    USER is "SCOTT"
    SQL> SELECT soap_callout_wrap_eg.getCircumference(20)
    2 FROM dual;
    FROM dual
    ERROR at line 2:
    ORA-29541: class SCOTT.MyWebServiceFloatRTEProxyJPub could not be resolved"
    Could somebody please advise me where I might be going wrong? Any help in this regards will be highly appreciated.
    Regards,
    Leslie

    Hi,
    I presume your Web Service needs HTTP (BASIC?) Authentication.
    All this needs is setting the following 2 properties, which as can be seen, you are setting....
    UTL_DBWS.set_property(l_call, 'USERNAME', '<username>');
    UTL_DBWS.set_property(l_call, 'PASSWORD', '<pwd>');
    This should work as long as your DBWS Callout Utility was downloaded from OTN after June 2008, and it's version is atleast 10.1.3.1.
    Following is a sample code snippet that was tested successfully for this :
    Declare
    l_service UTL_DBWS.service;
    l_call UTL_DBWS.call;
    l_result sys.XMLTYPE;
    l_request sys.XMLTYPE;
    BEGIN
    l_service := UTL_DBWS.create_service(null);
    l_call := UTL_DBWS.create_call(l_service);
    UTL_DBWS.set_target_endpoint_address(l_call, 'http://xxx.oracle.com:8888/basic/MyWebService1SoapHttpPort');
    UTL_DBWS.set_property(l_call, 'USERNAME', 'username');
    UTL_DBWS.set_property(l_call, 'PASSWORD', 'pwd');
    UTL_DBWS.set_property(l_call, 'OPERATION_STYLE', 'document');
    UTL_DBWS.set_property(l_call, 'SOAPACTION_USE', 'true');
    UTL_DBWS.set_property(l_call, 'SOAPACTION_URI', 'http://xxx.oracle.com:8888/basic/MyWebService1SoapHttpPort');
    l_request := XMLTYPE('<Z_CENTRICITY_GET_DOCLIST
    xmlns:urn="urn:sap-com:document:sap:rfc:functions">' ||
    '<I_INCLUDE_OLD_VERSIONS></I_INCLUDE_OLD_VERSIONS>' ||
    '<I_INSTITUTION>0001</I_INSTITUTION>' ||
    '<I_PATIENT_NR>0000000181</I_PATIENT_NR>' ||
    '</Z_CENTRICITY_GET_DOCLIST>');
    l_result := UTL_DBWS.invoke(l_call, l_request);
    UTL_DBWS.release_call (call_handle => l_call);
    UTL_DBWS.release_service (service_handle => l_service);
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line(sqlcode || ' ' || sqlerrm);
    END;
    Hope this helps,
    Yogesh

  • Problem in Accessing Admin services using users other than administrator

    Hi,
    I am working on SAP MII 12.1. I have a reuirement to get list of users for a particular role from the system for display in a dropdown. I am using the URL :
    /XMII/Illuminator?Service=admin&mode=UserList&Group=[Param.1]&Content-Type=text/xml
    But I am getting error while logging through a different user (user who does not have Administrator role).
    I tried to call this url as aXML query, through transaction and also through web service, but it's showing following error:
    You do not have permission to access service Admin
    Please let me know how can I use this url for any user who does not have administrator role.
    Thanks,
    Anubhuti

    Hi,
    The problem got resolved by giving the role privileges to access the Admin services through UME. Earlier I couldn't find the way to provide this access in 12.1.
    Thanks,
    Anubhuti

  • Visual Composer - access Web Services using http proxy

    Hi,
    I want to use an external web service in the Visual Composer. I set up the service in NWA -> SOA Management -> Destination Template Management.
    I defined the http proxy in System Global Settings. The proxy requires authentication so I provided username and password.
    When I want to access the web service in the Visual Composer the log file shows this:
    com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (407) Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied.  ). The requested URL was:"myWSURL"
    It seems that authentication is not performed although I provided the correct credentials. Using (internal) web services without the proxy works fine with the visual composer.
    Any ideas? Thanks, Kevin

    Hi Kevin
    I have used the cglobal weather,get cities by country and Currency converter webservices in VC for CE 7.1
    The pdf in the link below was of immense help..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90f8a753-f03d-2a10-5fb0-f14b085b4cb2
    Hope this helps.

  • Is it possible to access GPS service using BlackBerry 8320 Model?

    Does 8320 model has in-build GPS chip?
    Use Search. "Accept Solution" if the problem gets resolved.
    Solved!
    Go to Solution.

    Welcme to the supprt frums
    http://www.blackberryforums.com/general-8300-serie​s-discussion-curve/120510-8320-google-maps-accurac​... 
    Nurse-Berry
    Follow NurseBerry08 on Twitter

  • Graph contextual menu question

    This is probably basic, but I am trying to understand how Graph contextual menus function.
    In a typical XY Graph, we have the option to modify the (runtime) contextual menu, which is something I am increasingly doing to extend the functionality of that object. For instance I increasingly use a "Delete Plot" or "Paste Plot" (and probably should replace the "Export Data to Clipoard" by a "Copy Plot" item, now that I think of it...).
    Anyhow, this contextual menu is available when I right-click on:
    - the Plot area
    - the Graph Palette
    - the Scale Legend
    - the Plot Legend (except for the Plot Style region).
    - the Cursor Keypad thingy
    but not when I click on:
    - the Cursor Legend
    - the Plot Style regions of the Plot Legend
    In the latter two cases, a specific runtime menu pops-up.
    This makes perfect sense (well, not exactly: why does the Keypad thingy give me access to a Plot contextual menu? Likewise for the Graph Palette?) but like we may want to modify the Graph runtime menu proper, we may (we do!) want to modify the runtime menu for the the two outliers above.
    Why can't we?

    X,
    I believe this is due to the properties being separate objects, as such they do not have access to each others properties.  I found another forum post where a workaround is described.
    http://forums.ni.com/t5/LabVIEW/How-to-customize-t​he-context-menu-in-the-plot-legend-of-the/td-p/209​...
    If there is anything else we can help with let us know,
    J Newk
    Systems Engineer
    National Instruments

  • Not able to access web service with axis and tomcat

    Dear all
    i am trying to access web service using axis in tomcat.
    i downloaded axis-bin-1_4.zip, unzipped it and installed it properly in tomcat.
    i had tested axis, its working fine.
    i had created a simple java class(a sample class from book) and deployed it in axis. i also created a client(a java consol class) for accessing that web service. but its giving error. i have no idea why this is comming.
    plz point me in right direction.
    thanks in advance
    The error is:
    Exception in thread "main" AxisFault
    faultCode: {http://xml.apache.org/axis/}HTTP
    faultSubcode:
    faultString: (404)/axis/ArithmeticProcessor.jws
    faultActor:
    faultNode:
    faultDetail:
            {}:return code:  404
    <html><head><title>Apache Tomcat/6.0.14 - Error report</tit
    le><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;ba
    ckground-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;
    color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Ari
    al,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-f
    amily:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-famil
    y:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:
    Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color :
    black;}A.name {color : black;}HR {color : #525D76;}--></style> </hea
    d><body><h1>HTTP Status 404 - /axis/ArithmeticProcessor.jws</h
    1><HR size="1" noshade="noshade"><p><b>
    type</b> Status report</p><p><b>message</b> <u&
    gt;/axis/ArithmeticProcessor.jws</u></p><p><b>descriptio
    n</b> <u>The requested resource (/axis/ArithmeticProcessor.jws) is n
    ot available.</u></p><HR size="1" noshade="noshade
    "><h3>Apache Tomcat/6.0.14</h3></body></html>
            {http://xml.apache.org/axis/}HttpErrorCode:404
    (404)/axis/ArithmeticProcessor.jws
            at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.j
    ava:744)
            at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
            at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrateg
    y.java:32)
            at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
            at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
            at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
            at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
            at org.apache.axis.client.Call.invoke(Call.java:2767)
            at org.apache.axis.client.Call.invoke(Call.java:2443)
            at org.apache.axis.client.Call.invoke(Call.java:2366)
            at org.apache.axis.client.Call.invoke(Call.java:1812)
            at ArithmeticClient.main(ArithmeticClient.java:50)

    Hi ,
    Please go through this link and check in this way only you created the webservice correctly or not. If not follow and do it definitely will get you the webservice access by iphone or any application.
    www.scribd.com/doc/19255987/Web-Services-in-Abap

  • Not able to access Web services

    Hi all,
    I am trying to access web services using the transaction WSADMIN.
    But when i give the authorization while generating the WSDL, the following error pops up:
    <b>Technical Details of Soap Core Exception
    Message Text: SRT: ASSERT failed: object reference not bound
    Class: CL_SOAP_REGISTRY
    Method: generate_wsdl
    LocationID: 6
    Program: CL_SOAP_REGISTRY==============CP
    Include: CL_SOAP_REGISTRY==============CM00J
    Line: 59</b>
    Can anyboby share his/her insights in this regard?
    Thanks,
    Ankit

    Hi Fernando,
    Thanks for this.
    I was able to activate and deactivate the services. But i was not able to test these services (HTTP 500 Internal server error).
    Also the services which are listed in the trnx SICF are not present in the trnx WSADMIN (I am using trnx WSADMIN to go to the home page of the web service and download the WSDL file of the service). What may be the reason?
    Is there some configuration setting which I am missing or is it some other problem?
    Regards,
    Ankit

  • Contextual menu from desktop

    I noticed an unusual, but useful, contextual menu from my desktop today. It said "Clean Up" as it pertained to the alignment of icons on the desktop. I had first tried to put my dock on the right side of my screen. I haven't used it there because the desktop icons were always behind it! Well, when I tested this new "Clean Up" it straightened up the icons and bumped them over away from the Dock!
    So - where did this mysterious "Clean Up" option come from? I have no idea! Anyone? The other login on my Mac doesn't have it.

    Choose Go to Folder from the Finder's Go menu and enter ~/Library/Contextual Menu Items/ as the path; in addition, check that the view settings for the desktop are the same on both accounts.
    (39253)

  • Contextual Menu Access to Services

    I would love to be able to CTRL-Click on something in Safari and have a contextual menu that includes Services - Mail.
    The method is to go under the Safari menu and select Services then Mail then the choice. More pointing and clicking than I would like to do.
    Does anyone know of a shortcut?
    Thanks.

    Um, you posted in the Using iTunes for Windows forum. You might want to post in the Leopard forum.
    http://discussions.apple.com/forum.jspa?forumID=1225
    or the Safari Forum:
    http://discussions.apple.com/forum.jspa?forumID=876
    Best of luck.

  • Can't access in  Finder Contextual Menu  the sub-menu named More

    Hi!
    I was trying to learn how to use Automator, in the web page
    http://www.macosxautomation.com/automator/examples/ex03/index.html
    and I realize that I can't access in Finder Contextual Menu the sub-menu named More for choose Automator > Create Workflow... from the sub-menu.
    Someone can help me to configure the finder in order to

    That page is out of date since it doesn't reflect the change in Snow Leopard that did away with the More contextual menu. Try this. System Preferences->Keyboard->Keyboard Shortcuts->Services->Development->enable Create Workflow. Close the prefPane, select the object, CONTROL-click->Services->Create Workflow.
    If that solves your issue, then send a message to the page's developer and ask them to update it.
    BTW, see http://discussions.apple.com/thread.jspa?threadID=2241804 for a four-parter by Sal Saghoian on *Automation in Snow Leopard*
    and this, which describes the old and new automator—services stuff:
    http://www.reynoldsftw.com/2009/08/automator-and-finder-interactions-in-os-x-10- 6/

  • Safari 3.2.1 quits when contextual menu used

    I have a wired Mighty Mouse and use OSX 10.5.6. The mouse has the straightforward primary/secondary configuration. The old Safari 3.1.2 worked (and works) fine. However 3.2.1 quits when I use the secondary mouse button to open a link in a new window or a tab. All the system software is up to date and I do not any problems with my trusty old Mac apart from this one issue. Any ideas?

    Hi,
    I hope this means something to you....
    Process: Safari [444]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.2.1 (5525.27.1)
    Build Info: WebBrowser-55252701~1
    Code Type: PPC (Native)
    Parent Process: launchd [77]
    Date/Time: 2009-01-20 22:30:32.594 +0000
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000017e40f44
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libSystem.B.dylib 0x9026a1e4 szone_free + 1364
    1 com.apple.CoreFoundation 0x90494a64 __CFStringDeallocate + 80
    2 com.apple.CoreFoundation 0x904a12a4 _CFStringCreateWithFormatAndArgumentsAux + 164
    3 com.apple.Foundation 0x93086790 -[NSPlaceholderString initWithFormat:locale:arguments:] + 148
    4 com.apple.Foundation 0x930866d8 +[NSString stringWithFormat:] + 88
    5 com.apple.Safari 0x000092e4 0x1000 + 33508
    6 com.apple.Safari 0x00008e98 0x1000 + 32408
    7 com.apple.Safari 0x00056914 0x1000 + 350484
    8 com.apple.Safari 0x0002e084 0x1000 + 184452
    9 com.apple.Safari 0x0002d9f4 0x1000 + 182772
    10 com.apple.AppKit 0x946b4834 -[NSApplication sendAction:to:from:] + 104
    11 com.apple.Safari 0x0002d060 0x1000 + 180320
    12 com.apple.AppKit 0x94750160 -[NSMenu performActionForItemAtIndex:] + 408
    13 com.apple.AppKit 0x9474fe90 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 228
    14 com.apple.AppKit 0x947314e4 AppKitMenuEventHandler + 5444
    15 com.apple.HIToolbox 0x938d4ca8 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484
    16 com.apple.HIToolbox 0x938d3e40 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464
    17 com.apple.HIToolbox 0x938f0da4 SendEventToEventTarget + 52
    18 com.apple.HIToolbox 0x93926474 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 452
    19 com.apple.HIToolbox 0x9394ce40 SendMenuItemSelectedEvent + 136
    20 com.apple.HIToolbox 0x9394cd44 FinishMenuSelection(MenuData*, MenuData*, MenuResult*, MenuResult*, unsigned long, unsigned long, unsigned long, unsigned char) + 136
    21 com.apple.HIToolbox 0x9399f2dc PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1428
    22 com.apple.HIToolbox 0x9399ecb0 _HandlePopUpMenuSelection7 + 568
    23 com.apple.AppKit 0x94806c4c _NSPopUpCarbonMenu3 + 2580
    24 com.apple.AppKit 0x9480621c _NSPopUpCarbonMenu2 + 176
    25 com.apple.AppKit 0x94806158 _NSPopUpCarbonMenu1 + 40
    26 com.apple.AppKit 0x948060e0 -[NSCarbonMenuImpl _popUpContextMenu:withEvent:forView:withFont:] + 236
    27 com.apple.AppKit 0x94805f1c -[NSMenu _popUpContextMenu:withEvent:forView:withFont:] + 208
    28 com.apple.AppKit 0x949aeb98 -[NSControl _rightMouseUpOrDown:] + 480
    29 com.apple.AppKit 0x946b231c -[NSWindow sendEvent:] + 7428
    30 com.apple.Safari 0x0002b5f0 0x1000 + 173552
    31 com.apple.AppKit 0x94684b5c -[NSApplication sendEvent:] + 3256
    32 com.apple.Safari 0x0002afd0 0x1000 + 171984
    33 com.apple.AppKit 0x945f1dc0 -[NSApplication run] + 776
    34 com.apple.AppKit 0x945c279c NSApplicationMain + 440
    35 com.apple.Safari 0x000bd6d0 0x1000 + 771792
    Thread 1:
    0 libSystem.B.dylib 0x9026ab6c _semwaitsignal + 12
    1 com.apple.WebCore 0x94e870dc WebCore::IconDatabase::syncThreadMainLoop() + 316
    2 com.apple.WebCore 0x94e43174 WebCore::IconDatabase::iconDatabaseSyncThread() + 420
    3 libSystem.B.dylib 0x902a6024 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x90264158 machmsgtrap + 8
    1 libSystem.B.dylib 0x9026b07c mach_msg + 56
    2 com.apple.CoreFoundation 0x9047d554 CFRunLoopRunSpecific + 1812
    3 com.apple.CFNetwork 0x90b9e938 CFURLCacheWorkerThread(void*) + 292
    4 libSystem.B.dylib 0x902a6024 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x90264158 machmsgtrap + 8
    1 libSystem.B.dylib 0x9026b07c mach_msg + 56
    2 com.apple.Safari 0x0012099c 0x1000 + 1178012
    Thread 4:
    0 libSystem.B.dylib 0x90264158 machmsgtrap + 8
    1 libSystem.B.dylib 0x9026b07c mach_msg + 56
    2 com.apple.CoreFoundation 0x9047d554 CFRunLoopRunSpecific + 1812
    3 com.apple.Foundation 0x930d95f8 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 280
    4 com.apple.Foundation 0x93082764 _NSThread__main_ + 1004
    5 libSystem.B.dylib 0x902a6024 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x902c7d20 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x904889c8 __CFSocketManager + 764
    Thread 0 crashed with PPC Thread State 32:
    srr0: 0x9026a1e4 srr1: 0x0000f030 dar: 0x17e40f44 dsisr: 0x42000000
    r0: 0xc0000003 r1: 0xbfffce60 r2: 0xc1753f97 r3: 0x00000000
    r4: 0x00000003 r5: 0x00000028 r6: 0x0000002c r7: 0x00000e03
    r8: 0x00000000 r9: 0x17e40f40 r10: 0x9038fe68 r11: 0x05d4ee10
    r12: 0x90264150 r13: 0x001f1240 r14: 0x001fe014 r15: 0x00000000
    r16: 0x001f15f8 r17: 0x00000002 r18: 0x001f0000 r19: 0x00000010
    r20: 0x05dfea01 r21: 0x05d00000 r22: 0xa0079ca0 r23: 0x05d4fe50
    r24: 0x05dfca7c r25: 0x005d4fe6 r26: 0x00000001 r27: 0x0000008b
    r28: 0x0024b000 r29: 0x0000008c r30: 0x05d4fe60 r31: 0x90269ca0
    cr: 0x44224222 xer: 0x20000004 lr: 0x9026a1b8 ctr: 0x90264150
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x1e1fff com.apple.Safari 3.2.1 (5525.27.1) <853c8d889e8d4d1371526298b5fde62a> /Applications/Safari.app/Contents/MacOS/Safari
    0x22b000 - 0x23affc SyndicationUI ??? (???) <fc04edfeb23291b9da72e772514e418f> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x29c000 - 0x29cffd +net.bti.ConciergeLoader ??? (1.0.2) <e15bd06bbfafb139df82fec0c21f06a2> /Library/InputManagers/ConciergeLoader/ConciergeLoader.bundle/Contents/MacOS/Co nciergeLoader
    0x2af000 - 0x2b6fe7 +com.unsanity.smartcrashreports Smart Crash Reports version 1.2.1 (1.2.1) /Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x2bc000 - 0x2ddff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x500000 - 0x6b2ff7 com.apple.RawCamera.bundle 2.0.10 (2.0.10) <385afe576f8fd60530711a5eab4ed182> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x736000 - 0x762fff +net.bti.Concierge ??? (1.4.11) /Library/Application Support/Concierge/Concierge.bundle/Contents/MacOS/Concierge
    0x2cea000 - 0x2cf0fff libCGXCoreImage.A.dylib ??? (???) <c48065859a043fc77855aff2b43bc157> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x51e6000 - 0x51e6ffc com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <4d7c87368522f447883c0dc395d6a2b4> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x5420000 - 0x5427fff com.apple.JavaVM 12.2.0 (12.2.0) <66f0b4a638cd0a2c2ab76c8b13382b51> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x5bc7000 - 0x5bc8fdf +com.symantec.NAVCMPlugIn 10.1 (003) /Library/Contextual Menu Items/NAVCMPlugIn.plugin/Contents/MacOS/NAVCMPlugIn
    0x5bcb000 - 0x5bcffdb +com.skytag.FileBuddy.CM 9.0 (09000002) /Users/paulmcdonald/Library/Contextual Menu Items/File Buddy CM.plugin/Contents/MacOS/File Buddy CM
    0x5bfe000 - 0x5bffff7 +com.google.GoogleNotifierQuickAddCMPlugin ??? (0.0.1.2) /Users/paulmcdonald/Library/Contextual Menu Items/Google Notifier Quick Add CM Plugin.plugin/Contents/MacOS/Google Notifier Quick Add CM Plugin
    0x5c0c000 - 0x5c0effd com.apple.AutomatorCMM 1.1 (160) <51b2d0c229997506192e4ee21494a1df> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x5c13000 - 0x5c14ffc com.apple.BluetoothMenu 2.1.3 (2.1.3f8) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x5c19000 - 0x5c1bfff com.apple.BezelServicesFW 1.4.925 (1.4.925) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x5c21000 - 0x5c26fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <8769a72b724b3d624c6aa6232fbb120e> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x6100000 - 0x6175fff com.apple.Bluetooth 2.1.3 (2.1.3f8) <37ee141ec82df33547d7b2d24d395a96> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x6228000 - 0x62acfd7 +ch.rafz.naegeli.christoph.xvid_codec 0.x.x (0.x.x) /Library/QuickTime/XviD_Codec-r58 (ppc).component/Contents/MacOS/XviD_Codec
    0x6355000 - 0x6360ffb com.apple.LiveType.component 2.0.2 (2.0.2) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x6366000 - 0x63cafef +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x65ea000 - 0x6707fc3 +ch.rafz.naegeli.christoph.ffaviimporter 1.0 (0.0) /Library/QuickTime/AviImporter-r7 (ppc).component/Contents/MacOS/AviImporter
    0x6a9c000 - 0x6c06ffb +com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x7f950000 - 0x7f9b8ffb com.apple.LiveType.framework 2.0.2 (2.0.2) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x8fe00000 - 0x8fe30c23 dyld 97.1 (???) <8dc1fc6c74fe1f055be16980dd45001e> /usr/lib/dyld
    0x900a1000 - 0x900e7ff9 com.apple.securityinterface 3.0.1 (35183) <de69e77f3c73d31603ea3cdb20329f81> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x900e8000 - 0x901cbfff libobjc.A.dylib ??? (???) <39035ba996e55c617e20595dcd89c063> /usr/lib/libobjc.A.dylib
    0x901cc000 - 0x90262fff com.apple.LaunchServices 290.3 (290.3) <a8a738aede278909ff721ce9a754142f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90263000 - 0x90403fe3 libSystem.B.dylib ??? (???) <3260ab8c558e938c8180b3ba1036aec1> /usr/lib/libSystem.B.dylib
    0x90405000 - 0x90412fff libCSync.A.dylib ??? (???) <bc19f19cfa6c23f9ca4e4419ea18f43e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90413000 - 0x90413fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90414000 - 0x90539ffb com.apple.CoreFoundation 6.5.5 (476.17) <d13dc71c870a82b7d2f721731e584287> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9057a000 - 0x9057cfff com.apple.CrashReporterSupport 10.5.5 (159) <6b6dd47a924b68535f29f220be383431> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x906b9000 - 0x906c9ffb com.apple.agl 3.0.9 (AGL-3.0.9) <056d952943aac260426645ce6a24eb9e> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9071a000 - 0x90733ffb com.apple.CoreVideo 1.5.1 (1.5.1) <7568a5b07a0ccb4ee76a9b997fa3e5d9> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9074a000 - 0x90788ff7 libtidy.A.dylib ??? (???) <aec2c15110f29e8461160b4fa0a1fbbe> /usr/lib/libtidy.A.dylib
    0x90789000 - 0x90789ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9078a000 - 0x90844fff libcrypto.0.9.7.dylib ??? (???) <335916b82e302fec637432caf7c9e8e5> /usr/lib/libcrypto.0.9.7.dylib
    0x90890000 - 0x908affff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x908b0000 - 0x908cffff libresolv.9.dylib ??? (???) <d4538f370cadea5d74d3ac86c610e570> /usr/lib/libresolv.9.dylib
    0x908d7000 - 0x90934ffb com.apple.HIServices 1.7.0 (???) <5f468086ca01158e12cd07f829132edf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x909bc000 - 0x90ad0ffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90ad1000 - 0x90ae4fff com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90b16000 - 0x90b1efff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x90b1f000 - 0x90b9afff com.apple.SearchKit 1.2.1 (1.2.1) <23c2c93a7ec832505d5c7b67fee89a6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90b9b000 - 0x90c44ffc com.apple.CFNetwork 422.11 (422.11) <189498280742bb4579e91b165301d331> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90c59000 - 0x90c5afff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x90c5b000 - 0x90c76ffb libPng.dylib ??? (???) <248297ff5b022c274d5dcfa0de3b37b2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90ef4000 - 0x91b67fff com.apple.QuickTimeComponents.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91b68000 - 0x920e4ff7 com.apple.CoreGraphics 1.407.2 (???) <6a101d8218dc8d12ca0b901c57aa44b7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x920e5000 - 0x920f3fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x920f4000 - 0x9211dffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9211e000 - 0x92144fff libcups.2.dylib ??? (???) <c340096dadbdc8edd534e5aec33a8e85> /usr/lib/libcups.2.dylib
    0x92145000 - 0x9218cfff com.apple.NavigationServices 3.5.2 (163) <cb063c95a55ba12994a64c7e47f5706a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92198000 - 0x922dfffb com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9242d000 - 0x924aefff com.apple.print.framework.PrintCore 5.5.3 (245.3) <032f772f8169945c1d1b524d96edcef6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x924af000 - 0x924caff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <afaae07f311885fb3d88c1d4e723d3d6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x924cb000 - 0x924ebff7 libJPEG.dylib ??? (???) <f92878fdf02ffb1474b8bc60c47bb72d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x924ec000 - 0x924faff3 com.apple.opengl 1.5.9 (1.5.9) <c3d74d9bd2fa60d9c346db5658e52815> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x924fb000 - 0x92609fff com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92629000 - 0x926d9fff com.apple.QD 3.11.54 (???) <cd7bef6f156b82851cfb164ccd9f3986> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x926da000 - 0x92730fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92731000 - 0x92749ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92758000 - 0x927ecff7 com.apple.framework.IOKit 1.5.1 (???) <498f2ba1b47432ee4deebca2655ff932> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x927ed000 - 0x927edfff com.apple.Carbon 136 (136) <f8fdb172887f2d6a374aed2d2a13b319> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x927ee000 - 0x927f9fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x927fa000 - 0x928bfffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x928c0000 - 0x928ebff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x929bb000 - 0x929bbff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x929bc000 - 0x929fdffb libTIFF.dylib ??? (???) <4c1422124af245485d6ceee207f4d735> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x929fe000 - 0x92ae7fff libxml2.2.dylib ??? (???) <dedfda117e78db04f0b86c59923b3794> /usr/lib/libxml2.2.dylib
    0x92aee000 - 0x92b53ffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92b54000 - 0x92c3cfff com.apple.JavaScriptCore 5525.26 (5525.26.2) <3a03d36ac807322bc73ed78c515e32be> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92c3d000 - 0x92c44ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92c45000 - 0x92ccdffb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f88caa828a4b54ed1932e1578bf9236a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92cce000 - 0x93033ffe com.apple.QuartzCore 1.5.7 (1.5.7) <75a8ef92c54d1ce016dfe662a6626f04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x93079000 - 0x932beffb com.apple.Foundation 6.5.7 (677.22) <dab423bf20d5c2d78c4536e4e3da9300> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93342000 - 0x93348ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93349000 - 0x9334bffd libRadiance.dylib ??? (???) <34cc3c24f4be3a4372275400b6e05b85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9334c000 - 0x93376ff7 libssl.0.9.7.dylib ??? (???) <1c571a24294df1af3428e31d464029fc> /usr/lib/libssl.0.9.7.dylib
    0x93377000 - 0x93446fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93447000 - 0x93496fff com.apple.Metadata 10.5.2 (398.25) <fdad4bda89efd0e2e9ca37493e10ca4c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93497000 - 0x934f7fff com.apple.CoreText 2.0.3 (???) <4ce8460abbfca7c9bd655ae0173976df> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x934f8000 - 0x935cbfff com.apple.CoreServices.OSServices 226.5 (226.5) <e50f547a3d8d316885b424e282bd80fe> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x935cc000 - 0x935d7ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x935d8000 - 0x93605fff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93606000 - 0x93622ffb com.apple.openscripting 1.2.8 (???) <eb961ce3c1b1e564c2eefe3682ee0555> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93623000 - 0x93642fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93686000 - 0x93689ffb com.apple.securityhi 3.0 (30817) <ad843393cafb2193fd716df88d8136bf> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9368a000 - 0x936bffff com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x936c0000 - 0x93782fff com.apple.WebKit 5525.27 (5525.27.1) <7de8ed23795391f9d81127e9b639a3c3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93783000 - 0x93824ff7 com.apple.QuickTimeImporters.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x93825000 - 0x938bfff7 com.apple.ApplicationServices.ATS 3.4 (???) <06af1441f632e171a7f61dca809462ba> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x938c0000 - 0x938ccff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x938cd000 - 0x93c06ffb com.apple.HIToolbox 1.5.4 (???) <9624d2ffaf16019b6301517339df88c9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93c07000 - 0x93c44fff libRIP.A.dylib ??? (???) <662becbd3173fd67eec7ad523d2d9c56> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x93c45000 - 0x93ccdfff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93cce000 - 0x93d03ffb com.apple.LDAPFramework 1.4.5 (110) <d0de37a2c23c1ab7dfd4af1882db9893> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93d6d000 - 0x93d72ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93d73000 - 0x93e23fff edu.mit.Kerberos 6.0.12 (6.0.12) <17b514ffed29c890fc8ba8eac9dce56e> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93e24000 - 0x93e2cffb libCGATS.A.dylib ??? (???) <0c83819d2d428a8df27c8cc0f13ba1dc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x93e2d000 - 0x93e8fffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93e90000 - 0x93ec1fff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93ec2000 - 0x942f0ffa libGLProgrammability.dylib ??? (???) <2c52a11697da6ede976b56d54e3815ef> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x942f1000 - 0x944d7ffb com.apple.security 5.0.4 (34102) <93e74504c60b38418e708caf47342cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x944d9000 - 0x944ecffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <dc8dac074f4d19175c5613b35aa529b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x945bd000 - 0x94d32fff com.apple.AppKit 6.5.6 (949.43) <3afcaa243535d0817efeb978448ef3dc> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94d33000 - 0x94d33ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94d61000 - 0x94d65ffe libGIF.dylib ??? (???) <491b205a6b8bb0c0c6ee6aaeea19a671> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94d6c000 - 0x94e05fc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94e06000 - 0x94e3ffff com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94e40000 - 0x95522ff3 com.apple.WebCore 5525.26 (5525.26.6) <77f5e6579cb4a8496df8d644ca7fa12d> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95523000 - 0x9566dffb com.apple.ImageIO.framework 2.0.4 (2.0.4) <cbe744146e1f0e77cca0edce92bea0f7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9566e000 - 0x95970ffb com.apple.CoreServices.CarbonCore 786.10 (786.10) <3861a1af8d647c75688761d7ef4b5bf3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95971000 - 0x95974fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95975000 - 0x95a04ffb com.apple.DesktopServices 1.4.7 (1.4.7) <5792e9dc03f76544c71dedd802a1fa36> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95a05000 - 0x95a10ffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x95a11000 - 0x95b59ffb libicucore.A.dylib ??? (???) <f49319412f5ee8b5f06fef2baa72916b> /usr/lib/libicucore.A.dylib
    0x95b5a000 - 0x95b71ffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95b72000 - 0x95b9afff libxslt.1.dylib ??? (???) <a628a1484428ce3c87c56cf663faeb54> /usr/lib/libxslt.1.dylib
    0x95b9b000 - 0x95ba2fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95ba3000 - 0x95be0ffe com.apple.securityfoundation 3.0 (32989) <d629b36fcfea256ec309420b99dccabf> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95be1000 - 0x95c48ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x95c49000 - 0x95c98fff libGLImage.dylib ??? (???) <1df480344fb6e09ff32ac97bfdda7e50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95d48000 - 0x95dd2fff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95ddd000 - 0x95decfff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <897487778bd1c0429fcd88c99c293583> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95ded000 - 0x95e72fff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x96014000 - 0x96014fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96015000 - 0x96016ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96066000 - 0x961d2ff9 com.apple.AddressBook.framework 4.1.1 (699) <3334680563e5e0238454a586032b401b> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x961d3000 - 0x964fcfe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x964fd000 - 0x9650dfff libsasl2.2.dylib ??? (???) <b83efbe4f0008d4632efc47e1f87dde6> /usr/lib/libsasl2.2.dylib
    0x9650e000 - 0x9683cff7 com.apple.QuickTime 7.5.5 (990.7) <f530ad007afd28b3dc938a41e0a3f1e8> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96934000 - 0x96eeefff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96eef000 - 0x96ef8fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Services menu missing from contextual menu

    i think my services menu is broken. it doesn't show up at all in the contextual menu and from the application menu if i have say a pdf selected the only thing i see listed is 'new email with attachment' and services preferences. anyone else have this problem.

    Yes, can report the exact same issue as well.
    The loss of the services and automator menus from a contextual click is a real annoyance, and I really shouldn't have come to the Apple discussion forums to find this answer.
    My scenairo is that I'm an entourage user for corporate mail and services (Sorry, can't stand the in-built clients for this purpose, they irritate me to no end). I had an automator action setup to easily create a new email with the selected items from the finder with a simple right click.
    To do this now requires a whole new way of working, and to get back to some semblance of what I had before, as documented here, you have to de-select then re-select all the services in the services preference pane.
    And while we're on the subject - why oh why can't we set the default program which email actions/services are sent to for existing services.
    This is a real pain, and shows a distinct lack of polish in the end use expeirence for snow leopard, sigh.
    Message was edited by: thewinchester

Maybe you are looking for

  • Ive authorized my music to my new mac but it wont let me play 2 specific songs out of the 40 i have? and it says its authorized!!

    i just got a new macbook pro and i authorized my itunes with my apple id and was able to copy all the music i purchased on my phone to my itunes. i them sync my phone to my itunes and all my music copied over and did not delete which is great! the pr

  • Clients unable to connect and get DHCP - LAP1142N AP and 5508 WLC

    Hi, I have 19 locations, each with 1 or more LAP1142N AP's in FlexConnect mode, AP's are primed using CAPWAP to my 5508 WLC at the datacenter. The AP's join the WLC without issue every time. I have two WLAN's, one guest and one staff, the guest netwo

  • XML Editor capable of decoding iTunes "Location" key?

    I'm looking for an XML editor that will allow me to select all entries in the iTunes Music Library XML file with the same Location key, and search and replace those files so all of them become part of the same playlist folder. This is using iTunes 8.

  • Proxy client won't work in this case?

    I have not made my client side work for a single device yet but I want to make sure I'm spending time on the right track: My code will be running on the application server side, there will be hundreds of devices each has its own IP address, but runs

  • Problem with libz.1.dylib

    Hi all, I have been performing a lot of build and install during the past few days to get netcdf working on my macbook pro. Given my very (very!) superficial knowledge on such matters many times I had to go through trial and error. Eventually I got i