Applescript .app stopping Automator workflow

Hi. I'm still a novice at Applescript, but getting better with Automator, and trying to combine the two to get the result I need, and I'm almost there except this one little glitch:
I've got an Automator workflow that involves an Applescript application (.app) which for some unknown reason halts the rest of the workflow despite it seemingly working right. The Applescript does little more than quit a specific application, which it does. But when I run the workflow from Automator I get the error: "Connection is Invalid"
Any help here would be greatly appreciated - is there something I should do differently with the script? Or should I handle this differently in Automator?
Thanks!
Below is the text of the script:
tell application "OmniOutliner"
tell every document
try
save
on error errormessage number errornumber
display dialog errormessage buttons {"OK"} default button 1
end try
end tell
end tell
quit application "OmniOutliner"

First,
'... is there something I should do differently with the script? ...' - Based only on the material provided - the AppleScript code (the 'save' line) assumes no 'Untitled' 'OmniOutliner' windows, otherwise the drop down 'Save' sheet will result with a 'Script Editor' error message of -> 'AppleScript Error. OmniOutliner Professional got an error: AppleEvent timed out.'. This error, or something similar, may be what is generating the 'Automator' 'Connection is Invalid' error message.
Try the code below, in place of your AppleScript source code - with any needed modifications (such as 'OmniOutliner' in place of 'OmniOutliner Professional').
-- Code starts here --
tell application "OmniOutliner Professional"
close (every document whose (name begins with "Untitled" and canUndo is false)) saving no -- Close any newly created documents, which have not been modified.
set {tDocuments, dNames} to {documents, name of documents} -- Create lists of opened documents and the documents titles (names).
repeat with i from 1 to (count tDocuments) -- Cycle through the tDocuments list.
if ((item i of dNames) contains "Untitled") then -- If a newly created document, and recently modified - then, save it with a date stamped name, to the 'Desktop'..
save (item i of tDocuments) in ((((path to desktop folder from user domain) as string) & (do shell script "date +%Y%m%d%H%M%SOmniOutliner.oo3")))
else if ((canUndo of (item i of tDocuments)) is true) then
save (item i of tDocuments) -- If a previously created document, and recently modified.
end if
end repeat
end tell
quit application "OmniOutliner Professional" -- Any opened but not modified documents, or any recently saved documents - will be closed here.
-- Code ends here --
Note: No detailed checking is provided, above, for files that contained 'Untitled' within the filenames, and were then opened in 'OmniOutliner Professional'; as opposed to, any newly created document - which will contain 'Untitled' as its name or the beginning of its name. Such is left as an exercise for the student.
Second,
'... should I handle this differently in Automator?' - Please provide the 'Automator' workflow Actions.

Similar Messages

  • AppleScript to skip Automator workflow step - when no files are provided

    My current Automator workflow:
    Get Specified Finder Items (path to folder auto-populating with images from a camera)
    Get Folder Contents
    Sort Finder Items - by Creation Date in descending order (gets oldest item first)
    Limit Number of Items - Limit to First 1 items
    Move Finder Items (If no items are passed to this step skip it)
    Loop - Automatically; Stop after 20 minutes; Use the original input
    What I am trying to accomplish:
    I'm trying to write an AppleScript to skip the "Move Finder Items action" when it is not supplied with any files (from the previous workflow step), moving on to the next step which is a loop to begin my workflow again.
    Big picture:
    I have a workflow, where I am moving files from one folder to another folder (one at a time). When the input folder is empty, Automator comes back with "No item references were passed to the Move Finder Items action (-50)"; which it should - because it is not passed any files. I would like to ignore this error (or skip this step) and continue with the workflow if no files are provided to the "Move Finder Items action". I currently have an AppleScript (see below) that stops the workflow when this error occurs, but I would like to have this flow continue, not stop.
    AppleScript:
    on run {input, parameters}
              if input is {} then error number -128 -- 'user cancelled'
              return input
    end run
    Please help me create a script to skip this step, or to restart the Automator workflow when no files are passed to  the "Move Finder Items action".

    I'm not aware of a way to do this with a workflow saved as an application, but Automator is scriptable, so you can manipulate a workflow document.  For an example, build the follwing workflow:
    Ask for Text (just to get some input)
    Run AppleScript:
    on run {input, parameters}
      set currentAction to index of current action of front workflow -- the most recent completed action
      if input is {} then -- if no input then disable the following action
        tell Automator action index (currentAction + 2) of front workflow to set enabled to false
      else -- enable it
        tell Automator action index (currentAction + 2) of front workflow to set enabled to true
      end if
      return input
    end run
    Ask for Confirmation (just to show a dialog when enabled - this action will be enabled/disabled based on the text input)
    Loop
    You can also use action names, but I think it is less confusing to use indexes, since names can be edited and an action can be used more than once.

  • 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

  • Create Automator workflow/AppleScript to automatically move files within NAS

    Running iMac / Macbook Air (OS 10.9.5), having the Macs connected wireless to the same network as a Seagate Central (NAS). On the Seagate Central and the iMac I have specified a couple of folders which are bidirectional synced via "Sync folders pro", e.g. pictures/movies folders. As a family, we have several iPhones (4S and 5S) with dedicated folders on the Seagate Central / iMac. Having the Seagate Media app on the iPhones, we are able to upload (and thereby free iPhone memory) pictures/movies directly onto the Seagate Central (pictures/movies which then are synced back onto the iMac). However, when uploading pictures/movies from the iPhone to the Seagate central (via Seagate Media app), it is not possible to define a target directory, and the pictures are therefore uploaded to a dedicated directory. I therefore search for some workflow/script to automatically (when new pictures/movies are uploaded, or at a daily basis);
    - Search for pictures/movies within a specific NAS folder
    - Move the pictures/movies to another specific NAS folder
    - Delete all other files/folders within the NAS folder being searched
    New to Automator / scripting, so I hope you bear with me even if the questions are dumb.
    Is it possible to make the NAS recognize a workflow/script without starting the iMac and/or MBA?

    Ok, so I made it a bit further, now having the following Automator Workflow (iCal)
    1. Get requested clients (check for ignore input from this action)
    - afp://192.168.1.86/Public
    2. Connect to client
    - I end up with a mounted disc (Public folder). Note that I end up at the same folder even if using afp://192.168.1.86/Public/iPhone/Photos in step 1.
    3. Get specified Finder items (check for ignore input from this action - to avoid having the Public folder itself following the workflow)
    - Choose the subfolder Public/iPhone/Photos
    4. Get folder content
    5. Filter Finder items
    - Did not get any results by using arguments as "kind is picture" and/or "kind is movie"
    - Ended up using arguments as "name contains jpg", "name contains mov" etc
    6. Move Finder items
    - Destination folder: Public/Pictures/iPhone
    - I now successfully managed to transfer the pictures and movies from one NAS folder to another
    *** I now want to continue the workflow to delete all other Folders/Files on Public/iPhone/Photos ***
    7. Get specified Finder items (check for ignore input from this action - to have no existing input for the remaining workflow)
    - Choose the subfolder Public/iPhone/Photos
    8. Get folder content
    - Results no showing a folder and a file
    9. Move Finder items to trash
    However, I´m encountering a couple of problems with this workflow;
    Note1: If there are no pictures/movies to move (no output from #5 going into #6), the workflow will stop. Any suggestions on how to skip step #6 and go to #7 if there are no pictures/movies to move? Applescript within Automator? Setting up the workflow as iCal (regular basis), so would be nice if the workflow just completes without errors (i.e. still goes on with deleting other files on the folder, even if there are no pictures/movies to move).
    Note2: Step #9 result in a error "Finder could not move the specified items to trash". Has this something to do with a folder and some other file being attempted deleted from a NAS folder? Any suggestions for how to cope with this problem?

  • AppleScript error -609 in Automator workflow

    I created an AppleScript on one computer and incorporated it in an Automator workflow. The script works perfectly well stand-alone or as part of the workflow.
    Then I copied both files to a headless computer via VNC. I adjusted the workflow to look at the new location of the script, and the script itself to look at the new location of the file it's processing. Now, on that second computer, the script works perfectly well by itself, but I get AppleScript error -609 Connection Is Invalid if it's run from the workflow.
    For testing purposes I reduced the script to its simplest expression:
    tell application "Finder"
    end tell
    and it's still generating the error.
    Strangely, from the workflow the full script does what's it's supposed to, but the workflow stops because of the error. The error appears even if this script is alone in the workflow. Does anybody know what it means?

    That error means that the script wasn't able to communicate with the targeted application properly, which can happen if the application crashes while the script is running. If that error doesn't cause any problems, it's appearance can be suppressed:
    try
    (your code)
    on error number -609
    end try
    This construct will not execute any code on or after the line which produces the error.
    (32099)

  • Stopping Automator "Run Applescript" if file not found.

    Hi all,
    I'm creating a folder action that, when a file is added to the folder, will search the folder to see if the file is of a certain type (by the extension) and then run an Applescript that will open the file in the appropriate program. The problem is that not all files that go into the folder are of the correct type. Is there any way to tell Automator or Applescript to stop if no file is found (essentially "input" should be empty)?
    Thanks,
    Stuart

    Thank you for a helpful answer. I recently wrote an Automator application that opens several web pages in tabs and checks my email. It is set to run at login. Using a modification of your code and a line I pick up elsewhere I was able to make the Automator application end when I press command+. keys.
    Perhaps you can answer a different question for me. I am new to Automator but catching on quickly. I am not very good at AppleScript however. I have three automator-based workflows saved as applications. One needs to run every day and then trigger one of the other two depending upon the day or date.
    The branching seems to work OK but once the appropriate workflow starts to run I get an error. I think it is -1708. Any help you can provide would be appreciated.
    2 Gig G5   Mac OS X (10.4.7)  

  • Execute Automator Workflow from AppleScript

    I have a need to execute an Automator workflow from an AppleScript.
    In 10.4, this would work:
    set myWorkflow to "path:to:workflow"
    tell application "Automator Launcher" to open myWorkflow
    In 10.5, it does not. Is there an alternative way to do this in 10.5?

    Hi Dan!
    Copy the (Tiger) Automator Launcher.app 1.0.4 (*) somewhere to your 10.5 system and modify your AppleScript like this:
    tell app "path:to:Automator Launcher.app(1.0.4):"
    open "path:to:automator workflow:"
    end tell
    (*) /System/Library/CoreServices/Automator Launcher.app
    Message was edited by: spazek

  • 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 &

  • Can I tell applescript to run an Automator workflow?

    I was wondering if there was any way to tell applescript to run my workflow?

    Sure there are two ways:
    1) save your workflow as an application, then launch it like any other app
    2) tell application "Automator" to execute workflow 1
    (the latter is an actual AppleScript example that runs the active workflow. There are other ways of specifying which workflow to use, but since you weren't specific in your request I can't be more precise.)

  • Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Every time I sign into my Macbook, I get an error message from Automator; "The data couldn't be read because it has been corrupted.". I have never created an Automator workflow. How do I find out what Automator is trying to run and stop it?

    Maybe it's set as a login item:
    - System Preferences: Users and Groups:
    - Highlight your user account in the left pane/list
    - Click "Login" tab at the top.
    See if you have an Automater action on the list
    - Note, you can select it, then right-click, and can then select "Reveal in Finder". That way you might have an idea what installed it.

  • 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

  • Automator: Is there any command keys I can use to stop the workflow on the keyboard?

    Need to stop Automator without using a mouse.....suggestions?

    Command plus period should work.
    In Automator>Workflow menu, you should see the KB shortcuts.

  • Automator Workflow returns Applescript Error.

    I recently created an automator workflow that will allow me to play an internet radio station without opening a browser. The workflow is…
    • Get Specified URL's (with the radio station's live streaming URL)
    • Website Popup (displays a window that plays the radio station)
    Simple enough. And it worked fine.
    So I thought, let's make this more useful. Let's add a second URL to the "Get Specified URL's" action, and options "Show this action when the workflow runs." Then I can select the radio station I want to listen to from the list.
    Now, when I run the workflow, I get the list of URL's to select from. When I click to select one, I get an "Applescript Error. AppleEvent Handler Failed -10000. That's the whole message. Nothing else.
    Now, this still works. When I click "OK" the workflow continues, brings up my popup window, and plays my radio station. But it's just an annoyance to have that AppleScript Error message pop up. Even more strange, (IMO) is that fact that if I leave both radio stations selected, there is no AppleScript Error, and my workflow defaults to the first radio station.
    BTW, the workflow is only these two automator actions. I did not add any Applescript of my own. And it's definitely the first action that's generating this message. It's the "click" that generates that message.
    Any ideas?

    Actually, I was referring to it's use in this case, since you are only going to select one item from the list - it isn't set up very well for selecting individual items. The resulting list should really be limited to one item, since allowing multiple selections might get interesting, but there isn't a handy way to do that. Using "Open URL" isn't a very good option either, since it leaves the workflow running.
    The error seems to be related to the checkboxes, so you might try an end run by using the *Choose from List* action, which doesn't have the problem:
    1) *Get Specified URLs* -- don't show the action when run
    2) *Choose from List* -- make the selection here
    3) *DIsplay Webpages*

  • Set Mail Signature with Run AppleScript Action inside an Automator workflow

    Hello,
    Not sure if I am posting this at the right spot, but I would need some assistance. I am trying to write an Automator Workflow application. The purpose for this application is to:
    1. Drag one or more attachments on the application/droplet icon
    2. Automator workflow creates a new mail message in Mail with the attached items already addressed and ready to go to
    I setup the following Workflow inside Automator:
    1. New Mail Message
    2. Add Attachments to Front Message
    So this is all working just fine. Now I would like to add a step in between of type "Run AppleScript". In this "Run AppleScript" action I have the following code:
    on run {input, parameters}
    tell application "Mail"
    set the message signature of input to signature "My Signature Name"
    end tell
    return input
    end run
    So my workflow looks now like this:
    1. New Mail Message
    2. Run AppleScript
    3. Add Attachments to Front Message
    I am getting the following error:
    Can’t make «class situ» "My Signature Name" of application "Mail" into the expected type.
    So, in essence I am trying to select a signature for that particular new mail message in this workflow. And that does not work. Any help would be appreciated.
    Martin

    first, you don't need the extra action to add attachments. if you drop some items on the saved application they will be passed to the "new Mail message" action as input and will be added as attachments. also, in my testing it seems that the processes of attaching the attachments seem to bump against the process of adding the signature. it get the same result as you originally but if I add a delay to the run applescript action then it works as it should so try
    1. new mail message.
    2. run applescript
    on run {input, parameters}
    delay 1
    tell application "Mail"
    set the message signature of (item 1 of input) to signature "My Signature Name"
    end tell
    return input
    end run

  • Need help creating applescript to perform automator actions.

    Hi,
    I am looking for help with an applescript the will tell automator to execute  the steps of a workflow.  I'm aware that I coud just run a workflow or even tell applescript to instruct automator to run the workflow, however, I am looking to make this part of a larger workflow and this method would save the hassel of having to create a new workflow outside of applescript each time.
    I would like automator to "get folder contents" then "extract pdf text" to a "new file" with the "same name as original file" in the "same location as original" and "save as txt".  This doesnt seem to difficult to me, however, I have limited knowledge of scripting at this time.
    I appreciate anyones help...

    Hi,
    I'd say on a difficulty scale of 1-10, what you're asking for is a seven.
    Automator is scriptable, but when you run a basic AppleScript like
    tell application "Automator" to make new workflow
    you immediately get taken to the dialog asking you to choose a type for your document (app, calendar plugin etc). So that's going to stop the AppleScript dead in its tracks. It might be possible to move on with GUI scripting (using AppleScript to click the buttons) but it would be a ferocious cludge.
    I think the best approach would be to manually create an empty action as a starting point. You would then need an AppleScript that would duplicate the workflow file (so you've got a fresh one to duplicate next time), open it in Automator, add the appropriate actions, set the settings etc.
    It all sounds a bit too complicated
    HD

Maybe you are looking for