Autodesk 3ds Max 2008
I've had this issue forever and it drives me insane.
When in Unwrap UVW mode, you can press the number hotkey to enter sub-object mode (vertex, edge, polygon, etc...) Pressing the same button again will exit you out of sub-object mode.
This drives me absolutely bat shit crazy when working. I'm usually zipping through my UV's at record speed because I'm awesome, but constantly going out of sub-object mode and trying to edit something, and then realizing that I clicked out of sub-object mode.
My expectation - Numeric hotkey enters sub-object mode, but pressing the number again does nothing - you STAY in that sub-object mode. If I want to EXIT sub-object mode I'll set my own damn hotkeys up for that.
Is there a menu option I am missing to turn this "feature" on or off without having to get Tyler to make me a custom script?
:poly127:
Replies
why do you press the same numeric keys in the first place?
Perhaps there's the same thing for this problem as well?
hit "keyboard shortcut override" and try again.
You will be amazed!
cheers
don't change the macro through the customize UI as i told before
go to
C: \Program Files\Autodesk\3ds Max 2012\UI\MacroScripts\Macro_SubObjectLevels.mcr
and there
On Execute do
(
If SubObjectLevel == undefined then Max Modify Mode
Try(If SubObjectLevel != 1 then SubObjectLevel = 1 Else SubObjectLevel = 0)Catch()
)
and remove Else SubObjectLevel = 0
and this for all sub object level.
You can then create a new macro based on those ones to assign SubObjectLevel = 0 to 6 key for example.
MacroScript SubObject_0
Category:"my_macros"
Tooltip:"Sub-Object Level 0"
(
On Execute do
(
If SubObjectLevel == undefined then Max Modify Mode
Try(If SubObjectLevel != 0 then SubObjectLevel = 0)Catch()
)
)
where my_macros is what you want as long as you remember it.
and this will work for edit poly/mesh/spline aswell.
If you press it again it will re-enter the last sub-object level you where in, which is why its a toggle. I don't think this is bound to a key by default, but I bind mine to 6.
It can be found in: Main Menu > Customize > Customize UI > Keyboard tab > Group: Main UI > Category: All Commands > Sub-object selection toggle
I did this before, but couldn't remember.
I don't see Select Tool though, do you mean something else? Or where is it under?