PePeTD
@pepetd
New Member
Joined: Feb 14, 2024
Topics: 7 / Replies: 172
Reply
RE: How can I find whether a particular word exists within a string in an array slot?

here is a way without having to load a dotnet class. ( fn FindWord mArray mWord ignoreCase:true = ( pattern = @”*” + mWord + @”*” for j = 1 to …

9 years ago
Forum
Reply
RE: How can I find whether a particular word exists within a string in an array slot?

I know you got your answer but a simple search in the max help file and 5 minutes reading would have gotten you the answer. digging through help docs …

9 years ago
Forum
Reply
RE: Please give some advice on serialization of max objects

You can create a method which goes through any nodes parameters/properties and writes them out to xml taking in account their class and types and then…

9 years ago
Forum
Reply
RE: Python float script

If in your test you are just wanting the value of the float script expression to be 20 then just do float_co.ParameterBlock.Script.Value = ’20’ F…

9 years ago
Forum
Reply
RE: stop using maxscript: a dead language

The alternatives are just not that simple or easy to use while in a fast development environment. For someone like me that is not that intimate with …

10 years ago
Forum
Reply
RE: Best way to execute a script once per frame?

Script controllers run as time changes

10 years ago
Forum
Reply
RE: how to select just created SkinData mesh

As far as I know you can only do it by name since the function to create skinData does not return the object. You can still use it however you want so…

10 years ago
Forum
Reply
RE: how to select just created SkinData mesh

skinUtils.ExtractSkinData $Box data = (getNodeByName “SkinData_Box”) select data

10 years ago
Forum
Reply
RE: 3DS maxscript autorig

You just have to think about your logic and order of operations it is totally doable. You can’t just move child bones without their parents reacting…

10 years ago
Forum
Reply
RE: skin weight influence limit default

you can have a call back running that will watch for when skin is added and then you can set the property.

10 years ago
Forum
Reply
RE: setting skin weights via maxscript

skinOps.ReplaceVertexWeights works perfectly for me in any version of max I have tried. skinOps.ReplaceVertexWeights (skinMod) (vertex Index) (bone I…

10 years ago
Forum
Reply
RE: keystrokes in dot net

In c# the simplest way that you can do this is by: (Keyboard.IsKeyDown(Key.RightCtrl) If you are using dotNet with maxscript you can do this. my…

10 years ago
Forum
Reply
RE: dotnet listview items

UseItemStyleForSubItems was the setting I needed. Thx guys!

10 years ago
Forum
Reply
RE: dotnet listview items

Ohhh This is handy! every time I change a listViews column back color the entire row back color changes haven’t found a way around it ( or have I spe…

10 years ago
Forum
Reply
RE: How can I make my hundreds of lines of code (and functions) run from a button press?

Declaring it all as global functions is dirty and counter productive. Re-organize your scripts in structs and have the structs load on startup.

10 years ago
Forum
Page 3 / 12