The "Seek Forward" menu command works when the Spotify window is minimized. It just doesn't work if Spotify isn't the app you are currently "using" (Spotify name on menubar).
There might be a method to control Spotify in the background using a third-party app such as "Keyboard Maestro" but I'm not sure.
The "Seek Forward" menu command works when the Spotify window is minimized. It just doesn't work if Spotify isn't the app you are currently "using" (Spotify name on menubar).
There might be a method to control Spotify in the background using a third-party app such as "Keyboard Maestro" but I'm not sure.
I think it might be possible with scripting (one for FF and another for RW) and jumping through a LOT of system permissions to let the scripts control things. Then…assigning key combos to run them.
Maybe someone can run this down. I know that these scripts will actually do the FF and RW…when given permission:
FF:
AppleScript:
tell application "System Events" to tell process "Spotify"
click menu item "Seek Forward" of menu 1 of menu bar item "Playback" of menu bar 1
end tell
RW:
AppleScript:
tell application "System Events" to tell process "Spotify"
click menu item "Seek Backward" of menu 1 of menu bar item "Playback" of menu bar 1
end tell