Automator workflow to an apple script

Hello,
i have a few problems with the automator utility:
1. my automator work flow is to open an application and type a password.
the problem is when i recored and i'm typing the password, after i'm running the workflow seems that its not possible to type password, is there a way to type password while recording?
2. i have an automator workflow and i wish to convert it to an apple script.
after i've copy paste it to the apple script editor it seems to be the workflow but when i running the
script it not running.
please help...
Rafi.

Since you're using Mail, you might be able to have Mail do it.
You can set up a rule in Mail in its preferences to match an email with unique characteristics, such as certain content or a certain subject exactly. You might want to add a few conditions and "match all" to make sure you don't accidentally match something else.
Anyways, you choose to have the rule run an AppleScript. I haven't tested it by referencing an Automator workflow, but it might work. You might try a quick test first with a simple workflow.
You'd have to be logged in and have Mail automatically check for email, perhaps every minute or every five minutes. If you don't want to be logged in, likely you'll need to use a web page, like you suggested. I'm not sure what you need to do for that to work.

Similar Messages

  • Automator or Apple Script To Move Multiple Files to Multiple Folders

    I was just wondering, is there any sort of automator workflow or maybe apple script that will allow me to automate the following:
    I have a folder named SCANS containing multiple different files that need to go to multiple different folders.
    So Say I have:
    SCANS
    and in this folder I have ten files named A,B,C,D,E,F,G,H,I,J and I want each of these files to be moved to different folders eg.
    A I want to go to folder 1
    B I want to go to folder 2
    C I want to go to folder 3 etc etc.
    Anyone know if there is a way of doing this please?
    I have tried a workflow where I find finder items in the Scans folder and move to another but that only seems to work for one file.  When I add more it does not seem to work.
    Any help/guidance would be appreciated.
    Thank you!

    Hi Niel,
    Not quite what I wanted because I missed some information from my question....
    What I actually want is to search for files containing certain text in the name and if positive to then move that file to the specified folders.
    Cheers.

  • Please help!! Using Apple Script in Automator for Quicktime

    I would like to add some metadata to a batch of quicktime movies and then make the files unable to be altered and re-saved so that I can post them on the web. If I open a movie in quicktime and run the following apple script I can then perform save as of movie A into movie B and movie B cannot be altered.
    tell application "QuickTime Player"
    set saveable of movie 1 to false
    -- save self contained
    end tell
    I would love to be able to do this on a batch level in automator however I cannot figure out how to pass automator items to the apple script so that their saveable can be set to false, and after this I cannot figure out how to have to movies re-saved so the changes will take effect.
    Any help at all would be greatly appreciated.

    how are you passing files to apple script? as finder items?
    the following should work then
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on run {input, parameters}
    tell application "Finder"
    repeat with cur_file in input
    set fname to (name of (get info for cur_file) as text)
    tell application "QuickTime Player"
    open file (cur_file as text)
    set saveable of document 1 to false
    tell application "Finder" to set new_item to (path to desktop as string) & fname
    save self contained document 1 in new_item
    delay 1
    close document 1
    end tell
    end repeat
    end tell
    end run
    </pre>
    the above will dump the modified files onto your desktop and give them the same names they had before. You can adjust that as you like of course.

  • Apple Script to automatically apply automator folder action workflows

    Hello
         I'm trying to get an applescript to automatically apply an automator folder action workflow to a folder..
         Getting applescript to apply a scpt file to a folder as a folder action is straight forward. However, it seems that scpt files are different than automator folder action workflows..
         Normally I would just script the folder action in apple script, but this is for someone that can handle automator, but not apple script coding. This whole scripting is to solve the issue of subdirectories being creating and then files or subfolders being created there after. So we need to try to get automator folder actions to propagate though..  easy enough with applescript..
    Any help would be appreciated...

    Here is the code that I needed to happen...  Maybe I just missed something in automator... but this applescript properly applies itself to subfolders, which then allows me to apply specific scripts based on folder names and locations. Also if the subfolders already exist.. the scirpt also is applied to those.
    on adding folder items to this_folder
      createlist(this_folder)
    end adding folder items to
    on createlist(item_list)
              set ActionScript to " REMOVED FOR PUBLIC DISPLAY:ApplyScriptSubfolders.scpt"
              set the the_items to list folder item_list without invisibles
              set item_list to item_list as string
                   repeat with i from 1 to number of items in the the_items
                     set the_item to item i of the the_items
                                       set the_item to (item_list & the_item) as alias
                                       set this_info to info for the_item
                                       if folder of this_info is true then
                              tell application "System Events"
                                                                          display dialog "Attching script to " & the_item as text  --
                                     attach action to folder (the_item as text) using ActionScript
                                                           end tell
                                my createlist(the_item)
                                       end if
                   end repeat
    end createlist
    I appreciate your help.. if you now know what has to happen and have a shorter way of doing so, please do so..
    Thank you again,

  • Can Apple Script or Automator handle large client email tasks?

    Hi,
    I am a relatively new Mac user but currently work on a MacBook and Imac G5 with 10.4.9. I have a client list of approxamitely 900 people and I want to send an email to all 900 announcing a change in product services. Is there an Apple Script or automator script (or somewhere I could go to purchase one) that will allow me to import my name and email list in .csv or excel format and then send a slightly customized email to all. I just want the subject line and greeting to the email to include their first name so it looks as if I have taken the time to send them a personal email.
    Can anyone steer me in the right direction. Thanks in advance!

    Hi,
    Here's a script to disable a rule" --> tell application "Mail" to set enabled of rule "weekend message" to false
    Change "weekend message" by the exact name of your rule.
    Make an (iCal Events or Launch agent PLIST or cron) to run the script on Monday at a specific time.

  • Automator workflow hangs indefinitely after running Python script

    Hello,
    I have an Automator workflow set up to use a one-line shell script to launch a Python script. The Python script has a GUI and stays open for the user to interact with it. It launches fine, but I've noticed that my Automator workflow hangs and the spinning workflow cursor won't disappear from the menu bar unless I manually kill the workflow or quit the Python app. Not a huge deal to kill it manually, but annoying.
    I saw someone posted a way to kill an Automator workflow using an AppleScript or shell script embedded within the workflow, but adding that as a second step doesn't work for me—the Automator workflow never gets to that step, presumably because it's waiting for my Python app to close. Anyone know a way to make the Automator workflow kill itself after launching a Python script?

    By default, AppleScript (and, by extension, Automator) will wait for theshell process to exit before continuing the workflow (or exiting if the shell script action is the last step.
    This can be overcome by launching the shell process as a background process, which returns control to AppleScript/Automator, and allows your workflow to continue (or end).
    Just append:
    &> /dev/null
    after your shell command to launch it in the background, e.g.:
    /usr/bin/python /path/to/your.py &> /dev/null
    and you should get what you expect.

  • I want to write a script or Automator workflow/app that emails a random shortcut of the day to three recipients. The source is from an Excel spreadsheet. One column is the shortcut, and the second column is the definition. Anyone have experience?

    I want to write a script or Automator workflow/app that automatically emails a random shortcut of the day to three recipients. The source is from an Excel spreadsheet. One column is the shortcut, and the second column is the definition. Anyone have similar experience and know that this would work?

    I have had a first stab at the script, below.  It uses a file to store the shortcuts and command [descriptions].  You should be able to see from the script annotations how to add a new one.  (I populated 1-4 with real data, but got lazy after that, so you have a few placeholders to work with first.
    As I have noted, once you are happy that you have all the data in the file, you can comment out part of the script for ongoing use.  (BTW, my reluctance to use Excel is that I don't currently have it installed and I don't want to offer wrong advice.  If you have Numbers, I do have that and could probably modify to work with a spreadsheet from there.  This might be especially useful if you have the data already sitting in Excel.)
    A few things came-up whilist I was writing the script:
    1.     Currently, all recipients will not only get the same tip at the same time, but they will see the names and email addresses of the others who receive them.  It is possible to modify this.
    2.     I have added a property gRandomCheck which keeps track of which shortcut has already been used (since the last time the script was compiled.  This will prevent the same tip being sent more than once.    When all tips have been sent once, the script will alert you and not send anything until reset.  It does not check on a per-addressee basis (which would be a refinement).  (If you add a new addressee at this stage, the whole process will start again, and you may not really want this to be the behaviour.)
    3.     The way that I have built the list, commandList, is deliberately cumbersome - it's for the sake of clarity.  If you prefer, you can construct the whole list as {{shortcut:"X", command:"X"}, {shortcut:"Y", command:"Y"}}
    Have a look - I am sure you will have questions!
    SCRIPT STARTS HERE  Paste the following lines (thru the end) into a new AppleScript Editor document and press RUN
    --The property gRandomCheck persists between runs and is used to stop sending the same hint twice.
    property gRandomCheck : {}
    --I am defining a file on the desktop.  It doesn't have to be in this location
    set theFolder to path to desktop
    set commandFile to (theFolder as text) & "CommandFile.csv"
    --(* Unless you need to change the file contents you do not need to write to it each time.  Remove the "--" on this line and before the asterisk about 18 lines below
    --Follow this format and enter as many records as you like on a new line - each with a unique name
    set record1 to {shortcut:"Z", command:"Undo"}
    set record2 to {shortcut:"R", command:"Record"}
    set record3 to {shortcut:"⇧R", command:"Record Toggle"}
    set record4 to {shortcut:"⌘.", command:"Discard Recording & Return to Last Play Position"}
    set record5 to {shortcut:"X", command:"x"}
    set record6 to {shortcut:"X", command:"x"}
    set record7 to {shortcut:"X", command:"x"}
    set record8 to {shortcut:"X", command:"x"}
    set record9 to {shortcut:"X", command:"x"}
    set record10 to {shortcut:"X", command:"x"}
    set record11 to {shortcut:"X", command:"x"}
    set record12 to {shortcut:"X", command:"x"}
    set record13 to {shortcut:"X", command:"x"}
    --Make sure you add the record name before randomCheck:
    set commandList to {record1, record2, record3, record4, record5, record6, record7, record8, record9, record10, record11, record12, record13}
    --This part writes the above records to the file each time.
    set fileRef to open for access commandFile with write permission
    set eof of fileRef to 0
    write commandList to fileRef starting at eof as list
    close access fileRef
    --remove "--" here to stop writing (see above)*)
    --This reads from the file
    set fileRef to open for access commandFile with write permission
    set commandList to read fileRef as list
    close access fileRef
    --Here's where the random record is chosen
    set selected to 0
    if (count of gRandomCheck) is not (count of commandList) then
              repeat
                        set selected to (random number from 1 to (count of commandList))
                        if selected is not in gRandomCheck then
                                  set gRandomCheck to gRandomCheck & selected
                                  exit repeat
                        end if
              end repeat
    else
              display dialog "You have sent all shortcuts to all recipients once.  Recompile to reset"
              return
    end if
    --This is setting-up the format of the mail contents
    set messageText to ("Shortcut: " & shortcut of record selected of commandList & return & "Command: " & command of record selected of commandList)
    tell application "Mail"
      --When you're ready to use, you probably will not want Mail popping to the front, so add "--" before activate
      activate
      --You can change the subject of the message here.  You can also set visible:true to visible:false when you are happy all is working OK
              set theMessage to (make new outgoing message with properties {visible:true, subject:"Today's Logic Pro Shortcut", content:messageText})
              tell theMessage
      --You can add new recipients here.  Just add a new line.  Modify the names and addresses here to real ones
                        make new to recipient with properties {name:"Fred Smith", address:"[email protected]"}
                        make new to recipient with properties {name:"John Smith", address:"[email protected]"}
      --When you are ready to start sending, remove the dashes before "send" below
      --send
              end tell
    end tell

  • Automator workflow "run shell script" keeps running. How to stop?

    Because i want two instances of dropbox running simultaneously on my Mac, I set up a small automator workflow application. The workflow consist of a simple shell script:
    Or in text:
    bash
    HOME=$HOME/Dropbox-quivertree /Applications/Dropbox.app/Contents/MacOS/Dropbox &
    The problem is that once the application runs, or i execute the script from within automator, it just keeps running (i get the little cog in my menubar). Anybody have an idea how to automatically stop after it has launched dropbox?
    Thanks!
    Kim

    I do not have dropbox on my computer, so I tested using the Calculator application. The solution proposed by Mattis S.F. does work, but his explanation does not hold true in my case. Initially, I successfully tried
    HOME=$HOME/Dropbox-quivertree nohup /Applications/Calculator.app/Contents/MacOS/Calculator >/dev/null 2>&1 &
    If I remove the “nohup”, the result does not change. Removal of the “/dev/null 2>&1”, however, results in the same problem originally described by Kim van der Leeuw. My guess is the background process has stdout and stderr redirected by default back to the automator. When redirected to /dev/null, the automator no longer waits for the background process to complete. To summarize, change
    HOME=$HOME/Dropbox-quivertree /Applications/Dropbox.app/Contents/MacOS/Dropbox &
    to
    HOME=$HOME/Dropbox-quivertree /Applications/Dropbox.app/Contents/MacOS/Dropbox >/dev/null 2>&1 &

  • Automator Workflow Fails with Cryptic Error Message

    I'm updating an Automator workflow for OS X Lion that I initally developed and used, without issue, in OS X Tiger. The workflow asks for a name, creates a folder for the name, takes a digital image with a Nikon D50 connected to the computer, and saves the image to the new folder. This aspect of the workflow works fine.
    I then have a prompt asking if we should take another. If the user says "yes," the script should take another image and save it to the folder. This is where I run into an issue. When I attempt to add another "Take a Picture Action" into the workflow, I get the cryptic (at least to me) error message in the attached screenshot.
    Here's the text:
    "Cannot update for observer <AMWorkflow 0x400458ac0> for the key path "parameters.name" from <TakePicture 0x403e3b0a0>, most likely because the value for the key "parameters" has changed without an appropriate KVO notification being sent. Check the KVO-compliance of the TakePicture class."
    The language of this error would seem to indicate a bug. Any thoughts on a fix or the means to report to Apple?

    The subject of this post is a bit misleading. The workflow wasn't failing while I was running it, but rather when I was editing it and trying to include another 'Take a Picture' action in the same workflow.
    The workaround I found was to use a 'Loop' action on the 'Take a Picture' action. It's a bit more elegant and doesn't require multiple 'Take a Picture' actions in the same workflow.
    Nonetheless, what does this error message mean?

  • Cannot manually select Automator workflows in iCal

    I know That the Way, Apple intends that we create an Automator workflow as an iCal alarm is to create a new iCal alarm in Automator, and once you save it it automatically creates a new event in iCal. Unfortunately, that's not the way I want to work… I already have dozens of iCal alarms configured, and I'm trying to prep them for Mountain Lion: the currently open AppleScript's but all of my Apple scripts need to be converted to Automator workflows for Mountain Lion. So I was hoping to quickly duplicate previous iCal workflows, then reselect them from within existing events in iCal. Sadly, all of my iCal Automator workflows appear as greyed out in my File Open dialog when attempting to select a new file to run within my iCal alert.
    I don't want to have to delete all of my iCal alarms and start over creating them anew. Perhaps I am missing something simple?

    https://discussions.apple.com/docs/DOC-4082
    http://www.macworld.com/article/1165641/how_increased_mac_security_measures_will _impact_applescript.html
    https://discussions.apple.com/thread/4139323?start=0&tstart=0
    according to the first link I can save the applecript as an application. It doesn't answer why my automator workflows are greyed out when I try to select them, but maybe I'll just try saving as applications... sounds simpler.

  • Automator Workflow to export Numbers documents in PDF format

    Does anyone know of any automator workflow to export Numbers documents in PDF format? I tried this program: Convert to PDF 1.2
    http://www.apple.com/downloads/macosx/automator/converttopdf_mauriziominelli.htm l
    But it gives an error.

    Reading carefully is often useful.
    The description of the tool which you tried clearly states :
    *About Convert to PDF*
    *_Convert all of your text files to PDF_. This action uses the underlying cups printing system ability to convert files, it’s a simple front end to the command line tool cupsfilter.*
    As far as I know, but maybe you don't, *_a Numbers document isn't a text file._*
    I already posted a script exporting Numbers documents as PDF.
    Here is an enhanced version which apply only to Numbers '09 (or maybe higher) :
    --[SCRIPT save2Numbers&PDF.app]
    Enregistrer le script en tant que Script : save2Numbers&PDF.scpt
    déplacer le fichier créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    aller au menu Scripts , choisir Numbers puis choisir save2Numbers&PDF
    Le script enregistre le document au format natif de Numbers
    et l'enregistre dans un fichier PDF.
    S'il existe déjà un PDF homonyme, il est renommé en lui ajoutant une chaîne
    construite sur sa date de modification.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    +++++++
    Save the script
    as a Script: save2Numbers&PDF.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    go to the Scripts Menu, choose Numbers, then choose save2Numbers&PDF
    The script saves the document in the native Numbers format and saves it in a .pdf file
    If such a .pdf already exists, it is renamed with a stamp matching its modification date.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox
    --=====
    Yvan KOENIG (VALLAURIS, France)
    modifié 2010/08/17
    property closeIt : true
    (* true = closes the saved document
    false = doesn't close it *)
    property theApp : "Numbers"
    property theExt : "numbers"
    --=====
    on run
    tell application theApp
    activate
    set le_document to front document
    if modified of le_document then save le_document
    delay 0.2
    set thePath to path of document 1
    end tell -- theapp
    set {xPath, xExt} to my saveAs(thePath)
    if closeIt then tell application theApp to close document 1 saving no
    end run
    --=====
    on saveAs(p)
    local extension_export, type_export, nomde_loriginal, dossierde_loriginal, nomde_lexport, cheminde_lexport
    set {extension_export, type_export} to {"pdf", "LSDocumentTypePDF"}
    set {nomde_loriginal, dossierde_loriginal} to my quelNomEtDossier(p)
    if nomde_loriginal ends with theExt then
    • replace the original extension by the xExt one *)
    set nomde_lexport to (text 1 thru -(1 + (length of theExt)) of nomde_loriginal) & extension_export
    else
    • add the xExt extension name *)
    set nomde_lexport to nomde_loriginal & "." & extension_export
    end if
    set cheminde_lexport to dossierde_loriginal & nomde_lexport
    • CAUTION, When saving, Numbers doesn't take care of an existing document.
    It replaces it by the new one. *)
    tell application "System Events"
    if exists (file cheminde_lexport) then
    Playing safety, we rename the existing file by inserting a modificationdatetime stamp *)
    set name of file cheminde_lexport to (text 1 thru -(2 + (length of extension_export)) of nomde_lexport) & my horoDateur(modification date of file cheminde_lexport) & "." & extension_export
    end if
    end tell -- System Events
    • save as type_export document *)
    tell application "Numbers" to save document nomde_loriginal as type_export in cheminde_lexport
    return {cheminde_lexport, extension_export}
    end saveAs
    -- =====
    on quelNomEtDossier(f)
    local nom, dossier
    tell application "System Events" to tell file (f as Unicode text)
    set nom to name (* Unicode text *)
    set dossier to path of container (* Unicode HFS path *)
    end tell -- to System Events
    return {nom, dossier}
    end quelNomEtDossier
    --=====
    • Build a stamp from the modification date_time
    on horoDateur(datedemodification)
    local les_secondes
    set les_secondes to time of datedemodification
    return ("_" & year of datedemodification & text -2 thru -1 of ("0" & (month of datedemodification as integer)) & text -2 thru -1 of ("0" & day of datedemodification) & "_" & text -2 thru -1 of ("0" & les_secondes div 3600) & text -2 thru -1 of ("0" & (les_secondes mod 3600) div 60) & text -2 thru -1 of ("0" & les_secondes mod 60))
    (* Here, the stamp is "YYYYMMDDhhmmss" *)
    end horoDateur
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) mardi 17 août 2010 18:16:27

  • Automator workflow install locations in Leopards

    We have several Automator scripts we created for Finder in Leopard. Where do these go? I expect they should go:
    /Library/Application\ Support/Apple/Automator/Workflows/Applications/Finder/
    But I noticed this directory:
    /Library/Automator/
    And this one:
    ~/Library/Automator
    We want these Automator scripts to show up in users' Finder contextual menu. More importantly, we want to manage these Automator scripts in one place (so they should NOT go into the home directory).
    Thanks,
    Don

    red_menace wrote:
    The Application Support directories are just that - places for an application to put additional support files for it's use. The contextual workflows look like they would be similar to the Scripts menu, in that the items are defined and only work from the user's library. For a shared library of workflows, you would need to store them in an accessible place, such as Shared (or Library, but an admin will need to create the folder there), and then have each user copy or make an alias and place it in their ~Library/Workflows/Applications/Finder/ folder.
    Users should no have to do anything if we push the *.workflow files to the correct locations. OSX is designed to be manageable at the local level, user level, etc. We have several *.workflow files that we need to push out to several dozen workstations. Each workstation can potentially have several dozen home directories. It's not possible (or desirable) to manage this deployment in a way that requires user intervention. I'm pretty sure a previous poster was right, that they *.workflow files belong here:
    /Library/Application\ Support/Apple/Automator/Workflows/Finder/
    We'll do some more testing (I'll keep monitoring this forum). I'll also post to the admin lists to see how other enterprise management folk are handling distribution of *.workflow files in managed environments (where users are non-admin, on workstations bound to AD/OD). Once this is all done I'll follow up with this thread and mark it as closed.
    Thanks,
    Don

  • Help with Apple Script Code

    Hi,
    I found this Apple script online and here's how it works:
    tell application "QuickTime Player"
    activate
    try
    if not (exists document 1) then display dialog "Please open a QuickTime movie." buttons {"Cancel"} default button 1 with icon 1
    set thefile to (choose file name)
    save document 1 in thefile
    close document 1
    end try
    end tell
    +I run the Apple script+
    *1. It prompts me to open a movie file in Quicktime*
    +I open a movie in Quicktime+
    *2. It prompts me for an name and directory to save the new file in*
    +I enter a name and directory+
    *3. It saves a new reference movie in said directory with said name*
    This is useful if I want to customize every file, but unfortunately, I just want to mass create reference movies for a whole bunch of files.
    What I am looking for is for an Apple script that is a drag and drop application, so I can drop say 100 movie files or so, and have the Apple script create reference movie files with the same name and in the same directory automatically with no prompts.
    Since I am unfamiliar with Apple script I was wondering if someone would be able to edit my existing script to do what I want.
    Thanks so much for your help!

    Use Automator. It's great for repetitious tasks (like the one you've described), and it's very user-friendly. Open Automator, create a new workflow that executes the action you want, and you can apply that action to the resources you wish to edit.
    Good resource here:
    http://bit.ly/

  • Automator workflow stopped working after 10.6.6

    I have an automator workflow which has worked flawless for the last 6 months. It's pretty simple, only does two things
    1. Upload files to ftp (files/dirs that are dropped on the icon)
    2. Runs a shell script which in turn executes a java program
    Suddenly, after upgrading to 10.6.6 the workflow doesn't finish. It halts somewhere on the second action. If I run this manually in a terminal window it works flawless. Any ideas?

    I have the same problem... What's more, my automator.app won't even start... This is my console output... Apple REALLY blew it with the 10.6.6 installer... I ran the combo updater TWICE... I even moved all my apps back to where Apple expects to find them, as they didn't bother to look for apps if you dared to organize your app folder like you want it...
    I only know of ONE OS company that releases updates that are done this badly... I won't mention their name, as they have enough marketing... Thing is, I never expected APPLE to act like them...
    Here's my console output when I start Automator...
    Process: Automator [31464]
    Path: /Applications/Automator.app/Contents/MacOS/Automator
    Identifier: com.apple.Automator
    Version: 2.1.1 (247.1)
    Build Info: Automator-2470100~2
    Code Type: X86 (Native)
    Parent Process: launchd [198]
    Date/Time: 2011-02-15 21:58:06.626 -0500
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000027
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: pathExtension
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x98bdbed7 objc_msgSend + 23
    1 com.apple.AutomatorFramework 0x0004e3f2 -[AMImageRegistry smallIconForPath:] + 66
    2 com.apple.AutomatorFramework 0x0012fcad -[AMProxyAction icon] + 93
    3 com.apple.AutomatorFramework 0x0015890e -[AMLibraryViewController tableView:willDisplayCell:forTableColumn:row:] + 494
    4 com.apple.AppKit 0x9075c6ec -[NSTableView _delegateWillDisplayCell:forColumn:row:] + 62
    5 com.apple.AppKit 0x906d97ed -[NSTableView preparedCellAtColumn:row:] + 1362
    6 com.apple.AppKit 0x906f38bc -[NSTableView _drawContentsAtRow:column:withCellFrame:] + 56
    7 com.apple.AppKit 0x906f292a -[NSTableView drawRow:clipRect:] + 1131
    8 com.apple.AppKit 0x906f2362 -[NSTableView drawRowIndexes:clipRect:] + 360
    9 com.apple.AppKit 0x906f0d3b -[NSTableView drawRect:] + 1144
    10 com.apple.AppKit 0x906e682a -[NSView _drawRect:clip:] + 3510
    11 com.apple.AppKit 0x906e54c8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1600
    12 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    13 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    14 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    15 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    16 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    17 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    18 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    19 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    20 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    21 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    22 com.apple.AppKit 0x906e57fd -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2421
    23 com.apple.AppKit 0x906e39e7 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 711
    24 com.apple.AppKit 0x906e355b -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 265
    25 com.apple.AppKit 0x906dfea2 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3309
    26 com.apple.AppKit 0x90640a57 -[NSView displayIfNeeded] + 818
    27 com.apple.AppKit 0x90609d40 -[NSWindow displayIfNeeded] + 204
    28 com.apple.AppKit 0x906087db -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1085
    29 com.apple.AppKit 0x9060833d -[NSWindow orderWindow:relativeTo:] + 105
    30 com.apple.AppKit 0x90605af3 -[NSWindow makeKeyAndOrderFront:] + 73
    31 com.apple.AppKit 0x9085a1fc -[NSWindowController showWindow:] + 664
    32 com.apple.AppKit 0x9079ae00 -[NSDocument showWindows] + 116
    33 com.apple.AppKit 0x9079923c -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 432
    34 com.apple.AppKit 0x907b5a8c -[NSDocumentController(NSInternal) _openUntitled] + 143
    35 com.apple.AppKit 0x90798cab -[NSApplication _doOpenUntitled] + 446
    36 com.apple.AppKit 0x907984bf -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 228
    37 com.apple.AppKit 0x9079810d -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    38 com.apple.Foundation 0x928997a4 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    39 com.apple.Foundation 0x92899568 _NSAppleEventManagerGenericHandler + 228
    40 com.apple.AE 0x97080f58 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    41 com.apple.AE 0x97080e57 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    42 com.apple.AE 0x97080d61 aeProcessAppleEvent + 197
    43 com.apple.HIToolbox 0x91e48389 AEProcessAppleEvent + 50
    44 com.apple.AppKit 0x906119ca _DPSNextEvent + 1420
    45 com.apple.AppKit 0x90610fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    46 com.apple.AppKit 0x905d3247 -[NSApplication run] + 821
    47 com.apple.AppKit 0x905cb2d9 NSApplicationMain + 574
    48 com.apple.Automator 0x0000268b main + 187
    49 com.apple.Automator 0x000025c5 start + 53
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x996cf982 kevent + 10
    1 libSystem.B.dylib 0x996d009c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x996cf559 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x996cf2fe dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x996ced81 pthreadwqthread + 390
    5 libSystem.B.dylib 0x996cebc6 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x996cea12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x996cefa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x996cebc6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x006752a0 ebx: 0x006752a0 ecx: 0x90e05bc4 edx: 0x00000007
    edi: 0x0a85b598 esi: 0x000453b1 ebp: 0xbfffcf58 esp: 0xbfffce98
    ss: 0x0000001f efl: 0x00010206 eip: 0x98bdbed7 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000027
    Binary Images:
    0x1000 - 0x2eff7 com.apple.Automator 2.1.1 (247.1) <8959B750-88A9-A4F3-B645-598AFA74F4C8> /Applications/Automator.app/Contents/MacOS/Automator
    0x43000 - 0x1a4ff3 com.apple.AutomatorFramework 1.2.2 (247.1) <D376C547-E1E9-8EF2-3533-C9DB652846FD> /System/Library/Frameworks/Automator.framework/Versions/A/Automator
    0x24e000 - 0x28aff7 com.apple.OSAKit 1.2.1 (76) <1D4D69CA-EABA-F514-A488-EB0F1E1BB96E> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
    0x2ae000 - 0x2f4ff7 com.apple.AppleScriptKit 1.5.1 (81) <76F7012F-2169-1021-26B5-DDDA990B8926> /System/Library/Frameworks/AppleScriptKit.framework/Versions/A/AppleScriptKit
    0x337000 - 0x344ffb com.apple.AppleScriptObjC 1.0.2 (???) <89FB9BCB-C2DF-1854-E468-3FE9A93189AD> /System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/AppleScriptObjC
    0x34d000 - 0x359fe7 libexslt.0.dylib 9.13.0 (compatibility 9.0.0) <43856244-CC36-9DE9-3D60-D4F4D6F2825C> /usr/lib/libexslt.0.dylib
    0x3f1000 - 0x3f1ff7 +net.sourceforge.SafariAdBlockLoader 0.4.0 RC3 (0.4.0 RC3) <8E9A6641-9CE7-5416-DC84-883DB8BAFDDA> /Library/InputManagers/Safari AdBlock/Safari AdBlock Loader.bundle/Contents/MacOS/Safari AdBlock Loader
    0x3f8000 - 0x3fafff +net.culater.SIMBL 0.8.2 (8) /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL
    0x700000 - 0x701fff +com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x771000 - 0x771ff7 com.apple.Automator.FindItems 1.0 (1.0) <07208622-AE12-E81C-1DC3-A8C4DB3F0DC3> /System/Library/Automator/Find Items.action/Contents/MacOS/Find Items
    0x776000 - 0x776ff7 com.apple.Automator.FilterItems 1.0 (1.0) <8968066E-9AA0-B2CB-0E13-ECC11BE52A93> /System/Library/Automator/Filter Items.action/Contents/MacOS/Filter Items
    0x77a000 - 0x77aff7 com.apple.Automator.GetSelectedItems 1.0 (1.0) <205584FB-D784-D0FF-0935-382F61C389E1> /System/Library/Automator/Get Selected Items.action/Contents/MacOS/Get Selected Items
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    0x90003000 - 0x90104fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <ED8E45C6-B078-15E8-938D-99D8FD1EAE64> /usr/lib/libxml2.2.dylib
    0x90105000 - 0x90140feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x90141000 - 0x90185ff3 com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90199000 - 0x901d7ff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x901d8000 - 0x901f5fe7 com.apple.DotMacSyncManager 2.0.3 (446.9) <CFC4888B-BDAE-C977-804B-76ABFA8B489F> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x901f6000 - 0x9023afe7 com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9023b000 - 0x9026cff7 libGLImage.dylib ??? (???) <E3EC8E92-4DDD-E7B8-3D38-C5A5160A4930> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x902b0000 - 0x9031afe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9040a000 - 0x90445fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x90446000 - 0x905c8fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x905c9000 - 0x90ea9ff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x90eaa000 - 0x90ef0ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x90ef1000 - 0x90f09ff7 com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x90f0a000 - 0x90f1cff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <32CE2895-DAF0-2137-F9BE-8150359F43A1> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90f1d000 - 0x90f7aff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90f7b000 - 0x90fc8ff7 com.apple.ExchangeWebServices 1.3 (61) <B3705083-4186-5A27-6003-58E7264CAA3E> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x90fc9000 - 0x90fd0ff7 com.apple.KerberosHelper 2.1 (1.0) <E29B37C3-467E-ACCB-3C72-FA3CC5C4030D> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x90fd1000 - 0x90ff1fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x90ff2000 - 0x9108dff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9108e000 - 0x910a2fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x91182000 - 0x9118cfe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9118d000 - 0x911c6fe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x911c7000 - 0x9121ffe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91220000 - 0x912d6ff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x912d7000 - 0x913b4ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x913b5000 - 0x91e00ff7 com.apple.WebCore 6533.19 (6533.19.4) <DFCF1BC1-8BF3-E13E-F11B-C98CB36560FD> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91e0c000 - 0x92130fef com.apple.HIToolbox 1.6.4 (???) <4699C8BB-DE74-C530-564B-D131F74C9B54> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92131000 - 0x9216aff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <E0D512DD-365D-46A0-F50C-435BC250424F> /usr/lib/libcups.2.dylib
    0x9216b000 - 0x92581ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92582000 - 0x925c2ff3 com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x925c3000 - 0x92606ff7 com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92607000 - 0x9265dff7 com.apple.Symbolication 1.2 (72) <3CAFA3BB-1CC6-27FA-AADE-23BBA7F0E9B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92663000 - 0x926e3feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x926e4000 - 0x926eafe7 com.apple.CommerceCore 1.0 (6) <41C2A87D-93D8-56C1-9292-0400699F23C1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x926eb000 - 0x9273cff7 com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9273d000 - 0x9274bff7 com.apple.opengl 1.6.12 (1.6.12) <9F13B279-F289-18AC-5D86-DCD52BAF087D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9274c000 - 0x9274cff7 com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x92794000 - 0x927b6fef com.apple.DirectoryService.Framework 3.6 (621.9) <3171B16F-E4E1-89AA-B846-D698E3D6D457> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x927b7000 - 0x927ddffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x927de000 - 0x9284dff7 com.apple.ISSupport 1.9.4 (52) <FC1E0AB0-1056-1CAC-430E-82197FEB5E85> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9284e000 - 0x92ac1fe7 com.apple.Foundation 6.6.4 (751.42) <65F16BF4-D106-F2F5-53F3-5BFBC2FCE608> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92ac2000 - 0x92b3bff7 com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92b73000 - 0x92b76fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x92b77000 - 0x92b80ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92bac000 - 0x92bc7ff7 libPng.dylib ??? (???) <DF9BC42C-13E0-3080-A106-75121FD577CF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92bc8000 - 0x92c60fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <DC19F49B-184E-FD0F-13F8-3A31924A3B66> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92c61000 - 0x93096ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x93097000 - 0x930a4ff7 com.apple.NetFS 3.2.1 (3.2.1) <94A52A6D-F071-09D7-E80F-F633F17233FE> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x930a5000 - 0x931a9fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x931aa000 - 0x93325fe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93326000 - 0x933b8fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x933b9000 - 0x93434fff com.apple.AppleVAFramework 4.10.12 (4.10.12) <0B523224-8EE3-988D-04BE-D608953CC977> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93445000 - 0x93447fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x93448000 - 0x93576fe7 com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9357e000 - 0x93760fff com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93761000 - 0x9376bffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9384c000 - 0x93874ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x93875000 - 0x93977fef com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x93978000 - 0x939c0fff com.apple.iCalendar 1.0.3 (54) <65B75654-CBFE-BDE7-E914-84683881B408> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x939c1000 - 0x939ceff7 com.apple.AppleFSCompression 24.4 (1.0) <ADE29C24-087D-1795-2F46-34CE20A61669> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x93a80000 - 0x93c7dff7 com.apple.JavaScriptCore 6533.19 (6533.19.1) <85A6BFDD-CBB6-7490-748D-8EA8B9B7FDD8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93c7e000 - 0x93c7fff7 com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93c80000 - 0x93cc0fe7 com.apple.DAVKit 4.0.3 (732) <A256ABEC-E065-BF33-9662-C82E93B101CA> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x93cc1000 - 0x93ccbff7 com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x93ccc000 - 0x93d76fe7 com.apple.CFNetwork 454.11.5 (454.11.5) <DD575760-7A29-111D-5A69-EAFD3410F74D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93d8d000 - 0x93daefe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93daf000 - 0x93dc3ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93dcb000 - 0x93dd6ff7 com.apple.CrashReporterSupport 10.6.6 (256) <C8FFD4F5-5B5B-8ED4-AD82-E434A76ADC96> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93dd7000 - 0x93dd9ff7 com.apple.securityhi 4.0 (36638) <C7DA80C1-DCFD-C321-08DA-5E6946CA66E0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93de2000 - 0x93de2ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93de3000 - 0x93f12fe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93f13000 - 0x93f5affb com.apple.CoreMediaIOServices 134.0 (1160) <D4F40A28-4E31-3210-7C2B-59D8A1903FB2> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93f5b000 - 0x93fbfffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93fc0000 - 0x9402eff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9402f000 - 0x94041ff7 com.apple.syncservices.syncservicesui 5.2 (578.3) <2E6EA5E4-EAEE-EF00-A565-0F9513AF9E27> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x9404f000 - 0x94052ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94053000 - 0x94101ff3 com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94102000 - 0x9410dff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9410e000 - 0x9411eff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94257000 - 0x94265fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x942c6000 - 0x94335ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94336000 - 0x94337ff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94338000 - 0x9453ffeb com.apple.AddressBook.framework 5.0.3 (875) <759B660B-00F6-F08C-37CD-69468C774B5E> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94540000 - 0x9457fff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x945a2000 - 0x945a2ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x945a3000 - 0x945e6ff7 libGLU.dylib ??? (???) <BB66EDB2-D5FE-61C9-21BE-747F9862819C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x945e7000 - 0x94729ff7 com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x9472a000 - 0x9473ffff com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94779000 - 0x94798ff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94799000 - 0x947dbff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x947dc000 - 0x947dfff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x948fe000 - 0x9490bfe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5B68F977-F7E1-F419-F900-A5B34A30FE05> /usr/lib/libbz2.1.0.dylib
    0x9490c000 - 0x9490fff7 libCoreVMClient.dylib ??? (???) <973B9E1F-70B3-2E76-B14B-E57F306AD2DF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94910000 - 0x9491aff7 com.apple.NSServerNotificationCenter 2.2 (2.2) <2E32AAD4-6DD9-AE40-D757-6EAB64CC7758> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x9491b000 - 0x94a5efef com.apple.QTKit 7.6.6 (1756) <8AE4C93B-6059-7B87-2FF6-8B225EBB21A7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94a97000 - 0x94a9fff7 com.apple.DisplayServicesFW 2.3.0 (283) <305F9514-2404-5CF7-AFB4-00BB4D2EA69E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x94ac2000 - 0x94af2ff7 com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x94c25000 - 0x94c49ff7 libJPEG.dylib ??? (???) <E064CF03-8CC2-C83E-C951-D46610834D1C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94c4a000 - 0x94ca0ff7 com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x94ccb000 - 0x94febff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) <96534EF7-C22E-0C01-C56F-FF7047E41224> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94fec000 - 0x95089fe3 com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9508a000 - 0x950c2ff7 com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x950c3000 - 0x9527cfeb com.apple.ImageIO.framework 3.0.4 (3.0.4) <6D8C6C54-9F39-0D0F-564D-2ABA12E97BBC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9534f000 - 0x9547bffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9547c000 - 0x9548dff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9548e000 - 0x954effe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96443000 - 0x964f3ff3 com.apple.ColorSync 4.6.3 (4.6.3) <0354B408-665F-8B3F-87FF-64E6322276F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96517000 - 0x96626fe7 com.apple.WebKit 6533.19 (6533.19.4) <A942073C-83DF-33ED-3D01-A24DE8AEAB3D> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96627000 - 0x96668ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96669000 - 0x96681ff3 com.apple.ScriptingBridge 1.1.2 (???) <A3FA73CC-0628-49E3-23AC-768BFA1C7DBE> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x96682000 - 0x966fcfff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <A02CEAE9-943A-CBE2-2350-4631C1E7B0A7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96705000 - 0x9670bfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96820000 - 0x96a83fff com.apple.security 6.1.1 (37594) <B6F2A8BF-C1B7-A0E2-83FB-4FF265E9BDDC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96a84000 - 0x96ad4ff7 com.apple.framework.familycontrols 2.0.2 (2020) <AF7F86F1-F7BF-CBA8-7A4A-D8F7A19F9601> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96ad5000 - 0x96f8effb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x96f8f000 - 0x96fe9fe7 com.apple.CorePDF 1.3 (1.3) <EA168671-F44F-BFE4-AA7D-3801DA29A650> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x96ff5000 - 0x97000ff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97001000 - 0x97001ffb libffi.dylib ??? (???) <58985323-6EC6-9AD2-B9F0-8787C0B2791C> /usr/lib/libffi.dylib
    0x97002000 - 0x97070ff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <132A7CF8-D073-0F35-E9A4-777E5EBAC1EE> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x97071000 - 0x97075ff7 libGIF.dylib ??? (???) <FA466D54-68CF-D1AB-47A0-4134C8B1B6FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x97076000 - 0x9707bff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9707c000 - 0x9707cff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9707d000 - 0x970b0ff7 com.apple.AE 496.4 (496.4) <C73D124C-C722-41D8-3465-4CE0D0BA9307> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x970b1000 - 0x970cdfe3 com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x970ce000 - 0x97187fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x97188000 - 0x97188ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97189000 - 0x97189ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9718a000 - 0x97570ffb com.apple.RawCamera.bundle 3.4.1 (546) <D966727B-B687-3029-067F-87FC6CCEBB55> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x976d4000 - 0x976d9ff7 com.apple.AOSNotification 1.1.0 (123.3) <0386E48C-4095-1D2A-629A-83B7711550F3> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x976da000 - 0x97727feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x97738000 - 0x97738ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x97739000 - 0x97760ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x97761000 - 0x977d8ff3 com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x977d9000 - 0x977d9ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9787a000 - 0x97aa5ff3 com.apple.QuartzComposer 4.2 ({156.28}) <62E864AD-3155-59B8-BA1F-8197360C8587> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97aa6000 - 0x97e11ff7 com.apple.QuartzCore 1.6.3 (227.34) <0B59EAF1-4892-C5CE-4A67-66EBD383359E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x97e12000 - 0x97e49fe7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7DCB5938-3140-E71A-92BD-8C242F30C8F5> /usr/lib/libssl.0.9.8.dylib
    0x97e4a000 - 0x97e4eff7 IOSurface ??? (???) <235E7E3D-B6E5-0AAA-C41A-7AC1F54A7EBF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97e4f000 - 0x97eccff7 com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <3B7F5895-B48D-A2E0-D708-58EC58EB9514> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x97ecd000 - 0x97ecfff7 libRadiance.dylib ??? (???) <68BF4654-B74A-C843-759F-7FC62385F251> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97ed0000 - 0x97ed4ff7 libGFXShared.dylib ??? (???) <9E14BE2F-C863-40E9-41A6-1BE9045663A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x97f16000 - 0x97f26ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x97f27000 - 0x97f33ff7 libkxld.dylib ??? (???) <9D8378E0-1C58-EED8-EA00-F4515B8BE7A3> /usr/lib/system/libkxld.dylib
    0x97f34000 - 0x97ffefef com.apple.CoreServices.OSServices 357 (357) <F66F783A-9B51-953F-CAC9-509E1F550B4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97fff000 - 0x981dbfe7 com.apple.CalendarStore 4.0.4 (997) <B27CD8BF-8A72-232D-7472-A953115A5D21> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x981dc000 - 0x9820efe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x986e5000 - 0x9878dffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x987a2000 - 0x987dfff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x987e0000 - 0x9881dff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9881e000 - 0x9889cfe3 com.apple.CoreSymbolication 2.1 (40.1.1) <7F54A51D-0FDD-096F-96D9-B6C9688B30FE> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9889d000 - 0x988a4ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x988da000 - 0x988dbff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x988dc000 - 0x98bd5fef com.apple.QuickTime 7.6.6 (1756) <3C041DD9-A5DB-60CA-8418-E58A78C9468E> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x98bd6000 - 0x98c83fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <C8925910-B927-968B-4B71-D83A4CEF8646> /usr/lib/libobjc.A.dylib
    0x98c84000 - 0x99473557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x99474000 - 0x99474ff7 com.apple.Carbon 150 (152) <734BDB59-8B13-54FA-0653-AA8623DF9846> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x99475000 - 0x99581ff7 libGLProgrammability.dylib ??? (???) <A077BFEA-19C6-9F48-2F36-8E4E55376F49> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x99582000 - 0x9965dfeb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9965e000 - 0x996a7fe7 libTIFF.dylib ??? (???) <72AC8D6B-F187-1462-901F-999E68C24848> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x996a8000 - 0x9984fff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <4FFBF71A-D603-3C64-2BC6-BFBFFFD562F0> /usr/lib/libSystem.B.dylib
    0x99850000 - 0x998d2ffb SecurityFoundation ??? (???) <2E1F1AF0-A258-D215-2600-5DF03896D1F1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <4FFBF71A-D603-3C64-2BC6-BFBFFFD562F0> /usr/lib/libSystem.B.dylib

  • How do I remove the microsoft office 2008 automator workflows?

    Hey, first off all sorry if this isn't quite in the right place but there was a lot of forums to choose from!
    Basically I have installed Microsoft Office 2008 with the automator workflows and now decide that I don't require them and would like to remove them but I am unsure how to go about this?
    I know about the automator folder in system with the workflows in but don't want to delete any as I am afraid I will delete the wrong ones!
    Thanks for your help
    Joe

    Joe Bradley wrote:
    Thanks for your reply but this leads me on to the next question.. The reason for removing them is to remove the scripts icon at the far right of the top menu bar when an office application is running, I thought uninstalling the actions would remove this or am I completely wrong?
    the scripts icon has nothing to do with office or office automator actions.
    if you don't want it there just command+drag it off the sidebar.
    The reason that it annoys me is because it creates a delay when you quit an office program
    no, it doesn't. it makes no difference for office whether the scripts icon is there or not. this icon is there if you want to access some apple scripts. its mere presence has zero impact on speed of anything.
    Thanks for your help!
    Joe

Maybe you are looking for

  • Problem Creating Recordset in Dreamweaver CS5.5

    Can you help? I am having with recordsets in Dreamweaver CS5.5, or rather the sudden (I don't know why this has suddenly happened) inability to create one.  When I try to create a recordset query I get this error message and am prevented from creatin

  • Table Structure of Oracle Application

    Hi, Where i can have a look to oracle table structure on net. pls. write the address. Thanks in adv.

  • Why on earth is my (fairly new) mbp slowing down

    I purchased 15" mbp last September... am running 10.6.6 it's always slowing dow now..  and I get that **** color wheel that spins and spins...  and while it's spinning I can't switch apps or do anything else.. this really drives me nuts -- and ******

  • HELP - how do I arm two tracks

    using GB2 and the help file says that I just arm both tracks and push record. I'm using a Presonus firewire audio interface, and hear both tracks, but only one records at a time. what's up? how can I select both tracks thanks

  • Possible Confl

    Hi everyone, I recently installed a new SATA raid controler card (3ware escalade 9000 series) and since then my computer has been freezing. After much probing i'm pritty sure it's a conflict with my Audigy 2. If I remove or disable the audigy 2 it no