always open layer and material windows on max start

Hi,

Is there a way to always open the layers and materials windows on 3dmax start. None of the UI preferences seems to save this.

thx.

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
miauu's picture
barigazy's picture

maybe this can help ;)

maybe this can help ;)

(
	if LayerManager.isDialogOpen() == false do LayerManager.editLayerByName ""
	if MatEditor.isOpen() == false do MatEditor.Open()
)

bga

miauu's picture

Try this(works on my max2012):

(
	actionMan.executeAction 0 "50048"
	macros.run "Layers" "LayerManager"
 
	callbacks.removeScripts id:#testCallback
	callbacks.addScript #filePostOpen "macros.run \"Layers\" \"LayerManager\"" id:#testCallback
 
)
airbrush's picture

that did it....thanks again

that did it....thanks again

airbrush's picture

one issue...if i open a scene

one issue...if i open a scene after starting max the layers panel closes, materials stay open. Is it possible to always remain open?

miauu's picture

Save this as ms file and put

Save this as ms file and put it in the maxroot/scripts/startup folder. Then restart max.

(
	actionMan.executeAction 0 "50048"
	macros.run "Layers" "LayerManager"
)
airbrush's picture

perfect...thank you!

perfect...thank you!

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.