Reset Plays no longer available?

Is anyone else noticing the "Reset Plays" option removed from iTunes 12.6? I am not seeing it available, either from Menu or right-click.

MacBook Pro (Retina, 15-inch, Mid 2014), iOS 10.3, null

Posted on Apr 2, 2017 10:42 AM

Reply
15 replies

Sep 21, 2017 3:44 AM in response to hanshotfirst1138

Script Editor is an application on Mac computers for editing AppleScript scripts.


A script is a program that is supplied in plain text, that you could potentially edit to change its behaviour, or just examine to see what it does.


See LastPlayedNever for the Windows version of this script.


If you've installed iTunes 12.7 there is now a Reset button in the multi-track Get Info dialog on the Details tab, so the scripting workaround is only needed if you also want to reset the skip count and the last played and skipped dates which iTunes doesn't change.


tt2

May 6, 2017 6:50 AM in response to famillier

If you want to reset the plays for a batch of tracks then here is a short AppleScript to replace the missing reset plays feature. In addition it clears any skips, or bookmark position and the last played and skipped dates. You can comment out any of the actions that you don't want.


Copy and paste into the script editor, save it as LastPlayedNever in ~/Library/iTunes/Scripts. Select one or more tracks and call the script from the scripts menu in iTunes.

User uploaded file

-- LastPlayedNever - V1.0 - © Steve MacGuire - 2016-05-18

tellapplication "iTunes"

ifselection is not {} then

setmySelection to selection

repeat with aTrackinmySelection

setplayed countofaTrack to 0

set played dateofaTracktomissing value

set skipped countofaTrack to 0

set skipped dateofaTracktomissing value

ifaTrack is bookmarkable then set bookmarkofaTrack to 0

end repeat

end if

end tell

tt2

Jul 9, 2017 4:22 AM in response to allenfrommethuen

Hi Allen,


As shown in tt2's screenshot above, the Scripts menu is identified by a little scroll symbol that appears up at the top of the screen between Window and Help, but only after you've installed something in the folder ~/Library/iTunes/Scripts.


You may need to create this folder, if it doesn't exist. Start by opening the Library folder: go to the Finder, tap on the Go menu, then hold down the Option (or Alt) key, which will cause Library to appear in the menu that drops down. From there you can find a subfolder called iTunes and make a new folder called Scripts inside there.


Cheers

Jul 9, 2017 8:29 AM in response to richard grant

Thanks Richard. 🙂


You can also run the script directly from the Script Editor if you don't want to bother messing around inside the ~/Library folder. I just tried it now on a new system and I had a hard time doing it from the Save dialog in Script Editor. In the end I gave up and put the file on my desktop, then used Finder to make the folders and move the script into the correct place.


tt2

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Reset Plays no longer available?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.