cyberluigi2k
@cyberluigi2k
New Member
Joined: Feb 15, 2024
Topics: 1 / Replies: 23
Reply
RE: Call MAXscript from command line

yes you can do it starting max from command line with something like 3dsmax -U MAXScript … i don’t have the reference here right now so i can’t tell…

19 years ago
Forum
Reply
RE: saving arrays in max scene

if you want to keep saving things to a file but you want it automated you can use presave/postload callbacks to get your data saved/loaded every time …

19 years ago
Forum
Reply
RE: MaxScript UI question.

reading again my post i think it is not very clear what i wanted to say. Even though i’m proposing to use global variables, using a struct to hold all…

19 years ago
Forum
Reply
RE: MaxScript UI question.

Something you can do is to have all your “shared” parameters into a instance of a struct held in a global variable, this way you can use them from whe…

19 years ago
Forum
Reply
RE: simple question

I think it returns an error if you don’t have a target. also try using the index of the subanim (in this case the channel) to acces it. Something like…

19 years ago
Forum
Reply
RE: something about writing max scirpt.

I use crimson. In this page you can find an extension to be able to execute the script straight from crimson. This is good because it saves your file…

19 years ago
Forum
Reply
RE: mouseTrack() function Any one use it?

LOL!! it seems so obvious… i was thinking why on earth they choose mouseabout for the right button… anyway in my deffense i can say that i took it fro…

19 years ago
Forum
Reply
RE: mouseTrack() function Any one use it?

I think this way works, although #mouseAbout doesn’t seem to work… (press ESC to exit tracking) fn MyCallbackFn msg ir obj faceNum shift ctrl alt …

19 years ago
Forum
Reply
RE: Very siply rot script – Try this, please

Try setting the value to the controller. Like this: on ruotay changed rotazione do ($.rotation.y_rotation.controller.value = rotazione) I think this…

19 years ago
Forum
Reply
RE: Rotation problem

I think, the result you are getting is the multiplication of the two rotations. If you want to have your selected object with a given rotation you hav…

19 years ago
Forum
Reply
RE: how I get diference between to arrays?

Maybe this function can help you: fn diffArray a b = ( retArray = #() for element in a do ( idx = finditem b element if idx == 0 then append retArray…

19 years ago
Forum
Reply
RE: Clone and set names of clone?

this should work: maxops.clonenodes $ offset:[0,50,0] expandHierarchy:true clonetype:#copy newnodes:&newObjArray newObjArray[1].name = “M_house27…

19 years ago
Forum
Reply
RE: Script Controller Name Dependancy

maybe you can use the ‘this’ variable. copy/paste from max8 help: [color=white]‘This’ Local Variable in Scripted Controllers[/color] [left]The th…

19 years ago
Forum
Reply
RE: "findItem" not work

As you can see in the reference “finditem does a MAXScript ‘==’ comparison between elements in the array and the target object” and you can’t compare…

19 years ago
Forum
Reply
RE: Editing Strings?

This is ok but you loose the “_”, you can keep it by doing it this way: a = “M_house10_Standard” tmpArray = filterstring a “” newName = “” for i=1 to…

19 years ago
Forum
Page 1 / 2