Yeah, I’ve been using it for a couple of weeks now without any problems.
Yes, Win 7 is the same. And, yes, it’s a pain.
Thanks for all the hard work on this. But one other thing that would be really useful would be a function to return the shortcut key for a given macr…
This is really helpful. Thanks for digging into this, guys.
Seems like you could use the same technique described on the Meshlab blog inside of Max itself. What they’re doing is rendering an ambient occlusion …
if isvalidnode (node = selection[1]) do Interesting. I didn’t know you could initialize a variable right in the ‘if’ line like that.
Thanks for the information.
Doesn’t that bug only apply to comboboxes in a dotNet form? If you add it to a Max rollout you shouldn’t get any errors.
Can you use the “parent” property of the combobox? combobox.parent.endEdit()
Change “Objs = for o in $Zip_L* collect o” to “Objs = for o in objects where matchPattern o.name pattern:(prefixMyObjs.text + “*”) collect o”. That s…
If you want it to be more iTunes-like where you match on the text anywhere in the name, you could do this: pat = “” + txt + “”
Thanks. That gives me a good place to start.
Right, but it doesn’t mention the memory implications of adding strings. You’re just pointing out that’s it’s faster not to (which is good advice in …