Okay, if the function is operating in isolation, then there may be an issue with the script somewhere else and it is only manifesting itself here… Ge…
It’s kind of hard to tell fully, it might be having problems on particular objects or scenes. One question though, is the statement “screencapture” a…
Try and declare the global variable outside the context of the plugin… global variableUsedToTrackStuff plugin….
That’s a good idea if you want to retain the values between instances of max. If you only want the values to be maintained within the current instanc…
L has local context only within the Test rollout. That means, within Test you can access the variable without it’s context prefix. Because G is glob…
I don’t know if this will help, but you might want to take a look at the subrollout class. It allows you to group rollouts into a single UI element …
What plugin are you using?? Shane
I think it would depend on what the plugin provided. Does the plugin provide any access via maxscript? Does it have a dialog box perhaps that allows …
To be honest, I don’t think this is REALLY what you want, but… local appearance = btn.FlatAppearance() — gets a FlatButtonAppearance class local c…
You are very close!! Rather then using an Object, you should be using a string. This will allow the combobox to display text combo = dotnetobject “…
grabjacket: Hello, i need some help with the .NET combobox control. I don’t know how to add items to the list of this control. I’m making a full .N…
I think this question was just asked recently. Basically, you want to know when a property on a object is changed?? Currently, there is no way to do…
At the end of the day, it comes down to what your needs are. I find it frustrating to design a OO model then try and design a relational database tha…
As I said, it’s been 7 years since I looked at MySQL and at that time they had stated that support for internal relationships was not implemented beca…
Personally, I prefer PostgreSQL, mostly because it is fully relational database, where as MySQL, the last time I looked…which has been a while, prefer…