Posts By: Gary Rosenzweig

10/31/17
I played around with a JXA (JavaScript for Automation instead of AppleScript) script that searches for duplicate photos in your Photos library and marks them with a keyword. It turned out to be pretty simple. But it could be dangerous if you plan to use it to permanently deleted photos.Here is the script text: var Photos = Application("Photos"); Photos.includeStandardAdditions = true; var currentSelection = Photos.selection(); var photoDataList = []; for (var item of currentSelection) { var photoInfo = String(item.date())+" "+String(item.size())+" "+String(item.name()); var isDup = false; for(var i=0;i<photoDataList.length;i++) { if (photoDataList[i] == photoInfo) { isDup = true; break; } } if (isDup) { var keys = item.keywords(); if (keys == null) keys = []; item.keywords = keys.concat(["duplicate"]); } else { photoDataList.push(photoInfo); } }
10/31/17
If you have several printers on your network, it can sometimes be difficult to know which one is which. But you can name your printers to make it easier. Names will carry over to other users on your Mac, but not to other Macs or devices on your network.
10/30/17
The iPad Dock is a persistent Home screen feature that allows you to easily switch to your most-used apps. You can customize the left side of the Dock, while the right side shows your most recently used apps. You can also bring the Dock up inside of other apps for quick switching or multitasking.
10/27/17
If you are new to Mac, you may not yet be using the Notes app. This is a handy built-in app where you can store small pieces of text and create lists. When you use iCloud, your Notes sync across all of your devices, so you can create them and edit them anywhere. You can also share notes with other iCloud users.
10/26/17
Some people may prefer digital iTunes gifts instead of physical CDs and DVDs. You can send a specific album, movie, app or book as a gift to another Apple user from within iTunes. You can include a special message and even schedule the gift.
10/25/17
Apple Music users can easily download playlists, albums, artists and songs for offline listening. After a while, you may have a large collection of downloaded music taking up space on your iPhone. You can easily remove these downloads in the Music app, or in the Settings app.
10/24/17
Have a look at my menu bar icons. I'll explain where each one comes from and perhaps you'll find something you can use as well.
10/24/17
You can use the Photo Booth app on your Mac to simulate a green screen with any stable background. You can use some preset replacement backgrounds, or your own image. The key is to use your Mac's built-in camera and have a stable background and surface for your Mac.
10/23/17
A useful new feature of Photos 3.0 is the ability to see all of your imported photos organized by the time they were imported. You can see all of your imports going back in time. You can use this view like any other, jumping directly to editing or organizing.
10/20/17
If you are new to Mac, then you may not be familiar with the modifier keys like Command, Option and Control. These each have special symbols that you will see in articles and the menu bar. Learn how to use these important modifier keys and how they differ from Windows modifier keys.
10/19/17
You can no longer use your Mac to arrange apps on your iPad or iPhone home screens. But thanks to iOS 11, it is now much easier to do so directly on your iOS device. You can quickly and easily move one app. You can also select multiple apps and move them from screen to screen or into a folder.
10/18/17
I've had people ask me about viewing and editing photo metadata on the iPhone or iPad. It takes a third-party app to do that. This one called MetaPho will allow you to view, change and delete metadata.
10/18/17
When editing text in TextEdit, Pages and other apps, you'll often see options for Kern, Ligatures and Baseline. These adjust the character spacing, combine some letters into a single character, and adjust the vertical positions of the letters. See examples and learn how to use these text features.
10/17/17
The new iTunes version 12.7 removes the ability for iTunes to easily store and sync ringtones to your iPhone. But the method for manually adding and removing ringtones is easier than ever. Learn how to add custom ringtones to your iPhone through iTunes on your Mac.
10/16/17
With the latest versions of iTunes and iOS you can set up a social profile and share playlists and music your are currently listening to with your friends. You can also follow artists and special Apple Music channels to see the latest news and media from your favorite artists.
10/13/17
New Mac users may not know about TextEdit, a simple but deep text editing and word processing tool that comes with your Mac. You can use TextEdit to create documents in cases when a full word processor like Pages or Microsoft Word isn't necessary. TextEdit has two modes: plain text and rich text. You can use the first for writing, notes and coding. You can use the second for word processing. TextEdit also allows you to open Microsoft Word documents which is useful if you are sent one but haven't bought Word.
10/12/17
A new feature in iOS 11 is the ability to zoom in on malls and airports and see inside with accurate maps of interior locations. This can be handy for navigating indoors in these crowded and often confusing places. However, indoor maps are only available for a handful of locations at the moment, with more coming soon.