Hi, I think I may have asked something like this a few months ago. Is there a way yet of executing a an action or command from ahk using its command number found on the right hand column in the actions window? If not, would this be a good feature request?
If AHK supports sending raw Windows messages to the Reaper main window, it should be possible. In the Windows C API the call is like : SendMessage(hReapermainWindow,WM_COMMAND,CommandID ,0); Which means the target window is hReapermainWindow, which needs to be the correct window handle of Reaper's main window, WM_COMMAND is the message type that is sent, CommandID would be the number found from the actions list and 0 is for an unused (here) parameter. AHK will probably have a different syntax for sending such messages, if it supports it.
Xenakios, thanks very much for that. I'm trying but nothing so far. I'm asking around at the ahk forum too. Some of them are very knowledgeable. I'm going to have to quit for the evening though. Ahk has a command called SendMessage and one called PostMessage, and I couldn't get either of them to work so far. The ahk documentation says it supports Windows messages, but when I go to the list of them I see they are all apparently hex base numbers. I tried converting the Reaper command number to hex just to see if it would work and no luck. Thanks!
--------------------- Dave R. '98 M3 Sedan AA Supercharger AA Gen3 Exhaust UUC Lightweight Flywheel UUC Shortshifter Clear Corners Ground Control Coilovers and RSMs ZKW's DDE's and HID Aluminum Pedals 18" BBS RGRs Bavarian Autoworks Stainless Steel Brake Lines
Success! !!!!!!!!! Syntax is right! ^8:: SendMessage,0x0111,40021,0,,ahk_class REAPERwnd Return Means that Ctrl-8 opens project settings! Yesssss! Cheers, frog_jr
--------------------- 2002 W203 M112K with insane amount of mods "new pic on last page" 2008 W204 M272 with not so much mods. wants 307hp 7200 redline engine from SL350 For Sale: Toyo T1R tires 265/30/19 255/30/19. my lost your gain For Sale:authentic Carlsson exhaust tip
One of my mst helpful instructors over at the ahk forum, SKAN, provided a list of Reaper commands pre-arranged in a menu to include in any script. They are available at He used the following command syntax: ;----------------------------------------------------- #IfWinActive, ahk_class REAPERwnd ^+#5::PostMessage, 0x111,40015,0,, A ; Render to File ^+#6::PostMessage, 0x111,40007,0,, A ; About Reaper #IfWinActive ;-----------------------------------------------------