Here’s something I did a while ago. It’s a more or less direct copy-paste from old work, so it might be ugly/wrong. For one the nested if’s should be …
JHN: Hopefully I can help out as well. haavard: If you need an extra hand, i’ll be glad to contribute : ) I don’t know if either of you…
Adding buttons to a toolbar is done now too. It took a bit of reverse engineering the cui file, which is a somewhat peculiar file, but I think it work…
I’ve added an installer action that will allow the developer to create a new toolbar. This is done by parsing and adding to the cui file. It is of cou…
I think Denis argued that he’d first look at the script itself, before using it. I wonder what he’d do with an encrypted script though…hehe.
Hehe. What would your solution be? (And do you do the same with any other program you install? )
Yes you’re absolutely right there Johan. The installer is more aimed at providing artists (and everyone else using max) with a way to make sure script…
Yeah we’ve been talking to Norman about that project when we found out about it. If you need an extra hand, i’ll be glad to contribute : ) Cheers. R…
I think actually your blogpost you linked to addresses a similar problem that we would like to address. (Although not directly with this installer par…
Yes there are ‘standard’ windows installers too of course. I can’t say that I’m fond of them for installing maxscripts though. It might work great, bu…
struct exampleStruct ( fn a = ( print “a” ), fn b = ( exampleStruct.a() ) ) exampleStruct.b()
Take a look at the .NET XmlDocument class, I think that would be the easiest way to read small Xml files from maxscript. If you’re going to be parsing…
Well, you can work with most OOP concepts in maxscript in some way, but for many of them you have to do some tricky things. Like in the inheritance th…
That’s because they are evil!! Or at least they can easily be used incorrectly. Using a public static class gives you globals, in a sense though, as …