You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you may already know, there is an awful bug in Jamoma for windows : when Jamoma package is installed, many default Max key shortcut are disabled (including ctrl-s to save patcher !!)
Shortcuts are defined into Jamoma/Max/library/source/JamomaForMax.cpp.
here is the code that is enabled currently (I've added some comment to explain each line :
// J -- Jamoma: a new object box with "j." in it
atom_setsym(a+0, SymbolGen("k")); // access to the key settings
atom_setsym(a+1, SymbolGen("patcher")); // in the patcher case
atom_setsym(a+2, SymbolGen("inserttextobj")); // what to do
atom_setsym(a+3, SymbolGen("j.")); // for which key
object_method_typed(max, SymbolGen("definecommand"), 4, a, NULL);
First step in order to address this is to identify what shortcuts need to go. @matcham - I'm assigning to you. When you have responded, you can assign back to me, and I'll do the changes to the code.
The text was updated successfully, but these errors were encountered:
@matcham :
@theod :
First step in order to address this is to identify what shortcuts need to go. @matcham - I'm assigning to you. When you have responded, you can assign back to me, and I'll do the changes to the code.
The text was updated successfully, but these errors were encountered: