slyfox Posted December 13, 2022 Share Posted December 13, 2022 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
vitor Posted December 14, 2022 Share Posted December 14, 2022 Are you looking for the Dispatch Key Combo Output, or to emulate media key presses? Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now