Solved Apple music app Windows change keyboard command to pause and play back to original


aaron106

Well-known member
Local time
9:28 AM
Posts
106
OS
Windows 11
Hi on the Apple music app of Windows, to pause and play you now have to press ctrl+space when it was originally just pressing space on iTunes. I find this very frustrating. Even on the MacOS version of Apple music is just simply pressing space. Do you know how I can change this back to pressing spacebar.
 
Last edited:

My Computers

System One System Two

  • OS
    Windows 11
the attached exe will run in the tray. it will allow spacebar to play/pause inside apple music. it is made from an ahk script i made. if you want it to run at startup, make a shortcut to the exe and place the shortcut in Shell:Startup folder.

ahk code inside exe:
Code:
#Persistent
#SingleInstance Force
SetTitleMatchMode, 2

GroupAdd, AppleMusic, ahk_exe AppleMusic.exe

#IfWinActive ahk_group AppleMusic
Space::
Send {Media_Play_Pause}
return
#IfWinActive
 

Attachments

My Computer

System One

  • OS
    Windows 11 Pro
@dacrone Wow thank you so much! I used powertoys for this but it didn't work, i have 1 question if i'm going to be using your .exe to open up Apple Music, does the app still get updated from the store?
 

My Computers

System One System Two

  • OS
    Windows 11
@dacrone Wow thank you so much! I used powertoys for this but it didn't work, i have 1 question if i'm going to be using your .exe to open up Apple Music, does the app still get updated from the store?
the script exe i provided does not open Apple Music. it will run in the system tray (by your clock) and when you have Apple Music as the active window and playing audio, Spacebar will send Ctrl+Spacebar (so it is back to the mapping that you wanted). It does nothing if its open and Apple Music is not running.

EDIT:
posted simultaneously. correct.
 

My Computer

System One

  • OS
    Windows 11 Pro
absolutely; no worries. sorry i missed these threads when they were posted.
 

My Computer

System One

  • OS
    Windows 11 Pro
Back
Top Bottom