Productivity Apps Mac Task Automation

Jul 16, 2018  With an iPad Pro, you can even use the Apple Pencil to draw in Mac apps. Duet Display Price: $19.99 for iOS, plus free companion Mac app. Your Mac comes with Automator, a handy tool to organize files, run timed events, resize photos, and more.

When you find yourself performing the same task over and over on your Mac, you may wish some developer somewhere would code up a nice little app to make your job a bit easier.

There’s no reason to wait for an app when you can make use of one or more of the many Mac automation tools that are already available. Your Mac comes equipped with AppleScript, Automator, and Terminal, all of which can be used to create your own custom tools to make repetitive tasks easier.

AppleScript and Terminal require a bit of coding to create an app or script, but Automator uses a graphical interface to allow you to create custom apps without having to learn a complex programming language. So, we’re going to start our look at how to automate tasks on the Mac with Automator.

By the way, if you’d like to explore how Terminal can be used to create scripts, the Rocket Yard has a two-part introduction to the Mac’s Terminal app that you can check out.

Using Automator
Automator has a simple drag-and-drop interface you can use to build simple to complex workflows that can automate those repetitive tasks that just take time away from other things. Workflows are made up of individual tasks that you drag into place in the workflow. You can then tweak each task in the workflow to meet your specific needs. Once it’s ready, the workflow can be used much like an app, service, or folder action.

(Automator has 6 templates that can be used for creating different types of workflows.)

Automator Apps, Services, and Folder Actions
Automator supports creating the following types of workflows:

Workflows: These are a series of actions that you run from within Automator. Automator must be running for the workflow to work.

Applications: These are self-running workflows. They don’t need Automator to be active in order to work.

Services: Services allows you to build workflows that are tied to contextual menus that may appear within another app’s service menu.

Jul 04, 2020  The open-source software supports pretty much every media file you can muster, from AAC to Theora, while offering speedy video conversion. Best open source mac software. Thunderbird is a free, open source, cross-platform e-mail, news and instant messaging client. The project strategy is modeled after Mozilla Firefox. It supports POP (storing mail locally on your hard drive so that it can be accessed without an internet connection), and IMAP. Open Source Mac is a simple list of the best free and open source software for Mac OS X. We aren't trying to be a comprehensive listing of every open-source mac app, instead we want to showcase the best, most important, and easiest to use. The best open source software 2020: free, open software for home or business By Cat Ellis, Jacob Parker 27 February 2020 Open source apps for Windows, Mac, and Linux. Overall, it’s probably the best open-source system cleaner you’ll find. Platforms: Windows, Mac, Linux, Android. The great open-source behemoth of video-game emulation, Retroarch is an almost unfathomably ambitious hivemind venture. It contains piles of emulators for all the most popular consoles as “cores,” which are.

Printer Plugin: Allows you to create workflows that appear in the Print dialog box.

Productivity Apps On Mac

Folder Actions: This is a workflow that you attach to a folder. When an item is added to the folder, it triggers the attached workflow to run.

Calendar Alarms: These workflows are triggered by events in the Calendar app.

Image Capture Plugin: These workflows are available from within the Image Capture app.

Dictation Commands: You can create workflows that are triggered by specific dictation commands.

We’re going to use Automator to create two different types of workflows. The first is a service that will allow you to select any word or phrase you come across and look up its meaning in Wikipedia. We’ll also show you how to modify this service, so you can use other sites to perform the lookup instead.

In our second example, we’ll create an application to batch resize images automatically. You could also use this workflow as a Folder Action, if that’s a better fit for your needs.

Automator Basics
Launch Automator, located at /Applications.

An Open dialog box will appear. Click the New Document button.

If you’ve used Automator before, and it opens to an existing workflow, select New from the File menu.

A sheet will open displaying the type of workflows you can create. Since the first workflow we’ll build is a service, select the Service item, and then click the Choose button.

(The basic Automator layout. The sidebar and workflow pane are where you’ll spend most of your time.)

You’re now looking at the basic Automator interface. It consists of a toolbar on top, a sidebar that contains all of the Actions and Variables that you can use, a summary box just below the sidebar that briefly describes the item selected in the sidebar, and finally, the main workflow pane, where you’ll build your workflow by dragging items from the sidebar.

The sidebar can contain either Actions or Variables, depending on which item is selected in the toolbar just above the sidebar. Actions are a single step that Automator can perform, such as Open Finder Item, Search Spotlight, or Speak Text. Variables are holders of information such as Current Day, Today’s Date, Computer Name, or Operating System Version.

Lookup Service
If you haven’t already done so, launch Automator and select Services as the format for your new workflow.

Since you selected Services, AppleScript automatically prepended an action at the very beginning, which states that the service receives selected text in any application. This allows you to highlight any text in any application, and have the text sent to the next action in the workflow.

Make sure Actions is selected at the top of the sidebar.

Select Utilities in the first sidebar column. The first column is used as a filter for what appears in the second column. You can also select Library in the first column, and all possible actions will appear in the second column.

In the second column, locate the item named Run AppleScript.

Drag the Run AppleScript item to the workflow pane.

Although we said that you don’t need to write any code to create Automator workflows, we’re going to add a smidgen of code, just to show you how versatile Automator is.

In the Run AppleScript action that appears in the workflow pane, replace the lines labeled:

on run {input, parameters}

Productivity apps mac task automation download

(* Your script goes here *)

Productivity Apps Mac Task Automation Download

return input

end run

with:

onrun {input, parameters}

return “http:/www.wikipedia.org/wiki/” & (input as string)

endrun

(The Run AppleScript action filled in with the code to retrieve information from the Wikipedia website.)

So far, we have a service that will grab the text you highlight in any application and send it off to Wikipedia to be looked up. The results of that lookup will be passed to the next action we attach.

In the sidebar, select Internet in the first column.

In the second column, locate the item labeled Website Popup.

Drag the Website Popup item to the Workflow pane; be sure to position the item just below the Run AppleScript item.

Data task automation

Automator will show the two actions as connected, with a chevron from the Run AppleScript action pointing to the Website Popup item.

The Website Popup item will display the results of the Wikipedia search in a scrollable popup window. You can set the size of the popup window, its position on your display, the user agent (the browser type that is used to query the Wikipedia site), and the Output.

For this example, set the options as follows; you can go back and experiment with them later:

  • Site Size: Medium
  • User Agent: Safari
  • Output: Selected Text
  • Position: Centered

All that’s left is to test the workflow. Unfortunately, Services takes input from outside of Automator, so we must add an action at the beginning to provide text to the service.

Select Text from the sidebar’s first column.

Locate Get Specific Text and drag the item in front of the Run AppleScript action in the workflow pane. When the green plus sign appears, you can drop the Get Specific Text.

In the Get Specific Text item, enter the text you would like to have looked up on Wikipedia. In this example, let’s look up Automator.

In the top right-hand corner of Automator’s toolbar, press the Run button.

The workflow you created will be run and a popup window should open with information about Automator from the Wikipedia website. Just below the popup window will be OK and Cancel buttons. Click the OK button when you’re done.

(The complete Wikipedia lookup workflow.)

With the test complete, you can remove the Get Specific Text action from the workflow by clicking the close (X) button in the top right corner of the action.

The last step is to save the service so you can use it on your Mac.

Select File, Save, and then enter a name for the service. The name will appear as the menu name in any app’s Service menu. Keep the name short but descriptive. For our example, we suggest “Search in Wikipedia” with no quotes.

Other Lookup Services
By just changing the entry in the Run AppleScript action, you can change the site used to look up information. Here are three additional sites, along with the change to the Run AppleScript action needed.

Bing

onrun {input, parameters}

return “https://www.bing.com/search?q=” & (input asstring)

endrun

DuckDuckGo

onrun {input, parameters}

return “https://duckduckgo.com/?q=” & (input asstring)

endrun

Wolframalpha

Productivity Apps Mac Task Automation System

onrun {input, parameters}

return “https://www.wolframalpha.com/input/?i=” & (input asstring)

endrun

Resize Images
Our second example will be creating an application to resize images.

(The completed resize images workflow Can take either a single file or a folder full of images, make a copy of them to make sure the originals are unchanged, and then resize the copies, leaving the newly resized images in a specified folder.)

Launch Automator, select New from the File menu, and then select Application as the type of workflow to create. Click the Choose button.

In the sidebar, select Files & Folders in the first column, and drag Get Folder Contents from the second column to the workflow pane.

Preview supports a large set of image file types, including JPEG, PNG, PSD, and TIFF. When you receive a photo that you can’t open in your photo editing app, you may be able to convert it to a file type you can use. How to convert graphics file types. Nov 19, 2016  Preview is the default app for viewing images and PDF files on your Mac. So, any time you double-click on, or otherwise launch, one of those files, it'll open in Preview. If, for some reason, another app has taken over responsibility for a certain file type, and you want to give it back to Preview, you make the change right in the Finder. Sep 20, 2019  As another helpful piece in our “New to Mac” series, this tutorial walks you through the Preview app on your Mac. This useful tool is the default viewer for images and PDFs. You can use it for more than previews, however. Preview offers markup and annotation tools along with features for merging PDF files and signing documents. Where is my preview app on my mac. In the Preview app on your Mac, open a PDF or image that you want to view. Do any of the following: Zoom in or out: Choose View Zoom In or View Zoom Out. On some trackpads, you can pinch your thumb and index finger closed or open on the trackpad. See Use trackpad and mouse gestures. View the original size of an image or page: Choose View.

In the Get Folder Contents, place a checkmark in the “Repeat for each subfolder found” option.

In the sidebar, select Files & Folders, and then drag Copy Finder Items to the workflow pane.

In the Copy Finder Items action, use the dropdown menu to select Other, then either navigate to a folder you wish to use to store the images that will be resized, or click the New Folder button to create a new location to store the results of the workflow.

In the Sidebar, select Photos from the first column, and then from the second column, drag Scale Images to the workflow pane.

In the Scale Images action, use the dropdown menu to choose to either scale By Percentage or To Size (pixels). In the field, enter either the percentage to scale by, or the number of pixels wide the photo should be scaled to.

From the File Menu, select Save. Give the workflow a descriptive name. You may want to include the size or percentage the app will adjust an image to, such as Resize 1280, or Resize 70p. Be sure to choose a good location to save this workflow to. I put mine on the Desktop, where I can drag any image or folder of images onto the app to have them automatically resized.

You can create multiple versions of this workflow, each for different sizes to resize the images to.

Doing More With Automator
Automator can do a lot more than what we showed you here; it can build very complex workflow apps that can simplify your work processes. Take some time to go through the various Automator actions; remember, the description of each action appears below the sidebar.

You can also use Automator’s ability to record what you’re doing to build a workflow skeleton that you can tweak to meet your needs. Simply open Automator, select New from the File menu, then select Application as the type of workflow to create, and click the Choose button. Next, click the Record button in the top right corner, and then perform the task you wish to automate. Automator will try to create a duplicate of your workflow for you.

Recorded Automator tasks tend to need a lot of work to get them running without a hitch, but they’re a good starting point for creating your own workflows.

Be Sociable, Share This!

Prices, terms, and availability subject to change without notice. Not responsible for typographical, technical, or descriptive errors of products herein.
OWC is on-site wind turbine powered at 8 Galaxy Way, Woodstock, IL 60098 1-800-275-4576 +1-815-338-8685 (International)
All Rights Reserved, Copyright 2018, OWC – Since 1988