Pjanssen
@pjanssen
New Member
Joined: Feb 14, 2024
Topics: 53 / Replies: 510
Reply
RE: Progress bar Not working

Why are you using a loop when the spinner changes? Shouldn’t you just be setting the progress bar values once based on the spinner’s value?

13 years ago
Forum
Reply
RE: As the Array can be CustAttribute parameters??

Arrays in parameter blocks are called Tabs. They are statically typed though, so you’ll have to specify something like #IntTab, #StringTab, and so on.

13 years ago
Forum
Reply
RE: "[1,2,3]" as point3 – doesnt work

You can use the execute command instead: a = execute “[1,2,3]” classof a — Result: Point3

13 years ago
Forum
Reply
RE: How to get the moment AFTER a node is created?

Use the NodeEventCallback mechanism. There you can supply a “mouseUp” parameter. If you want to avoid the event being handled when merging, you can …

13 years ago
Forum
Reply
RE: Select dotnet Treeview

You could split the fullpath and use TreeNodeCollection.Find to track your way back to the node.

13 years ago
Forum
Reply
RE: writing an installer

You can have a look at the Outliner’s installer code: Note that the toolbar code will only work up to and including 3dsMax 2012. To create menu item…

13 years ago
Forum
Reply
RE: JSON and maxscript?

I haven’t used it in maxscript specifically, but JSON.NET is a good library:

13 years ago
Forum
Reply
RE: Plugins – How to write?

I think it might be easier to use the function publishing macros and interfaces. That takes care of most casting issues for you. And I’ve found it to …

13 years ago
Forum
Reply
RE: Docked .Net controller redraw issue

I haven’t tried your example code yet, but this issue reminds me of reports I got from several Outliner users. They reported that the treeview occasio…

13 years ago
Forum
Reply
RE: value comparison problem!

This happens because of floating point precision. The 10.0 value is not exactly 10.0, but something very close to it. This can be a bit tricky when co…

13 years ago
Forum
Reply
RE: 3ds max wizard + Visual Studio 2010 Express

Ok, so what is the error message? Are there any clues in there on what could be going wrong?

13 years ago
Forum
Reply
RE: 3ds max wizard + Visual Studio 2010 Express

Which SDK version are you using? I believe that VisualStudio 2010 was officially supported only with 3dsMax 2012.

13 years ago
Forum
Reply
RE: SDK – Get INodeLayerProperties from INode

Thanks for your reply. The problem I’m having is that this seems to return a null-pointer for me: maxnode->GetInterface(NODELAYERPROPERTIES_INTERF…

13 years ago
Forum
Topic
Forum
Replies: 3
Views: 16
Reply
RE: Understanding a bit more about arrays

The ampersand operator means that a parameter is passed as a reference. Assume the loop in the doingStuff function modifies the array. If you pass myA…

13 years ago
Forum
Page 5 / 38