Okay, here’s what I was thinking. imgTag’s are like a hotspot control – they wait for mouse interaction and perform whatever you place in the appropr…
Check out the imgTag UI control in the Maxscript docs. It’s exactly what you’re looking for:) RH
I’m afraid not. This has been discussed many times over, and I certainly wish they would simply expose this stuff. The closest thing I’ve seen is th…
Sorry, but there’s currently no access to this in Maxscript:hmm: RH
It would be simple enough to swap out controllers – one with the keys, one without. I’m not sure if this would have any nasty side effects, though. …
Of course Bobo’s answer fits a more comprehensive set of cases. I was only suggesting another way to get at the solution since the described case doe…
Since you’re not concerned with the off-plane (z) axis, and you’re testing whether the point is within a rectangular area, I’d say your best bet is to…
macroScript PolySubDivide category:“Modeling” toolTip:“SubDivide on/off” ( for obj in getCurrentSelection() where classOf obj == Editable_Poly do obj….
I haven’t ever looked into CS, so I’m not sure. I think it would be a lot more complicated, though, since cloning an entire heirarchy (especially a c…
This is actually the behavior I would expect. You’ll want to explicitly parent D to C by setting $D.parent=$C, that should give you the result you wa…
That works for me. But it’s not the method that I would most likely use to accomplish this. This would be more direct: polyOp.setEdgeSelection $.ba…
It’s really simple: instance $ or reference $ RH
You have to explicitly move the affected verts when using maxscript. As far as I have been able to determine, this means cycling through all the mesh…
Unfortunately, I don’t think that’s possible. Evaluation is still happening in Max; I switch to Max and hit a key, and whatever I’m working on in th…
That’s fantastic, magicm! But I won’t be using it, because I already have an established workflow that doesn’t rely on Max’s built-in script editor a…