How do I do the whole "select a hotkey" bit? Because "remove" is always grayed out.Remove
Select a hotkey and click Remove to unassign the hotkey.
// To act on it, we need to know what panel is currently active string $panel = `getPanel -withFocus`; // Try to change the bookmark ONLY if the active panel is a modeling view if(`getPanel -typeOf $panel` == "modelPanel"){ // you can change "-rightSide" flag to any of the appropriate bookmark flags // for the other hotkeys viewSet -rightSide `modelEditor -q -camera $panel`; }