Has anyone tried this with 3DSMax 2020?
When I first start max , my command pannel is docked on the right side. I tryed every combinations and get undefined:
commandPanel = windows.getChildHWND #max “Command Panel”
commandPanel = windows.getChildHWND #max “CommandPanelWindow”
commandPanel = windows.getChildHWND 0 “Command Panel”
commandPanel = windows.getChildHWND 0 “CommandPanelWindow”
Now if I make my command panel float , I get a value using this:
commandPanel = windows.getChildHWND 0 “Command Panel”
and when I dock it back, I get a value using this:
commandPanel = windows.getChildHWND #max “Command Panel”
I am trying to get access to the Level of detail functionalities by mimicking the button pressing since we have no functions in Maxscript yet. Any ideas?