I'm afraid there is no other way of changing the hotkeys. But it's not really that complicated, you will just have to assign hotkeys and accept if there's other functions being used by that key. Most of the time you won't be using these functions that are assigned by default anyway.
Aw crap Unfortunately It is the useful things that seem to be bugged, for example, I can hotkey the bevel tool itself, but not the operation with the bevel [b]menu[/b] that allows for better control.
Aw crap Unfortunately It is the useful things that seem to be bugged, for example, I can hotkey the bevel tool itself, but not the operation with the bevel [b]menu[/b] that allows for better control.
Yeah it seems like a max bug or something. I have this same thing for some stuff on my work computer but not on my personal computer.
Yea there are some tools that are broken / wont work if assigned a key in the hotkey editor. Years ago the bridge tool was that way (not sure if it still is), so I wrote a script to do it instead and just hotkeyed that.
If you want to set a hotkey for Bevel options window, here's a script I just put together. Run it and then hotkey g_bevel under GregsScripts:
macroScript g_bevel<br>category: "GregsScripts"<br>buttonText: "Bevel"<br>(<br> erStat = showEndResult<br> showEndResult = false<br> setCommandPanelTaskMode #modify<br> curSelStack = modpanel.getCurrentObject()<br><br> if (classOf curSelStack == Editable_Poly) do (<br> facCount = $.selectedFaces.count<br> if (subObjectLevel == 4) and (facCount >= 1) do (curSelStack.popupDialog #Bevel)<br> )<br> if (classOf curSelStack == Edit_Poly) do (<br> facCount = ((curSelStack.getSelection #Face) as array).count<br> if (subObjectLevel == 4) and (facCount >= 1) do (curSelStack.popupDialog #Bevel)<br> )<br> <br> showEndResult = erStat;<br> CompleteRedraw()<br>)<br>
You probably would like to try "KeyHydra" for 3Dsmax you can manage keyboard shortcuts visually, and it add multitap and context sensitive shortcuts to 3dsmax. Www.onikanabo.com/keyhydra it's also available on gumroad. A free trial do exist as well.
Replies
If you want to set a hotkey for Bevel options window, here's a script I just put together. Run it and then hotkey g_bevel under GregsScripts: