True, that’s because “i” is not defined in the context of the Wire Controller’s expression. So “0.1*i” means “0.1 * undefined”. You have to use (“Per…
$myArray[i] should be myArray[i]. $ is only used when denoting a node path, like $Box01. myArray already contains a node pointer and you don’t need (…
You could use a SplineIK Modifier to place a Helper on each knot, then draw lines from the one helper to the SplineIK Modifier’s Helpers.
Creating a bitmap with a filename does NOT open the existing bitmap, it creates a NEW empty bitmap that would overwrite your existing one if you would…
Here is a quick test: rollout ccp_test “Custom Color Picker Test” ( local theMap = gradient_ramp gradient_Type:8 local theBmp = (renderMap theMap)…
You can do this with an ImgTag which is a bitmap display control that has its own mouse event handlers. Alternatively, you can use the mouse event han…
That’s the least of your problems. The ZDepth Render Element’s range controls are considered non-animatable so even if you could update them (via a #P…
I feel really good because I was flying blind (it works in 2010 too). You could try to keep the max create mode in the beginning, switch to max modi…
You should have started with the fact it was an “Unknown System Exception”. That means you did nothing wrong (and explains why it was working in 2009)…
Shift+Enter lines evaluates them in global scope. So if you have variable scoping issues (either orig or targ could be undefined in the active scope),…
Technically speaking, the GradientRamp was also an external plugin developed by Digimation around Max 2 or so. It was written before there was MAXScri…
I wish I had a penny for each post complaining about that Scope Of Variables. You cannot use a variable BEFORE you have defined it. The foo tool is …
That’s the main reason Editable Poly was introduced back in Max 4 – the Editable Mesh’s data structure, while very fast for viewport drawing and rende…
As I said, as far as I know this is not possible via MAXScript. The Scene Explorer was written with the SDK and was a proof of concept for exactly tha…
The non-string controls in the Explorer are DotNet controls and they are currently not usable via the MAXScript methods for extending the Explorer col…