Quote:
I need to launch commands to the software that I'm using, through some already prepared shortcuts inside the software, like ctrl-w, ctrl-alt-a, etc. (I have many of them). I would prepare some Items from a submenu to launch that commands.
Can someone help me writing an example of what I need, to do that? A script, a function, or just an action.
Hello loopdesign,
Be patient cause RM need a little moment for learning but you will be propably addict like me! read the docs they are made well...
I'm not an expert so maybe someone could correct my says
If i understand you want to send shortcuts to your app ?.. Context sensitive is the best way for that, after little configuration you will obtain a menu that can bring up your app's choices.It will contain items that can send shortcuts to your app..
The concept is to:
1 - create a function in "My functions.ahk" that use send command
2 - create a menu with Radial Menu Designer that contain items who call your function
3 - Load your menu in "My radial menus.ahk"
4 - Create a hotkey in My "hotkeys.ahk" that can show context-sensitive menu to specified apps
------------------
1 -
Code:
Send(What) {
Send, %What%
}
2 - You already know that..!?
3 - It's an example:
Code:
RMApp_LoadMenu(59, RM "\Menu definitions\Context-sensitive\Explorer.txt")
4 -
Code:
XButton1::
IfWinActive, ahk_class REAPERwnd
MenuToShow := 59
else
IfWinActive, ahk_class CabinetWClass
MenuToShow := 59
RMApp_MyRMHandler2(MenuToShow)
return
Someone can tell if i'm wrong cause i must say that i don't understand all i'm writing, but you are know ready to test this wonderful feature!!
Ps: Sorry for bad english