Automator Applications don't let me run applescripts!

ok just made an excellent automator application that deleted invisible files on selected drives. the only problem is that when i run it as an application, it gives me an error message and tells mr to check the "Run Applescript" action's properties. But, it works in the workflow perfectly!
please help.

OK, that does help. The statementset y to (value of variable "path" of front workflow)uses Automator terminology - unless your workflow is actually running in Automator, your script won't know anything about those terms unless you target the Automator or the Automator Runner applications.
In this case though, you don't need to use variables at all, since the value you want is in the input parameter of the *Run AppleScript* action (this is what is output from the previous action). Note that the input parameter is a list, so you need to repeat through the items in the list or coerce it from a list to the desired class. Your Terminal scripting also seems to be a bit severe, but with the items I noted your workflow would be something like:
1) *Ask for Finder Items* { Type: Folders } (Allow Multiple Selections is not checked)
2) *Run AppleScript*
<pre style="
font-family: Monaco, 'Courier New', Courier, monospace;
font-size: 10px;
font-weight: normal;
margin: 0px;
padding: 5px;
border: 1px solid #000000;
width: 720px;
color: #000000;
background-color: #DAFFB6;
overflow: auto;"
title="this text can be pasted into an Automator 'Run AppleScript' action">
on run {input, parameters}
set y to input as text -- coerce from list
display dialog "Are you sure you want to delete the Trash folder on flashdrive " & quoted form of y & "?" buttons {"Cancel", "Yes"} default button 2
display dialog "Enter password:" default answer "password" buttons {"Cancel", "OK"} default button 2
set x to (text returned of result)
tell application "Terminal"
delay 2
do script "cd " & quoted form of POSIX path of y -- convert path
do script "sudo rm -rf .Trashes" in window 1
delay 2
do script x in window 1
delay 2
do script "yes" in window 1
delay 2
do script "killall Terminal"
end tell
return input
end run</pre>

Similar Messages

  • I tried to install free version of Adobe Edge, but don´t let me run "Adobe creative cloud" to begin

    i tried to install free version of Adobe Edge, but don´t let me run "Adobe creative cloud" to begin

    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/
    OR
    Some download & install troubleshooting links
    -Comodo Security kills download http://forums.adobe.com/thread/1460361?tstart=0
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html
    -http://forums.adobe.com/community/download_install_setup
    -http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html
    -http://helpx.adobe.com/x-productkb/global/errors-or-unexpected-behavior-websites.html
    -http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html
    -Server won't connect https://forums.adobe.com/thread/1233088
    -Enable Mac Root User https://forums.adobe.com/thread/1156604

  • Accessing multiple Automator variables in a Run Applescript action

    I have an Automator app set up with 4 variables feeding into a Run Shell Script with the following code. And it runs perfectly.
    /Applications/Adobe\ After\ Effects\ CC/aerender -sound ON -project $1 -comp "$2" -output $3/$4
    However, I need to be able to see the progress of the Script while it processes in the Terminal window. So, I'm setting up a Run AppleScript to tell Terminal to run the script, but I'm getting two problems.
    code:
    on run {input, parameters}
              set aVar to item 1 of input
              set bVar to item 2 of input
              set cVar to item 3 of input
              set dVar to item 4 of input
              tell application "Terminal"
      activate
                        do script "/Applications/Adobe\ After\ Effects\ CC/aerender -sound ON -project aVar -comp \"bVar\" -output cVar/dVar"
              end tell
    end run
    Problem 1--Either my syntax or method of setting the 4 variables to access the array of 4 input variables is wrong. And I don't know enough about AppleScript to figure it out.
    Problem 2-- AppleScript really doesn't like the spaces in "Adobe\ After\ Effects\ CC" even though the Terminal has no problem with it. But it errors out before it even gets to Terminal.
    Any help that anyone can give will be greatly appreciated.

    The backslash is also used as the escape character in an AppleScript string, so to actually get the character you need to escape it (you can also use the term quoted form of to let AppleScript figure out how to quote the string).  To use the variables, you need to use the concatentation operator to mix the variables and text pieces - by putting a variable inside the string the identifier just becomes text.
    Your string should look something like:
    "/Applications/Adobe\\ After\\ Effects\\ CC/aerender -sound ON -project " & aVar & " -comp " & bVar & " -output " & cVar & "/" & dVar
    or perhaps
    quoted form of "/Applications/Adobe After Effects CC/aerender" & " -sound ON -project " & aVar & " -comp " & bVar & " -output " & quoted form of (cVar & "/" & dVar)

  • 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

  • How to run an "Automator" application at regular time intervals

    I would like to find out how to run an "Automator" application at regular time intervals, say at every 5 minutes.
    Is there any program, AppleScript or any method to do this?
    I would very much appreciate a help.
    Suwan

    save your workflow as an ical plugin, this will automatically insert the workflow into ical,and create a workflow category for it, then just set to repeat every 5 minutes, or save as an APP and use a program called CRONIX (freeware) to run the schedule.

  • I keep getting the error message "apple application support is required to run itunes. Please uninstall itunes and then install it again." I've done this twice and still keep getting the same message...I'm at wits end Please HELP!!!

    I keep getting the error message "apple application support is required to run itunes. Please uninstall itunes and then install it again." I've done this twice and still keep getting the same message...I'm at wits end Please HELP!!!

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

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

  • Applescript in Automator behaves differently when executed from inside Automator, or as an Automator application

    Hello everyone,
    I'm trying to execute an Automator workflow at startup, which I do by saving the workflow as an application, and adding it to the startup list, this works fine.
    My workflow works fine when executed from within Automator (ie clicking on the "Execute" button), but does not anymore when the Automator application is executed (ie. simply double clicking on my Automator file)
    I have narrowed it down to an Applescript inside my workflow which fails only when the application is executed from the finder (the step works fine from within Automator). The script automatically creates an ad hoc wifi network.
    The line which specifically fails is :
    set menu_extras to value of attribute "AXDescription" of menu bar items
    Anyone has any idea why executing the workflow from within automator, and executing it from the finder yield different results ?
    The crazy thing is that all this worked fine up until a few days ago, there might have been an update since (running Mavericks 10.9.2), but nothing game-changing.

    You will need to provide more than the one line of AppleScript you quote if you want a definitive answer.  (We can't even see which app you are addressing this to.)

  • When I try to run iTunes I receive the following error message: "Apple Application Support was not found.  Apple Application Support is required to run iTunes helper.  Please unistall iTunes, then install iTunes again". I have done this twice.  What now?

    When I try to run iTunes I receive the following error message: "Apple Application Support was not found.  Apple Application Support is required to run iTunes helper.  Please unistall iTunes, then install iTunes again". I have done this twice and continue to get the error message.  What now?

    Hi texasslagle,
    It sounds like you are having issues installing iTunes on your Windows 7 PC, a frustrating situation I am sure.
    There is an article that you may want to use to try to complete your install here -
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/ts5376
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • After diconnecting my pkone from pc my applications don't run, I try to open but after 1 sec back to main screen, it always happen when disconnec from pc, I need back to the factory setings!!! anybody can help?! Thanks

    To load new music I need connect my phone to pc, after all when I disconnect phone my applications don't want run,non of them, after one sec back to main screen! Then I need back my phone to factory settings! Anybody know what is wrong?! Thanks

    papiciulo wrote:
    To load new music I need connect my phone to pc, after all when I disconnect phone my applications don't want run,non of them, after one sec back to main screen! Then I need back my phone to factory settings! Anybody know what is wrong?! Thanks
    Go to the iTunes store on the phone and "buy" any free app. This should fix the problem.

  • Chaining "Get Value of Variable" and "Run AppleScript" actions in Automator

    I'm attempting to access a variable I've set in Automator from within a "Run AppleScript Action". On occasion, generally when I start in a fresh new file, I can chain the "Get Value of Variable" action with the "Run AppleScript" action as you would expect.
    Most times, though, they will not chain together. I haven't specified that the "Run AppleScript" action should ignore input, but it behaves that way. I've tried everything I can think of, but I'm out of ideas.
    Am I going about this all wrong? (Thanks in advance for any suggestions!)
    Message was edited by: rch_nashville (for clarity)

    The *Get Value of Variable* action is another quirky one. I'm not sure what causes it to fail, but sometimes putting another (dummy) action in between gets it to work. You can also access workflow variables directly from the Run AppleScript action, so you might also give that a try:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 680px;
    color: #000000;
    background-color: #B5FF6C;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters} -- get values of workflow variables
    set output to {}
    set theVariables to the name of variables of front workflow
    if the result is not {} then
    set theVariables to (choose from list theVariables with multiple selections allowed and empty selection allowed)
    if result is false then error -128 -- cancel
    repeat with someVariable in theVariables
    set the end of the output to (get value of variable someVariable of front workflow)
    end repeat
    end if
    return output
    end run
    </pre>

  • The action "Run AppleScript" encountered an error.

    Hey,
    I'm using EOS utility to tether my camera to my computer and take photos.  I'm then using the "linked software" option in eos utility preferences to send it my Automator action.  Eos utility is pretending that my automator script is an application.
    The goal is that automator sends it to photoshop to run a specific action on it and then save it to a folder where I display the photos on a monitor. 
    However everytime I take a photo I get this error message:
    "The action “Run AppleScript” encountered an error.  Check the actionʼs properties and try running the workflow again."
    Once I click "ok" then the script will continue running and everything works fine. 
    This is my run applescript that I'm using in Automator:
    "on run {input, parameters}
              set input to input as text
              tell application "Adobe Photoshop CS5"
      open file input
                        do action "GDaction" from "GDset"
              end tell
    end run"
    I assume there is an issue in the run applescript.  Can anyone help me revise it to avoid getting this error message everytime?

    Sorry, I guess I wasn't clear. I don't think you need to cast the file reference to a text string.
    Try this:
    on run {input, parameters}
              tell application "Adobe Photoshop CS5"
                     open file input
                     do action "GDaction" from "GDset"
              end tell
    end run
    or
    on run {input, parameters}
              tell application "Adobe Photoshop CS5"
                     open alias input
                     do action "GDaction" from "GDset"
              end tell
    end run
    I'm not sure what is being passed and what photoshop is expecting.

  • Macbook runs applescript at login

    My Macbook, 13' mid 2010 had malware. Specifically, a Trojan 7554550 and 3 Phishing Banks. I've cleaned it with ClamXav, backed it up o Time Machine and installed Mavericks.  But I still can't seem to gain full control. At login, Applescripts auto run that I can't figure out how to disable. I was a PC convert last year and am totally unfamiliar with Applescripts and Automator but there are quite a few Applescripts running.  I login, they run.  I open a file, they run.  Oh, btw, the Scripteditor icon and all associated templates are also parked in my upper right hand corner. I'd like to remove this from that tool bar as well.   Thanks in advance.

    AUTOMATOR PLIST
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>/System/Library/Automator</key>
      <dict>
      <key>actionBundleIDListsByActionType</key>
      <dict>
      <key>com.apple.automator-action</key>
      <array>
      <string>com.apple.Automator.ActivateFonts</string>
      <string>com.apple.Automator.AddAttachmenttoFrontMessage</string>
      <string>com.apple.Automator.AddColorProfile</string>
      <string>com.apple.action.gridpdf</string>
      <string>com.apple.Automator.AddMovieToIDVDMenu</string>
      <string>com.apple.Automator.Add_Photos_to_Album</string>
      <string>com.apple.Automator.AddTrackstoiPod</string>
      <string>com.apple.Automator.AddTrackstoPlaylist</string>
      <string>com.apple.Automator.Add_Thumbnail_Icon_to_Image_Files</string>
      <string>com.apple.Automator.AddToFontLibrary</string>
      <string>com.apple.Automator.AppleVersioningTool</string>
      <string>com.apple.action.colorsyncprofiles</string>
      <string>com.apple.QuartzComposer.automatorActions.imageFilter</string>
      <string>com.apple.action.qfilterpdf</string>
      <string>com.apple.Automator.ApplySQLAction</string>
      <string>com.apple.Automator.Ask for Confirmation</string>
      <string>com.apple.Automator.AskForFinderItems</string>
      <string>com.apple.Automator.AskForMovies</string>
      <string>com.apple.Automator.AskForPhotos</string>
      <string>com.apple.Automator.AskForServers</string>
      <string>com.apple.Automator.AskForSongs</string>
      <string>com.apple.Automator.TextInputDialog</string>
      <string>com.apple.Automator.MovieBrowser</string>
      <string>com.apple.Automator.BuildXCodeProject</string>
      <string>com.apple.Automator.BurnADisc</string>
      <string>com.apple.Automator.ChangeCaseofTrackNames</string>
      <string>com.apple.Automator.ChangeImageType</string>
      <string>com.apple.Automator.ChooseFromList</string>
      <string>com.apple.Automator.CombineMessages</string>
      <string>com.apple.action.joinpdf</string>
      <string>com.apple.Automator.ReadTextFile</string>
      <string>com.apple.action.compresspdf</string>
      <string>com.apple.Automator.ConnectToServers</string>
      <string>com.apple.Automator.ConvertCSVToSQLAction</string>
      <string>com.apple.QuartzComposer.automatorActions.movieExporter</string>
      <string>com.apple.Automator.CopyFiles</string>
      <string>com.apple.Automator.CopyToClipboard</string>
      <string>com.Apple.QuickTime.Automator.Create_Annotated_Movie_File</string>
      <string>com.apple.Automator.CreateZipArchive</string>
      <string>com.apple.Automator.Create_Banner_Image_from_Text</string>
      <string>com.apple.Automator.CreatePackage</string>
      <string>com.apple.Automator.ThumbnailsForImages</string>
      <string>com.apple.Automator.CropImages</string>
      <string>com.apple.Automator.cvsadd</string>
      <string>com.apple.Automator.cvscheckout</string>
      <string>com.apple.Automator.cvscommit</string>
      <string>com.apple.Automator.cvsupdate</string>
      <string>com.apple.Automator.DeactivateFonts</string>
      <string>com.apple.Automator.DeleteAllNotes</string>
      <string>com.apple.Automator.DeleteiCalEvents</string>
      <string>com.apple.Automator.DeleteiCalItems</string>
      <string>com.apple.Automator.DeleteiCalCalendars</string>
      <string>com.apple.Automator.DeleteiCalToDos</string>
      <string>com.apple.Automator.DisplayMessages</string>
      <string>com.apple.Automator.Display-Notification</string>
      <string>com.apple.Automator.Display_Webpages</string>
      <string>com.apple.Automator.DisplayWebsite</string>
      <string>com.apple.Automator.DownloadPictures</string>
      <string>com.apple.Automator.DownloadInternetFile</string>
      <string>com.apple.Automator.Duplicate_Finder_Items</string>
      <string>com.apple.Automator.EjectDisk</string>
      <string>com.apple.Automator.EjectiPod</string>
      <string>com.apple.EnableorDisableTracks</string>
      <string>com.apple.QuickTime.Automator.EncodeMedia</string>
      <string>com.apple.QuickTime.Automator.Encode_to_MPEG_Audio</string>
      <string>com.apple.action.encryptpdfdocument</string>
      <string>com.apple.Automator.EventSummary</string>
      <string>com.apple.Automator.ExecuteSQLAction</string>
      <string>com.apple.Automator.ExportFontFiles</string>
      <string>com.apple.Automator.Export_Movies</string>
      <string>com.apple.Automator.Export_vCards</string>
      <string>com.apple.Automator.Extract_Data_from_Text</string>
      <string>com.apple.action.oddevenpdf</string>
      <string>com.apple.Automator.ExtractPDFAnnotations</string>
      <string>com.apple.Automator.ExtractPDFText</string>
      <string>com.apple.Automator.Filter_Articles</string>
      <string>com.apple.Automator.Filter_iCal_Items_2</string>
      <string>com.apple.Automator.Filter_Address_Book_Items_2</string>
      <string>com.apple.Automator.Filter_Finder_Items_2</string>
      <string>com.apple.Automator.FilterFinderItems</string>
      <string>com.apple.Automator.FilterFontsByFontType</string>
      <string>com.apple.Automator.Filter_iPhoto_Items_2</string>
      <string>com.apple.Automator.FilterItems</string>
      <string>com.apple.Automator.Filter_iTunes_Items_2</string>
      <string>com.apple.Automator.Filter_Mail_Items_2</string>
      <string>com.apple.Automator.FilterParagraphs</string>
      <string>com.apple.Automator.Filter_URLs_2</string>
      <string>com.apple.Automator.FilterURLs</string>
      <string>com.apple.Automator.Find_iCal_Items_2</string>
      <string>com.apple.Automator.Find_Address_Book_Items_2</string>
      <string>com.apple.Automator.Find_Finder_Items_2</string>
      <string>com.apple.Automator.FindFinderItems</string>
      <string>com.apple.Automator.Find_iPhoto_Items_2</string>
      <string>com.apple.Automator.FindItems</string>
      <string>com.apple.Automator.Find_iTunes_Items_2</string>
      <string>com.apple.Automator.Find_Mail_Items_2</string>
      <string>com.apple.Automator.BirthdayIsToday</string>
      <string>com.apple.Automator.FlipImage</string>
      <string>com.apple.Automator.Get_Attachments_from_Mail_Messages</string>
      <string>com.apple.Automator.GetContactInfo</string>
      <string>com.apple.Automator.Get_Contents_of_Clipboard</string>
      <string>com.apple.Automator.GetContentofTextEditDocument</string>
      <string>com.apple.Automator.getContentOfWebpages</string>
      <string>com.apple.GetURLofFrontSafariWindow</string>
      <string>com.apple.Automator.GetWordDefinition</string>
      <string>com.apple.Automator.Get_Enclosure_URLs_from_Articles</string>
      <string>com.apple.Automator.Get_Feeds_from_URLs</string>
      <string>com.apple.Automator.GetFilesForFonts</string>
      <string>com.apple.Automator.GetFolderContents</string>
      <string>com.apple.Automator.GetFontInfo</string>
      <string>com.apple.Automator.GetFontsFromFontFiles</string>
      <string>com.apple.Automator.GetFontsFromTextEditDocument</string>
      <string>com.apple.Automator.GetSlideshowImages</string>
      <string>com.apple.Automator.Get_Image_URLs_from_Articles</string>
      <string>com.apple.Automator.FindLinkedImages</string>
      <string>com.apple.Automator.Get_Link_URLs_from_Articles</string>
      <string>com.apple.Automator.GetLinkURLsFromWebpages</string>
      <string>com.apple.Automator.GetNewEmail</string>
      <string>com.apple.Automator.GetPDFMetadata</string>
      <string>com.apple.Automator.Get_Permalinks_of_Articles</string>
      <string>com.apple.Automator.GetPostScriptNameOfFont</string>
      <string>com.apple.Automator.Get_Selected_Address_Book_Items_2</string>
      <string>com.apple.Automator.Get_Selected_Finder_Items_2</string>
      <string>com.apple.Automator.Get_Selected_iPhoto_Items_2</string>
      <string>com.apple.Automator.GetSelectedItems</string>
      <string>com.apple.Automator.Get_Selected_iTunes_Items_2</string>
      <string>com.apple.Automator.Get_Selected_Mail_Items_2</string>
      <string>com.apple.GetSpecifiediCalItems</string>
      <string>com.apple.Automator.GetSpecifiedAddressBookItems</string>
      <string>com.apple.Automator.SpecifiedFiles</string>
      <string>com.apple.Automator.GetSpecifiediPhotoItems</string>
      <string>com.apple.Automator.GetSpecifiediTunesItems</string>
      <string>com.apple.GetSpecifiedMailItems</string>
      <string>com.apple.GetSpecifiedMovies</string>
      <string>com.apple.GetSpecifiedServers</string>
      <string>com.apple.GetSpecifiedText</string>
      <string>com.apple.Automator.URLList</string>
      <string>com.apple.Automator.Get_Text_from_Articles</string>
      <string>com.apple.Automator.GetWebpageText</string>
      <string>com.apple.Automator.GettheCurrentTrack</string>
      <string>com.apple.Automator.Get_Value_of_Variable</string>
      <string>com.apple.Automator.MassMailer</string>
      <string>com.apple.Automator.Hide_Applications</string>
      <string>com.apple.Automator.HintMovies</string>
      <string>com.apple.Automator.RipAudioFile</string>
      <string>com.apple.Automator.iPhotoImport</string>
      <string>com.apple.Automator.AddFilestoPlaylist</string>
      <string>com.apple.Automator.InitiateRemoteBroadcast</string>
      <string>com.apple.Automator.AssignFinderLabel</string>
      <string>com.apple.Automator.OpenApplication</string>
      <string>com.apple.Automator.Loop</string>
      <string>com.apple.Automator.Mark_Articles</string>
      <string>com.apple.Automator.MountDiskImage</string>
      <string>com.apple.Automator.MoveToTrash</string>
      <string>com.apple.Automator.MoveFiles</string>
      <string>com.apple.Automator.New_Aliases</string>
      <string>com.apple.NewAudioCapture</string>
      <string>com.apple.Automator.New_iCal_Events</string>
      <string>com.apple.Automator.CreateNewCalendar</string>
      <string>com.apple.Automator.NewDiskImage</string>
      <string>com.apple.Automator.MakeNewFolder</string>
      <string>com.apple.Automator.NewiDVDMenu</string>
      <string>com.apple.Automator.CreateMovieSequence</string>
      <string>com.apple.Automator.CreateiDVDSlideshow</string>
      <string>com.apple.Automator.NewiPhotoAlbum</string>
      <string>com.apple.Automator.CreateNewNote</string>
      <string>com.apple.Automator.Create_iTunes_Playlist</string>
      <string>com.apple.Automator.CreateNewEmail</string>
      <string>com.apple.Automator.CreatePDFContactSheet</string>
      <string>com.apple.Automator.NewPDFfromImages</string>
      <string>com.apple.Automator.NewQuickTimeSlideshow</string>
      <string>com.apple.Automator.New_To_Do_Item</string>
      <string>com.apple.NewScreenCapture</string>
      <string>com.apple.Automator.NewTextFile</string>
      <string>com.apple.Automator.CreateNewTextEditDocument</string>
      <string>com.apple.NewVideoCapture</string>
      <string>com.apple.Automator.OpenFinderItems</string>
      <string>com.apple.Automator.OpenImagesInPreview</string>
      <string>com.apple.Automator.OpenKeynotePresentations</string>
      <string>com.apple.Automator.PadImage</string>
      <string>com.apple.PauseCapture</string>
      <string>com.apple.Automator.PauseDVDPlayback</string>
      <string>com.apple.Automator.PauseiTunesPlaying</string>
      <string>com.apple.Automator.Pause</string>
      <string>com.apple.Automator.PDFtoImages</string>
      <string>com.apple.Automator.PlayDVD</string>
      <string>com.apple.Automator.PlayiPhotoSlideshow</string>
      <string>com.apple.Automator.PlayiTunesPlaylist</string>
      <string>com.apple.automator.PlayMovies</string>
      <string>com.apple.Automator.PrintFinderItems</string>
      <string>com.apple.Automator.PrintImage</string>
      <string>com.apple.Automator.PrintKeynotePresentation</string>
      <string>com.apple.Automator.Quit_All_Applications</string>
      <string>com.apple.Automator.Quit_Application</string>
      <string>com.apple.Automator.RemoveEmptyPlaylists</string>
      <string>com.apple.Automator.RemoveFontFiles</string>
      <string>com.apple.Automator.AddNumbersToFinderNames</string>
      <string>com.apple.action.renamepdf</string>
      <string>com.apple.action.imagepdf</string>
      <string>com.apple.QuartzComposer.automatorActions.compositionRenderer</string>
      <string>com.apple.ResumeCapture</string>
      <string>com.apple.Automator.ResumeDVDPlayback</string>
      <string>com.apple.Automator.Reveal_Finder_Items</string>
      <string>com.apple.Automator.ReviewPhotos</string>
      <string>com.apple.Automator.RotateImage</string>
      <string>com.apple.Automator.RunScript</string>
      <string>com.apple.Automator.RunSelfTest</string>
      <string>com.apple.RunShellScript</string>
      <string>com.apple.RunWebService</string>
      <string>com.apple.Automator.ExecuteWorkflow</string>
      <string>com.apple.Automator.saveImagesFromWebContent</string>
      <string>com.apple.Automator.ScaleImage</string>
      <string>com.apple.Automator.SearchPDFs</string>
      <string>com.apple.Automator.SelectFontsInFontBook</string>
      <string>com.apple.Automator.SendBirthdayGreeting</string>
      <string>com.apple.Automator.SendOutgoingMessages</string>
      <string>com.apple.Automator.Set_Application_for_Files</string>
      <string>com.apple.Automator.SetComputerVolume</string>
      <string>com.apple.Automator.SetContentOfTextEditDocument</string>
      <string>com.apple.Automator.SetDesktopPicture</string>
      <string>com.apple.Automator.FolderViews</string>
      <string>com.apple.Automator.SetiDVDBackgroundImage</string>
      <string>com.apple.Automator.SetiDVDButtonFace</string>
      <string>com.apple.Automator.SetiTunesTrackInfo</string>
      <string>com.apple.Automator.SetEQofTracks</string>
      <string>com.apple.Automator.SetiTunesVolume</string>
      <string>com.apple.Automator.SetMovieAnnotations</string>
      <string>com.apple.Automator.SetMoviePlaybackProperties</string>
      <string>com.apple.Automator.SetMovieURL</string>
      <string>com.apple.Automator.Set_Options_of_iTunes_Songs</string>
      <string>com.apple.Automator.SetPDFMetadata</string>
      <string>com.apple.AddFinderComments</string>
      <string>com.apple.Automator.Set_Value_of_Variable</string>
      <string>com.apple.Automator.ShowMainiDVDMenu</string>
      <string>com.apple.keynote.automator.ShowNextKeynoteSlide</string>
      <string>com.apple.Automator.ShowPreviousKeynoteSlide</string>
      <string>com.apple.Automator.ShowSpecifiedKeynoteSlide</string>
      <string>com.apple.Automator.SortDiskItems</string>
      <string>com.apple.Automator.SpeakText</string>
      <string>com.apple.Automator.SpotlightAction</string>
      <string>com.apple.StartCapture</string>
      <string>com.apple.Automator.StartiTunesPlaying</string>
      <string>com.apple.Automator.StartiTunesVisuals</string>
      <string>com.apple.Automator.StartKeynoteSlideshow</string>
      <string>com.apple.Automator.StartScreenSaver</string>
      <string>com.apple.StopCapture</string>
      <string>com.apple.Automator.StopDVDPlayback</string>
      <string>com.apple.Automator.StopiTunesVisuals</string>
      <string>com.apple.Automator.StopKeynoteSlideshow</string>
      <string>com.apple.Automator.SystemProfile</string>
      <string>com.apple.Automator.TakePicture</string>
      <string>com.apple.Automator.TakeScreenShot</string>
      <string>com.apple.Automator.TakeVideoSnapshot</string>
      <string>com.apple.Automator.TextToAudioFile</string>
      <string>com.apple.Automator.Text_to_EPUB_File</string>
      <string>com.apple.Automator.UpdateiPod</string>
      <string>com.apple.Automator.ValidateFontFiles</string>
      <string>com.apple.Automator.LogOutput</string>
      <string>com.apple.Automator.FloatingDialog</string>
      <string>com.apple.Automator.WatchMeDo</string>
      <string>com.apple.action.watermarkpdf</string>
      <string>com.apple.Automator.Website_Popup</string>
      </array>
      <key>com.apple.automator-conversion-action</key>
      <array>
      <string>com.apple.ConvertAccountObjectToMailboxObject</string>
      <string>com.apple.Automator.ConvertAlbumObjectToPhotoObject</string>
      <string>com.apple.Automator.ConvertAliasObjectToFinderObject</string>
      <string>com.apple.Automator.ConvertAliasObjectToiPhotoPhotoObject</string>
      <string>com.apple.ConvertCalendarObjectToEventObject</string>
      <string>com.apple.ConvertCalendarObjectToToDoObject</string>
      <string>com.apple.Automator.Convert_Cocoa_Data_To_Cocoa_String</string>
      <string>com.apple.Automator.Convert_Cocoa_String_To_Cocoa_Data</string>
      <string>com.apple.Automator.Convert_Cocoa_URL_to_iTunes_Track_Object</string>
      <string>com.apple.Automator.Convert_Cocoa_URL_to_RSS_Feed</string>
      <string>com.apple.Automator.Convert_Feeds_to_Articles</string>
      <string>com.apple.Automator.ConvertFinderObjectToAliasObject</string>
      <string>com.apple.ConvertGroupObjectToPersonObject</string>
      <string>com.apple.ConvertiPhotoAlbumToAliasObject</string>
      <string>com.apple.Automator.ConvertiTunesTrackObjectToAliasObject</string>
      <string>com.apple.Automator.ConvertiTunesPlaylistObjectToAliasObject</string>
      <string>com.apple.ConvertMailboxObjectToMessageObject</string>
      <string>com.apple.Automator.ConvertiPhotoPhotoObjectToAliasObject</string>
      <string>com.apple.ConvertPlaylistObjectToSongObject</string>
      <string>com.apple.ConvertSourceObjectToPlaylistObject</string>
      </array>
      </dict>
      <key>actions</key>
      <dict>
      <key>com.Apple.QuickTime.Automator.Create_Annotated_Movie_File</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <true/>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>Unknown</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryMovies</string>
      <key>AMDefaultParameters</key>
      <dict>
      <key>annotationsAndValues</key>
      <array>
      <array>
      <false/>
      <string>com.apple.quicktime.author</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.comment</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.copyright</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.description</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.director</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.displayname</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.encodedby</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.information</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.keywords</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.producer</string>
      <string></string>
      </array>
      <array>
      <false/>
      <string>com.apple.quicktime.software</string>
      <string></string>
      </array>
      </array>
      <key>deleteSourceFiles</key>
      <false/>
      <key>destinationFolder</key>
      <string>~/Desktop</string>
      <key>errorMessage</key>
      <string></string>
      <key>errorOccured</key>
      <string></string>
      <key>errorTitle</key>
      <string></string>
      <key>useSameFolderAsSource</key>
      <true/>
      </dict>
      <key>AMDescription</key>
      <dict>
      <key>AMDAlert</key>
      <string></string>
      <key>AMDInput</key>
      <string></string>
      <key>AMDNote</key>
      <string></string>
      <key>AMDOptions</key>
      <string>There are options to create the annotated files in the same directory as the source files, and to delete the source files after processing.</string>
      <key>AMDRelatedActions</key>
      <array/>
      <key>AMDRequires</key>
      <string></string>
      <key>AMDResult</key>
      <string></string>
      <key>AMDSummary</key>
      <string>This action will create an annotated duplicate of each of the movie files passed to it. The annotated copies will be saved in QuickTime format with a “mov” name extension instead of the name extension of the source file.</string>
      <key>AMDWebsite</key>
      <string>http://www.macosxautomation.com</string>
      </dict>
      <key>AMIconName</key>
      <string>QuickTime Player</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array/>
      <key>AMName</key>
      <string>Create Annotated Movie File</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMRequiredResources</key>
      <array/>
      <key>BundleIdentifier</key>
      <string>com.Apple.QuickTime.Automator.Create_Annotated_Movie_File</string>
      <key>BundlePath</key>
      <string>/System/Library/Automator/Create Annotated Movie File.action</string>
      <key>CFBundleShortVersionString</key>
      <string>1.0</string>
      <key>CFBundleVersion</key>
      <string>1.0</string>
      <key>Category</key>
      <array>
      <string>AMCategoryMovies</string>
      </array>
      <key>Keywords</key>
      <array/>
      <key>NSHumanReadableCopyright</key>
      <string>Copyright © 2010 Apple Computer Inc., All Rights Reserved.</string>
      <key>NSPrincipalClass</key>
      <string>Create_Annotated_Movie_File</string>
      <key>UnlocalizedApplications</key>
      <array>
      <string>QuickTime Player</string>
      </array>
      <key>Warning</key>
      <dict>
      <key>Action</key>
      <string>(* Action name to be suggested to add prior to this action to make the task safer, e.g. com.apple.Automator.CopyFiles, goes here. *)</string>
      <key>ApplyButton</key>
      <string>(* Button label for user to add proposed Action, e.g. Add. *)</string>
      <key>IgnoreButton</key>
      <string>(* Button label for user not to add proposed Action, e.g. Don't Add. *)</string>
      <key>Level</key>
      <integer>0</integer>
      <key>Message</key>
      <string>(* Warning message presented to user goes here. *)</string>
      </dict>
      </dict>
      <key>com.apple.AddFinderComments</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <false/>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>Finder</string>
      <string>Spotlight</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryFilesAndFolders</string>
      <key>AMDefaultParameters</key>
      <dict>
      <key>shouldAppend</key>
      <true/>
      <key>textToAdd</key>
      <string></string>
      </dict>
      <key>AMDescription</key>
      <dict>
      <key>AMDNote</key>
      <string>If no text is specified and the append checkbox is not checked, this action will clear the current Spotlight Comments from each Finder item.</string>
      <key>AMDSummary</key>
      <string>If set to append, this action adds the specified text to the end of the Spotlight Comments field for the Finder items it receives. If the append checkbox is not checked, this action will replace the current Spotlight Comments with the specified text.</string>
      </dict>
      <key>AMIconName</key>
      <string>Finder</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array>
      <string>Add</string>
      <string>Comment</string>
      <string>File</string>
      <string>Folder</string>
      </array>
      <key>AMName</key>
      <string>Set Spotlight Comments for Finder Items</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMRequiredResources</key>
      <array/>
      <key>BundleIdentifier</key>
      <string>com.apple.AddFinderComments</string>
      <key>BundlePath</key>
      <string>/System/Library/Automator/Set Spotlight Comments for Finder Items.action</string>
      <key>CFBundleShortVersionString</key>
      <string>1.1.1</string>
      <key>CFBundleVersion</key>
      <string>1.1.1</string>
      <key>Category</key>
      <array>
      <string>AMCategoryFilesAndFolders</string>
      </array>
      <key>Keywords</key>
      <array>
      <string>Add</string>
      <string>Comment</string>
      <string>File</string>
      <string>Folder</string>
      </array>
      <key>NSHumanReadableCopyright</key>
      <string>Copyright © 2004-2012 Apple Inc.  All rights reserved.</string>
      <key>NSPrincipalClass</key>
      <string>AMAddFinderCommentsAction</string>
      <key>UnlocalizedApplications</key>
      <array>
      <string>Finder</string>
      <string>Spotlight</string>
      </array>
      <key>Warning</key>
      <dict/>
      </dict>
      <key>com.apple.Automator.ActivateFonts</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <false/>
      <key>Types</key>
      <array>
      <string>com.apple.fontbook.typeface-object</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>Font Book</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryFonts</string>
      <key>AMDefaultParameters</key>
      <dict/>
      <key>AMDescription</key>
      <dict>
      <key>AMDSummary</key>
      <string>This action activates the fonts passed from the previous action.</string>
      </dict>
      <key>AMIconName</key>
      <string>FontBook</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array>
      <string>Font</string>
      <string>File</string>
      </array>
      <key>AMName</key>
      <string>Activate Fonts</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Types</key>
      <array>
      <string>com.apple.fontbook.typeface-object</string>
      </array>
      </dict>
      <key>AMRequiredResources</key>
      <array/>
      <key>BundleIdentifier</key>
      <string>com.apple.Automator.ActivateFonts</string>
      <key>BundlePath</key>
      <string>/System/Library/Automator/Activate Fonts.action</string>
      <key>CFBundleShortVersionString</key>
      <string>240</string>
      <key>CFBundleVersion</key>
      <string>5.0</string>
      <key>Category</key>
      <array>
      <string>AMCategoryFonts</string>
      </array>
      <key>Keywords</key>
      <array>
      <string>Font</string>
      <string>File</string>
      </array>
      <key>NSHumanReadableCopyright</key>
      <string>Copyright © 2004-2013 by Apple Inc. All rights reserved.</string>
      <key>NSPrincipalClass</key>
      <string>AMAppleScriptAction</string>
      <key>UnlocalizedApplications</key>
      <array>
      <string>Font Book</string>
      </array>
      <key>Warning</key>
      <dict>
      <key>Action</key>
      <string>(* Action name to be suggested to add prior to this action to make the task safer, e.g. Copy Files, goes here. *)</string>
      <key>ApplyButton</key>
      <string>(* Button label for user to add proposed Action, e.g. Add. *)</string>
      <key>IgnoreButton</key>
      <string>(* Button label for user not to add proposed Action, e.g. Don't Add. *)</string>
      <key>Level</key>
      <integer>0</integer>
      <key>Message</key>
      <string>(* Warning message presented to user goes here. *)</string>
      </dict>
      </dict>
      <key>com.apple.Automator.AddAttachmenttoFrontMessage</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <false/>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>Mail</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryMail</string>
      <key>AMDefaultParameters</key>
      <dict/>
      <key>AMDescription</key>
      <dict>
      <key>AMDInput</key>
      <string>The files to be attached are passed in from the previous action.</string>
      <key>AMDRequires</key>
      <string>The Mail application must be running and there must be an outgoing message.</string>
      <key>AMDSummary</key>
      <string>This action attaches files to a Mail message.</string>
      </dict>
      <key>AMIconName</key>
      <string>Mail</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array>
      <string>Message</string>
      <string>Add</string>
      <string>Mail</string>
      <string>Image</string>
      <string>Photo</string>
      <string>File</string>
      <string>Document</string>
      <string>Send</string>
      </array>
      <key>AMName</key>
      <string>Add Attachments to Front Message</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Types</key>
      <array>
      <string>com.apple.mail.message-object</string>
      </array>
      </dict>
      <key>BundleIdentifier</key>
      <string>com.apple.Automator.AddAttachmenttoFrontMessage</string>
      <key>BundlePath</key>
      <string>/System/Library/Automator/Add Attachments to Front Message.action</string>
      <key>CFBundleShortVersionString</key>
      <string>1.1.1</string>
      <key>CFBundleVersion</key>
      <string>1.1.1</string>
      <key>Category</key>
      <array>
      <string>AMCategoryMail</string>
      </array>
      <key>Keywords</key>
      <array>
      <string>Message</string>
      <string>Add</string>
      <string>Mail</string>
      <string>Image</string>
      <string>Photo</string>
      <string>File</string>
      <string>Document</string>
      <string>Send</string>
      </array>
      <key>NSHumanReadableCopyright</key>
      <string>Copyright © 2004-2012 Apple Inc.  All rights reserved.</string>
      <key>NSPrincipalClass</key>
      <string>AMAddAttachmentsToFrontMessageAction</string>
      <key>UnlocalizedApplications</key>
      <array>
      <string>Mail</string>
      </array>
      <key>Warning</key>
      <dict/>
      </dict>
      <key>com.apple.Automator.AddColorProfile</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <false/>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>QuickTime Player</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryMovies</string>
      <key>AMDefaultParameters</key>
      <dict/>
      <key>AMDescription</key>
      <dict>
      <key>AMDSummary</key>
      <string>This action adds a color profile to QuickTime movie files. If a color profile present, it is replaced.</string>
      </dict>
      <key>AMIconName</key>
      <string>QuickTime</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array>
      <string>QuickTime</string>
      <string>Movie</string>
      <string>Change</string>
      </array>
      <key>AMName</key>
      <string>Add Color Profile</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMRequiredResources</key>
      <array/>
      <key>BundleIdentifier</key>
      <string>com.apple.Automator.AddColorProfile</string>
      <key>BundlePath</key>
      <string>/System/Library/Automator/Add Color Profile.action</string>
      <key>CFBundleShortVersionString</key>
      <string>7.7.3</string>
      <key>CFBundleVersion</key>
      <string>7.7.3</string>
      <key>Category</key>
      <array>
      <string>AMCategoryMovies</string>
      </array>
      <key>Keywords</key>
      <array>
      <string>QuickTime</string>
      <string>Movie</string>
      <string>Change</string>
      </array>
      <key>NSHumanReadableCopyright</key>
      <string>Copyright 2009-2012, Apple Inc.</string>
      <key>NSPrincipalClass</key>
      <string>AddColorProfile</string>
      <key>UnlocalizedApplications</key>
      <array>
      <string>QuickTime Player</string>
      </array>
      <key>Warning</key>
      <dict>
      <key>Action</key>
      <string></string>
      <key>ApplyButton</key>
      <string></string>
      <key>IgnoreButton</key>
      <string></string>
      <key>Level</key>
      <integer>0</integer>
      <key>Message</key>
      <string></string>
      </dict>
      </dict>
      <key>com.apple.Automator.AddFilestoPlaylist</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <false/>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>iTunes</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryMusic</string>
      <key>AMDefaultParameters</key>
      <dict>
      <key>chosenName</key>
      <string></string>
      <key>newName</key>
      <string></string>
      <key>playlistSource</key>
      <integer>0</integer>
      </dict>
      <key>AMDescription</key>
      <dict>
      <key>AMDRequires</key>
      <string>Audio files of the following types: AAC or protected AAC (.m4p), Apple lossless (m4a), AIFF (.aiff or .aif), Wave (.wav), or MPEG(.mp3).</string>
      <key>AMDSummary</key>
      <string>This action adds music files to the specified iTunes playlist. The songs are also added to the default library.</string>
      </dict>
      <key>AMIconName</key>
      <string>iTunes</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array>
      <string>Add</string>
      <string>File</string>
      <string>Playlist</string>
      <string>Music</string>
      </array>
      <key>AMName</key>
      <string>Import Files into iTunes</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Types</key>
      <array>
      <string>com.apple.itunes.track-object</string>
      </array>
      </dict>
      <key>AMRequiredResources</key>
      <array>
      <dict>
      <key>Display Name</key>
      <string>iTunes</string>
      <key>Resource</key>
      <string>com.apple.iTunes</string>
      <key>Type</key>
      <string>application</string>
      <key>Version</key>
      <string>4.6</string>
      </dict>
      </array>
      <key>BundleIdentifier</key>
      <string>com.apple.Automator.AddFilestoPlaylist</string>
      <key>BundlePath</key>
      <string>/System/Library/Automator/Import Files into iTunes.action</string>
      <key>CFBundleShortVersionString</key>
      <string>1.1.1</string>
      <key>CFBundleVersion</key>
      <string>1.1.1</string>
      <key>Category</key>
      <array>
      <string>AMCategoryMusic</string>
      </array>
      <key>Keywords</key>
      <array>
      <string>Add</string>
      <string>File</string>
      <string>Playlist</string>
      <string>Music</string>
      </array>
      <key>NSHumanReadableCopyright</key>
      <string>Copyright © 2004-2012 Apple Inc.  All rights reserved.</string>
      <key>NSPrincipalClass</key>
      <string>AMImportFilesIntoITunesAction</string>
      <key>UnlocalizedApplications</key>
      <array>
      <string>iTunes</string>
      </array>
      <key>Warning</key>
      <dict>
      <key>Action</key>
      <string>(* Action bundle to be suggested to add prior to this action to make the task safer, e.g. com.apple.Automator.CopyFiles, goes here. *)</string>
      <key>ApplyButton</key>
      <string>(* Button label for user to add proposed Action, e.g. Add. *)</string>
      <key>IgnoreButton</key>
      <string>(* Button label for user not to add proposed Action, e.g. Don't Add. *)</string>
      <key>Level</key>
      <integer>0</integer>
      <key>Message</key>
      <string>(* Warning message presented to user goes here. *)</string>
      </dict>
      </dict>
      <key>com.apple.Automator.AddMovieToIDVDMenu</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <true/>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>iDVD</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryMovies</string>
      <key>AMDefaultParameters</key>
      <dict/>
      <key>AMDescription</key>
      <dict>
      <key>AMDInput</key>
      <string>Movie files</string>
      <key>AMDRelatedActions</key>
      <array>
      <string>com.apple.Automator.AskForMovies</string>
      <string>com.apple.GetSpecifiedMovies</string>
      </array>
      <key>AMDRequires</key>
      <string>iDVD must be running and there must be an active iDVD menu.</string>
      <key>AMDResult</key>
      <string>Movie files</string>
      <key>AMDSummary</key>
      <string>This action adds the selected movie files to a menu in an iDVD project. The movies are added to the end of the menu.</string>
      </dict>
      <key>AMIconName</key>
      <string>iDVD</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array>
      <string>DVD</string>
      <string>Movie</string>
      <string>Menu</string>
      <string>Add</string>
      </array>
      <key>AMName</key>
      <string>Add Movie to iDVD Menu</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMRequiredResources</key>
      <array>
      <dict>
      <key>Display Name</key>
      <string>iDVD</string>
      <key>Resource</key>
      <string>com.apple.iDVD</string>
      <key>Type</key>
      <string>application</string>
      <key>Version</key>
      <string>4</string>
      </dict>
      </array>
      <key>BundleIdentifier</key>
      <string>com.apple.Automator.AddMovieToIDVDMenu</string>
      <key>BundlePath</key>
      <string>/System/Library/Automator/Add Movie to iDVD Menu.action</string>
      <key>CFBundleShortVersionString</key>
      <string>1.1.1</string>
      <key>CFBundleVersion</key>
      <string>1.1.1</string>
      <key>Category</key>
      <array>
      <string>AMCategoryMovies</string>
      </array>
      <key>Keywords</key>
      <array>
      <string>DVD</string>
      <string>Movie</string>
      <string>Menu</string>
      <string>Add</string>
      </array>
      <key>NSHumanReadableCopyright</key>
      <string>Copyright © 2004-2012 Apple Inc.  All rights reserved.</string>
      <key>NSPrincipalClass</key>
      <string>AMAddMovieToiDVDMenuAction</string>
      <key>UnlocalizedApplications</key>
      <array>
      <string>iDVD</string>
      </array>
      <key>Warning</key>
      <dict/>
      </dict>
      <key>com.apple.Automator.AddNumbersToFinderNames</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <false/>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>Finder</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryFilesAndFolders</string>
      <key>AMDefaultParameters</key>
      <dict>
      <key>caseIndicator</key>
      <integer>0</integer>
      <key>dateFormat</key>
      <integer>0</integer>
      <key>datePlacement</key>
      <integer>0</integer>
      <key>dateSeparator</key>
      <integer>0</integer>
      <key>dateToUse</key>
      <integer>0</integer>
      <key>defaultName</key>
      <string></string>
      <key>ignoreCase</key>
      <true/>
      <key>includeExtensions</key>
      <integer>0</integer>
      <key>insertionPosition</key>
      <integer>0</integer>
      <key>minimumCount</key>
      <string>2</string>
      <key>nameDateSeparator</key>
      <integer>0</integer>
      <key>nameSingleItem</key>
      <string></string>
      <key>numberLocation</key>
      <integer>0</integer>
      <key>numberSeparator</key>
      <integer>0</integer>
      <key>renameItems</key>
      <integer>0</integer>
      <key>renameType</key>
      <integer>0</integer>
      <key>replaceWithText</key>
      <string></string>
      <key>singleItemOption</key>
      <integer>0</integer>
      <key>startingNumber</key>
      <integer>1</integer>
      <key>textInput</key>
      <string></string>
      <key>textToFind</key>
      <string></string>
      <key>useLeadingZeros</key>
      <false/>
      </dict>
      <key>AMDescription</key>
      <dict>
      <key>AMDSummary</key>
      <string>This action changes the names of the Finder items passed into it.</string>
      </dict>
      <key>AMIconName</key>
      <string>Finder</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array>
      <string>Name</string>
      <string>File</string>
      <string>Folder</string>
      <string>Add</string>
      <string>Number</string>
      <string>Change</string>
      <string>Case</string>
      <string>Rename</string>
      <string>Date</string>
      <string>Time</string>
      <string>Set</string>
      <string>Text</string>
      <string>Find</string>
      <string>Replace</string>
      <string>Make</string>
      <string>Sequential</string>
      </array>
      <key>AMName</key>
      <string>Rename Finder Items</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Types</key>
      <array>
      <string>com.apple.cocoa.path</string>
      </array>
      </dict>
      <key>BundleIdentifier</key>
      <string>com.apple.Automator.AddNumbersToFinderNames</string>
      <key>BundlePath</key>
      <string>/System/Library/Automator/Rename Finder Items.action</string>
      <key>CFBundleShortVersionString</key>
      <string>1.3.2</string>
      <key>CFBundleVersion</key>
      <string>1.3.2</string>
      <key>Category</key>
      <array>
      <string>AMCategoryFilesAndFolders</string>
      </array>
      <key>Keywords</key>
      <array>
      <string>Name</string>
      <string>File</string>
      <string>Folder</string>
      <string>Add</string>
      <string>Number</string>
      <string>Change</string>
      <string>Case</string>
      <string>Rename</string>
      <string>Date</string>
      <string>Time</string>
      <string>Set</string>
      <string>Text</string>
      <string>Find</string>
      <string>Replace</string>
      <string>Make</string>
      <string>Sequential</string>
      </array>
      <key>NSHumanReadableCopyright</key>
      <string>Copyright © 2004-2012 Apple Inc.  All rights reserved.</string>
      <key>NSPrincipalClass</key>
      <string>AMRenameFinderItemsAction</string>
      <key>UnlocalizedApplications</key>
      <array>
      <string>Finder</string>
      </array>
      <key>Warning</key>
      <dict>
      <key>Action</key>
      <string>com.apple.Automator.CopyFiles</string>
      <key>ApplyButton</key>
      <string>Add</string>
      <key>IgnoreButton</key>
      <string>Don't Add</string>
      <key>Level</key>
      <integer>2</integer>
      <key>Message</key>
      <string>This action will change the names of the Finder items passed into it.  Would you like to add a Copy Finder Items action so that the copies are changed and your originals are preserved?</string>
      </dict>
      </dict>
      <key>com.apple.Automator.AddToFontLibrary</key>
      <dict>
      <key>AMAccepts</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      <key>Optional</key>
      <false/>
      <key>Types</key>
      <array>
      <string>com.apple.applescript.object</string>
      </array>
      </dict>
      <key>AMApplication</key>
      <array>
      <string>Font Book</string>
      </array>
      <key>AMCategory</key>
      <string>AMCategoryFonts</string>
      <key>AMDefaultParameters</key>
      <dict>
      <key>askForAlbum</key>
      <false/>
      <key>askForAlbumName</key>
      <false/>
      <key>chosenAlbum</key>
      <string></string>
      <key>importDestination</key>
      <integer>0</integer>
      <key>newAlbumName</key>
      <string>Imported Fonts</string>
      <key>validateFonts</key>
      <false/>
      </dict>
      <key>AMDescription</key>
      <dict>
      <key>AMDSummary</key>
      <string>This action adds the objects passed from the previous action to a font library in Font Book.</string>
      </dict>
      <key>AMIconName</key>
      <string>FontBook</string>
      <key>AMIconPath</key>
      <string>/System/Library/Frameworks/Automator.framework/Resources/ActionLarge.ti ff</string>
      <key>AMKeywords</key>
      <array>
      <string>Font</string>
      <string>File</string>
      </array>
      <key>AMName</key>
      <string>Add to Font Library</string>
      <key>AMProvides</key>
      <dict>
      <key>Container</key>
      <string>List</string>
      &l

  • Apple Application Support was not found. Apple Application Support is required to run iTunes. Please uninstall iTunes, then install iTunes again.

    I need help! I got my new iPod and I need to install iTunes on my laptop because I didn't have it before. I install it and I go to open it and it says "Apple Application Support was not found. Apple Application Support is required to run iTunes. Please uninstall iTunes, then install iTunes again." I've done that three times and it does the same thing... WHAT DO I DO???

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Running AppleScript in the background

    Okay, yet another problem I'm having that I'm going to bug the community here with.
    Is it at all possible to run AppleScript while doing other things? For example, if I wanted my AppleScript to hop online every hour and send me back information from my site could I have it do this while I do other things? Or will I have to wait until it's completed?
    Say I wanted to create a script that hopped on my site and sent me the post number of the last post, could I have it do this while I do other things?
    Something like
    tell application "Safari" to activate
    tell application "System events"
    tell process "Safari"
    (enter code here to get post number and send it to me)
    end tell
    end tell
    I've tried doing it like this and it definitely doesn't work at all if I don't have the Safari window selected at all times, so is there any way in which I can run script in the background while I work on other things or does AppleScript require full control of my computer while it's working?

    Save this script just like the others I posted. The script will do exactly as you asked.
    <pre style="width:630px;height:auto;overflow-x:auto;overflow-y:hidden;"
    title="Copy this code and paste it into your Script Editor application.">property helloWorld : "Hello World "
    global numChars, charNum, x
    on run
    tell application "System Events" to set isRunning to exists process "TextEdit"
    if not isRunning then tell application "TextEdit" to launch
    tell application "TextEdit"
    if isRunning then make new document
    set name of window 1 to "Hello World"
    set numChars to number of characters in helloWorld
    set charNum to 0
    set x to 0
    end tell
    end run
    on idle
    try
    tell application "TextEdit"
    if x = numChars then
    set x to 1
    else
    set x to x + 1
    end if
    set charNum to charNum + 1
    set theChar to character x of helloWorld
    set character charNum of document 1 to theChar
    end tell
    on error
    quit
    end try
    return 0.1
    end idle
    on quit
    continue quit
    end quit</pre>

Maybe you are looking for