Tagged Questions

MAXScript is the built-in scripting language in Autodesk 3ds MAX. It can be used to automate repetitive tasks as well as develop new tools and user interfaces.

learn more… | top users | synonyms

2
votes
0answers
118 views

How to rotate/mirror a 3d animation?

I currently have a FBX animation model of a biped moving slightly forward (positive Z axis), turning around 180 degrees, and starting to run in the opposite direction (negative Z axis). However, I ...
2
votes
3answers
291 views

How to compile for older 3dsmax versions with 2010 \ 2011 sdk?

I'm working on a plugin, and previously I saw that I could compile for several older versions of 3dsmax with just 2010 sdk installed. The new project I've got works now with 32\64 max 2011 and 2010 ...
2
votes
1answer
421 views

Recalculate normal on editable poly object

I'm working on a exporter, but the problem I'm stuck at is the normal calculation. I've been reading many posts about this, and it seems like the "getnormal" function does not work like intended. ...
2
votes
3answers
347 views

How can I save single renders incrementally with max script

While I am modeling I like to render a frame to show the progress as I am going along. I would like to program the renderer to save the render as a render output and add an incremental number to the ...
2
votes
4answers
677 views

Should I parse git status or use gitsharp?

I'd like to integrate git into production pipeline to stage 3dsmax files. While it is alright to work with git through TortoiseGit, I'd like to communicate with it from the Maxscript to add custom ...
2
votes
1answer
3k views

How do I change the FOV of the 3dsmax perspective window programattically through Maxscript?

I need to access the FOV property of the Perspective viewport. This is not the same as the FOV property associated with target and free cameras. To access the FOV property non-programatically, right ...
1
vote
1answer
26 views

Give each object in scene a unique wirecolor?

Know of any scripts, or code, to do this? I've seen several which gives random colors, but I need to make sure no two objects have the same wirecolor.. Thanks! =)
1
vote
3answers
327 views

Basic MaxScript GUI operations: how do I get the Enter key? How do I grey out controls?

Apologies for the kind-of unrelated questions in one, but I would like to make my MaxScript rollout/tool more intuitive by making it behave like any other GUI would be expected to. Could anyone ...
1
vote
2answers
138 views

Converting 3D Studio Max 8 scripts to 2011

I've inherited some older 3DS maxscripts for exporting in 3D StudioMax 8. We'd like to leverage these scripts to be used in 3D StudioMax 2011, but have been unsuccessful. Is there a way to quickly ...
1
vote
1answer
179 views

calculate total angle between selected faces

I have a framework for selecting holes in objects. Right now it works by manually clicking inside the hole (with “by angle” option on), it then selects the inside of the hole. I then delete the faces, ...
1
vote
1answer
1k views

3dsmax.exe command line switches

Is there an exhaustive list of commandline switched for the 3dsmax.exe. I'm particularly interested in the -server and -pipe switch as I want to reroute some 3dsmax argument calls. Basicly I have a ...
1
vote
1answer
183 views

Does -mxs command line switch always close 3DSMax?

I’d like to run a very simple script command through the command line, and the -mxs switch appears to do exactly that. However, everytime I use it 3DSMax 2011 automatically shuts down afterwards. ...
1
vote
3answers
549 views

How to programatically assign random colors to objects in 3ds max?

How to programatically assign random colors to objects in 3ds max?
1
vote
2answers
482 views

MaxScript Export Vertices over Time

Hey, I have a skinned mesh that animates over time. I'm writing a quick export script to export out my verticies. How do I output the vertices per frame? I'm getting the verticies using getVert, but ...
0
votes
1answer
75 views

Which Points in 3D Space form which face + Angle between faces?

How do you write a Maxscript that gets the three points needed to create a face? So you have your object, say it has 100 faces. Then the script should tell me which points form each face. Also I'd ...
0
votes
1answer
84 views

How to toggle “Show standard map in viewport” via maxscript?

In the slate material editor, I can right click a material and toggle "show Standard Map in Viewport". How can I toggle/set this option of a material programatically from maxscsript?
0
votes
0answers
171 views

maxscript: skin mesh is moved by transfer of weights

I'm trying to write a script to transfer a skinned mesh from one CAT skeleton to an identical standard bone skeleton in 3ds Max. Everything is working fine for most meshes, however, I have one that ...
0
votes
1answer
70 views

Escaping issue in maxscript

I have some issues with the edittext of maxscript and string escaping. First, I want to escape the string written in an edittext (accents and simple quotes). The purpose is to feed this string to a ...
0
votes
0answers
73 views

createOLEObject: can't create instance of pythoncom server

I am trying to consume a Pythoncom server from 3ds max. I need this to be able to call some mysql queries in python script from maxscript. I tried to follow the steps in this article. I created a ...
0
votes
1answer
77 views

Quickest way to read geometry data from a custom file

I'm trying to create a custom point cache format for Houdini and 3D Max. I have managed to send geometry data between both programs using a custom ascii and xml file. The file is just a list of ...
0
votes
2answers
272 views

MaxScript: What 'callback type name' would be used to to trigger a callback when a node changes type/class?

My MaxScript tool requires a scene object to be of the type editable_mesh or editable_poly, and depending on the object type will enable and disable GUI controls. Using the #selectionSetChanged ...
0
votes
2answers
232 views

Loading an exe as a dll in maxscript

I was wondering if it is possible to load an executable as a dll in maxscript. I want to execute an exe and the store the return values from the exe, I am using HiddenDosCommand but I have to redirect ...
0
votes
1answer
96 views

Can i control on my human model using blender [closed]

Possible Duplicate: how can i have the full control on my 3D human model? I want to have full control on my 3D human model like scaling it,changing width and height etc. using blender ...
0
votes
0answers
395 views

Viewport clipping in perspective view, enable and adjust through maxscript

is it possible to adjust the "viewport clipping" through maxscript? If so - how? The only relevant info I can find is: (but my initial test with this function just crashed max). Position, Size, and ...
0
votes
2answers
214 views

3D Max - Plane question

I've only a basic knowledge of 3D Max. I'm creating a plane using MaxScript, converting it to an editable Poly and then extruding certain faces. The thing is, I only have 16 faces to work from. Is ...
0
votes
2answers
379 views

known memory leaks in 3ds max?

I've set up a script in 3ds max to render a bunch of animations into frames. To do this, I open up a file with all of the materials, load an animation (as a bip) onto the figure, then render. We were ...
0
votes
2answers
582 views

How do I extend a 3Ds Max material correctly

Basically, I'm just trying to add a few more properties to the "Standard" material in 3Ds Max 9. I've actually managed to accomplish this through max script, but it is breaking our exporter. The ...
0
votes
1answer
222 views

Is there a way to return a dotNetObject value from a custom 3ds Max plugin?

I have a custom plugin for 3ds Max that interfaces with some managed code on the back end. In some circumstances, I'd like to forward along a managed object to MAXScript for direct interaction, i.e. ...