Serejah
@serejah
New Member
Joined: Feb 14, 2024
Topics: 34 / Replies: 1221
Reply
RE: Cast Scene Object to IINode

I suppose it is due to the fact that maxscript INode is actually a wrapper and not an IINode your c# function expects. You can either pass the handle …

7 years ago
Forum
Reply
RE: Getting/Setting the Max Color copy/paste values

I’ve managed to do it only this ugly way. ( ( local source = “” source = “using System; ” source += “using System.Runtime.I…

7 years ago
Forum
Reply
RE: Malicious maxscript

There’s already an ‘anti-virus’ Is it possible to prevent any maxscript execution at all? I mean disable it completely. Max prefs have some setting…

7 years ago
Forum
Reply
RE: DotNet form, Create many controls at once.

Why do you need to recreate whole ui from scratch on node created event? Have you tried addSubRollout / removeSubRollout? btw. All ui & node relat…

7 years ago
Forum
Reply
RE: Float Script for Brake Lights when car moves/stops

you can wrap your code with foreach loop for obj in selection do ( theCar = obj … … )

7 years ago
Forum
Reply
RE: create objects with default properties

I’d try to create an instance with specified sclass_id & class_id and then iterate on all available paramBlocks. Maybe someone experienced in c++…

7 years ago
Forum
Reply
RE: create objects with default properties

I never thought of using python in max as long as .Net is available. Can’t see any real benefits.

7 years ago
Forum
Reply
RE: create objects with default properties

fn createDeafultPointHelper = ( local g = (dotNetClass “Autodesk.Max.GlobalInterface”).Instance local sclass_id = (dotnetclass “Autodesk.Max….

7 years ago
Forum
Reply
RE: create objects with default properties

fn createDeafultPointHelper = ( local pt = Point() local g = (dotNetClass “Autodesk.Max.GlobalInterface”).Instance local pb2 = (…

7 years ago
Forum
Reply
RE: create objects with default properties

Doesn’t seem to work. Or maybe these defaults are overwritten until the next max session delete helpers pt = point() g = (dotNetClass “Autodesk.Max…

7 years ago
Forum
Reply
RE: [dotNet] How to unload dotNetObject? (loaded Image can't be deleted.)

try creating images like this b.fromStream <System.IO.MemoryStream>[/b]

7 years ago
Forum
Reply
RE: Struct Woes

Struct self reference was explained several times here on forum. deleteAllChangeHandlers id:#offset (local owner struct testStruct ( node = unde…

7 years ago
Forum
Reply
RE: How to prevent mouse "busy" when using webbrowser open a url?

Reloading page in browser every second to check if it has any updates doesn’t seem like an optimal solution. As an alternative you can download page a…

7 years ago
Forum
Page 59 / 84