TimHawker
@timhawker
New Member
Joined: Feb 15, 2024
Topics: 9 / Replies: 115
Reply
RE: mmMaxControls : 3dsmax style .NET controls

Ahh that’s really useful! Thanks so much for the info. Not sure how I have missed that for so long.

12 years ago
Forum
Reply
RE: mmMaxControls : 3dsmax style .NET controls

Really nice set of tools Lo, thanks for sharing! I notice that you are automatically enabling and disabling accelerators within the .dll itself as pa…

12 years ago
Forum
Reply
RE: Determine Origin of Render [SDK or MXS]

Oh god… I feel dirty even posting this ‘solution’ to your first problem Basically, the render() command fires preRender before preImageViewerDisplay…

12 years ago
Forum
Reply
RE: include scripts not working?

DanGrover: …for the sake of declaring global variables that you don’t really want to be global, there’s actually no need for the nested structures, …

12 years ago
Forum
Reply
RE: include scripts not working?

DanGrover: …so instead of struct01.height, you could have struct01.struct02.height. Am I right so far? Yep, exactly. You can sort out all your st…

12 years ago
Forum
Reply
RE: include scripts not working?

This is just one of the ways to use structs which I really like. It allows you to have one global value and access all instanced functions, values and…

12 years ago
Forum
Reply
RE: include scripts not working?

Running fileIn on two scripts is like executing two scripts in a seperate tab in Maxscript Editor. Global values will of course be accessible, but the…

12 years ago
Forum
Reply
RE: include scripts not working?

It sounds like you need to use FileIn instead: fileIn “other_script.ms”

12 years ago
Forum
Reply
RE: max script to return the user directory (windows)

You can also do it via DotNet: (dotNetClass “System.Environment”).GetEnvironmentVariable “UserProfile” You can also get info about lots of useful …

12 years ago
Forum
Reply
RE: How can i hide/show multiple layers with one click

AlexMateo: …is there any way to show the mesh layers without hiding the others… This will unhide all layers with the word mesh. (I think that’s w…

12 years ago
Forum
Reply
RE: How can i hide/show multiple layers with one click

This will loop through all layers, show any that have the name “mesh” in them, and hide any that do not: for a=0 to layerManager.count-1 do ( layer…

12 years ago
Forum
Reply
RE: Using ObjectListView in maxform control

I looked at this control a while ago and on the whole it seemed very nice to use. Having it automatically create a tree from a list is really cool. T…

12 years ago
Forum
Reply
RE: Get the product update version of Max installed?

You can use dotNet to query the version of the max exe itself: versinfo = dotnetclass “System.Diagnostics.FileVersionInfo” myFI = versinfo.GetVersio…

12 years ago
Forum
Reply
RE: Wire,Script,Constraint,… which one is faster?

This is the document I was referring to. It’s quite old now, but is still worth a read and has some interesting points:

12 years ago
Forum
Reply
RE: Wire,Script,Constraint,… which one is faster?

denisT: the ‘wire’ controller performance depends on complicity of the used expression. ‘wire’ expression is mxs kind. so it might make ‘wire’ the…

12 years ago
Forum
Page 2 / 9