Here’s my script so far. Can anyone make this more elegant/professional for me please? I think this will help alot of people who use wacoms in max. Also will be happy to credit anyone who helps with it in the script. All for the community folks. ( global selectionChanged callbacks.removescripts #selectionSetChanged…
here's a custom status bar i use, has a scripted version of the tti that works with subobject selections. Currently needs work, has some bugs and i'm sure there's a lot of redundant code,but the functionality is there. Haven't spent much time on rotate or scale. Careful with selecting large amounts of edges or faces in a…
Hello, I made this thread to learn a few things about max script. I'm still very new to this and I don't expect to be pro at this anytime, but I just want to make scripts that just makes things easier for me. that includes Clean, and easy UI for the most part. Here is what my UI looks like. most of the toolbars are things…
I’m trying to write a script to override the material on a Redshift proxy. I can’t access the proxy material from the proxy rollout. I’m stuck at this point — any help would be appreciated. attach script here: macroScript RS_Proxy_Overdrive category:"Hihead" toolTip:"RS_Proxy_Overdrive" ButtonText:"RS_Proxy_Overdrive"
--…
I guess you have to checkout call backs. Search for "General Event Callback Mechanism" in the help. It works like that: you write a function and register it to a callback. Max knows different callbacks like: #selectionSetChanged. The function you wrote is called every time you change the selection. In this function you…
Since we are asking questions anyway, something I have been wondering for a while is: What is the use of using "(" at the start and ")" at the end of a maxscript file? Does it have a purpose? :icon_question: I would make the code like so: try(destroyDialog nameSearchBox)catch()objArray = selection as arrayobjList =…
found solution made by Vojtěch Čada or Swordslayer original link and script is here : https://forums.autodesk.com/t5/3ds-max-forum/auto-snap-verts-to-whole-numbers-on-object-move-or-dragging/td-p/5452916 I merged his both object and vertex snapping in one tool for convenience ( pardon if the script is a bit…