Jump to content

A very basic question about 3ds Max 2013


chansoobyeon
 Share

Recommended Posts

They should automatically be there. As far as I know, there is no way to turn them on/off. Have you changed your viewport background color? Perhaps you have same or similar colors for both your viewport background and viewport names.

 

Though posting this question in the 3ds Max forum and not general discussions may lead to more answer. This isn't a general discussion topic, it's specific to Max and belongs in Max.

Link to comment
Share on other sites

They should be there right after installation. If not , it's most of the times a graphics hardware or GFX driver problem. Post your hardware specs and wether you use nitrous or not ...

 

@Scott:

 

they can be turned off (toggled) using the following small maxscript snippet

viewportbuttonMgr.EnableButtons = false

 

 

and the following to turn them on again

 

viewportbuttonMgr.EnableButtons = true

 

Curious fact: the menu functionality is still there when the menu display is turned off

Edited by spacefrog
Link to comment
Share on other sites

They should be there right after installation. If not , it's most of the times a graphics hardware or GFX driver problem. Post your hardware specs and wether you use nitrous or not ...

 

@Scott:

 

they can be turned off (toggled) using the following small maxscript snippet

viewportbuttonMgr.EnableButtons = false

 

 

and the following to turn them on again

 

viewportbuttonMgr.EnableButtons = true

 

Curious fact: the menu functionality is still there when the menu display is turned off

 

Interesting. But there isn't a menu option to turn these off (outside of maxscript) is there? We only know how much they've monkeyed with the UI options lately.

Link to comment
Share on other sites

Some UI things are easy to create yourself - like buttons

 

eg. enter the following text in the maxscript listener and drag&drop onto a toolbar will create a button to toggle the viewport menu

 

viewportbuttonMgr.EnableButtons = NOT (viewportbuttonMgr.EnableButtons)

If you want this to be accessable in a more organized way in the UI configuration dialog ( for buttons, menus. keyboard shortcuts ), enter the following text in a new, empty maxscript editor doc ( no filename required ) and still in the editor, hit Ctrl-E ( or menu "Tools->Evaluate All" )

This will auto-generate a macroscript in the correct folder, and you have it right available in the UI configuration ( Customize User Interface ) dialog. Look for the category "Spacefrog Tools" ( of course you can change that to your liking )

 

macroScript ViewportMenuToggle    category:"Spacefrog Tools"    toolTip:"Viewports: Toggle Viewport Menus"
(
   viewportbuttonMgr.EnableButtons = NOT (viewportbuttonMgr.EnableButtons)
)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...