Hi! Not sure, I’ve not used the unNormalize function, but you don’t need to do i += 1 in the for loop as far as i know it can be just: for i = 1 to ve…
Visual maxscript is great for doing neat gui’s quickly. That’s about all I would ever do with it!
It would be handy if you could post your code here so we can see what’s going on. Though I suspect it’s not appearing because once you have defined y…
Hi! If you open a new script then press F2 you should get a nice little rollout designer (visual maxscript) which you can use to make an interface fo…
You’re nearly right… It should be this: arr_g = for o in selection where superClassOf o == geometryClass collect o
I think the script I posted is probably one of the safer way to approch it (I could be wrong), the way you described it sounds like it would need a mo…
Hi! Sometihng like this: ( cpyMatID = undefined try(destroyDialog cpyMat)catch() rollout cpyMat “Copy Mat ID” width:88 height:72 ( …
Cheers! polyop.getEdgeVerts worked a treat, I was using polyop.getVertsUsingEdge before.
Hi! You could probably simplfy your code greatly by using a mapped function: ( — Create sphere and convert to poly obj = sphere() conv…
Number 6: Do you not need to just set a key at frame 50 with the same settings as frame 0 for the skew modifier?
Oh yeah! Never noticed that, always ‘misread’ it to be ‘Abort ’
You can rotate and pan/zoom with mousetrack via the middle mouse button. Just not with the viewport control buttons (which change the focus of the cu…
cyberluigi2k’s code is right except that it’s #mouseAbort instead of #mouseAbout. You can also get it to track on a specific object using the ’ on:<…
I’ve used it in a couple of scripts… What sort of trouble are you having?