leoofborg Posted October 20, 2015 Share Posted October 20, 2015 (edited) I know that Alfred has key bindings for the Mini-Player per these helpnotes: https://www.alfredapp.com/help/features/itunes/ I have a two part Feature Request: * I'd like key bindings that work "all the time" (globally, Player invoked or not) like Simplify.app. All I need is global key bindings, not another Mini-Player. Whether the Mini Player is "frontmost" or not. I would use Cntl-Opt-Cmd+ keys for stars, up/down arrow for volume, L/R arrow for prev/next, etc. Simplify allows me to define these key bindings, but it's a bit flakey on El Cap. So maybe this means.... * I'd like custom key bindings in the Alfred Prers that reflect what's in Alfred's Remote.. Or, I'd like the ability to assign key bindings LOCALLY to what is in the Remote. Preferably this could be in the Prefs? Maybe adding "Volume Up" and "Volume Down" as keywords and bindings? I ask because I'm using Alfred's default Cntrl-Option key combos for Window management, also I don't see the point of bringing a Mini-Player to front just to do next/previous control (what Simplify currently does). Thanks for reading... -Leo Edited October 20, 2015 by leoofborg Link to comment Share on other sites More sharing options...
deanishe Posted October 20, 2015 Share Posted October 20, 2015 You can do a lot with iTunes via AppleScript. You could connect Hotkeys to Run Script actions with some of these: -- start playback tell application "iTunes" to play -- stop playback tell application "iTunes" to pause -- toggle play/pause tell application "iTunes" to playpause -- play previous track tell application "iTunes" to previous track -- play next track tell application "iTunes" to next track -- turn volume up by 10% tell application "iTunes" to set (its sound volume) to (its sound volume) + 10 -- turn volume down by 10% tell application "iTunes" to set (its sound volume) to (its sound volume) - 10 -- toggle mute on/off tell application "iTunes" if (its mute) then set (its mute) to false else set (its mute) to true end if end tell Link to comment Share on other sites More sharing options...
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