Jump to content

Help with Plexamp Next Track Keystroke


Recommended Posts

I previously used Apple Music and used this script to mark a track Unloved and play the next track.

 

echo '
(function() {
  var track = Application("Music").currentTrack();
  var trackDisliked = track.disliked();
  var notification = (trackDisliked ? "UnDisliked" : "Disliked") + ": " + track.name();
  track.disliked = !trackDisliked;
  return notification;
})()' | osascript -l JavaScript

 

I switched to Plexamp. Currently, my keyboard shortcut in Plexamp is set to "Fn+Pg Down" to mark the track as disliked. I need Alfred to also simulate "Next Track" keystroke, which is under F8 keyboard key on my Mac. Anyway to do this?

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...