lutteral
@lutteral
New Member
Joined: Feb 15, 2024
Topics: 1 / Replies: 30
Reply
RE: Why doesn't this work?

“texmap_opacity” is not a property of a standard material, that’s causing the error, seems to be a problem with the replaceinstances() function. edit:…

15 years ago
Forum
Reply
RE: Issue connecting to manager with a monitor opened

You can have as many connections to the manager as you want, e.g. you should be able to open several queue monitors, or define several connections in …

15 years ago
Forum
Reply
RE: Skin Mod Bones to CAT

skinops.setvertexweights works well. If the bone was not affecting the vertex, it will be added. check this too: skinOps.ReplaceVertexWeights

15 years ago
Forum
Reply
RE: Parameter wiring for text object text?

I’d use a custom attribute with a scripted controller to access the text property… open the track view, right click on the text object, click add/edit…

15 years ago
Forum
Reply
RE: Script to make a bezier line segment touch several specified points?

That article is only to understand how the bezier curve is constructed. Then, to make it go through a number of given points, you’re going to need a p…

15 years ago
Forum
Reply
RE: need help with custom attributes

I’m not quite sure, but I think that you should take another approach to solve your problem, as custom attributes are pretty much sticked to the node …

15 years ago
Forum
Reply
RE: need help with custom attributes

try this: testCA = attributes “tile color” attribID:#(0x7f7438e5, 0x4515b94b) ( parameters main rollout:tileControls ( tileClr type:#color u…

15 years ago
Forum
Reply
RE: need help with custom attributes

check the “how to make it better?” section on the maxscript help file, first title. It says “avoid using persistent global variables; persistent glob…

15 years ago
Forum
Reply
RE: boundingbox of object is illegal reference

“this” is a reserved name. Try using another name.

15 years ago
Forum
Reply
RE: Include and script path

Ok, now just guessing, but maybe using execute <string> could work, something like myString = “include \””+(GetDir #maxroot)+”folder\\script.m…

15 years ago
Forum
Reply
RE: Include and script path

you’re right, and checking the mxs help i’ve found that there’s 2 kind of include… one evaluate the script, the other only inserts the file’s content …

15 years ago
Forum
Reply
RE: Include and script path

actually that should work fine. Check the string you’re getting from the expression, you have a double backslash in the expression, and that will poin…

15 years ago
Forum
Reply
RE: Calling dialog from dialog

I guess it’s ok to call a createDialog in a button method. The thing that doesn’t look clean is to declare the rollout each time you press the button….

15 years ago
Forum
Reply
RE: UIAccessor and edit mesh

check the explodeAllFaces method of a mesh object in the maxscript help, that could be the answer. meshop.explodeAllFaces <mesh> <threshold&…

15 years ago
Forum
Reply
RE: dotNet Label Control – font style

worked like a charm. Thank you very much. I was trying to change the properties instead of creating a new font object…

15 years ago
Forum
Page 2 / 3