Script to automatically goto bottom of the stack for selected object.
May exist already...most of the search links are dead. Anyone have or know of a script for this.
thx
Forum topic · Scripts Wanted
By airbrush · 2014-01-13
Script to automatically goto bottom of the stack for selected object.
May exist already...most of the search links are dead. Anyone have or know of a script for this.
thx
scumm · 2014-01-14
facerFX made a script. http://www.scriptspot.com/3ds-max/scripts/modifier-auto-select
You just toogle it on, and you'll move whereever you want to go in the stack each time you select a new object.
Edit - Could see you already posted facerfx script. The link does work, atleast for me.
airbrush · 2014-01-14
yup...link seems to be working for me today...will give it a whirl
airbrush · 2014-01-13
works but is it possible to automatically go to the bottom whenever you select a new object? Currently i have it assigned to a hotkey which isnt so bad...would be nice to just have it do it automatically whenever you select.
barigazy · 2014-01-13
And that will be bad because you need to use Callback Mechanism.
airbrush · 2014-01-13
thx
barigazy · 2014-01-13
You can create macroscript
if selection.count == 1 do
(
if getCommandPanelTaskMode() != #modify do setCommandPanelTaskMode #modify
if modPanel.getCurrentObject() != selection[1].baseobject do modPanel.setCurrentObject selection[1].baseobject
)