ofer_z
@ofer_z
New Member
Joined: Feb 14, 2024
Topics: 11 / Replies: 188
Reply
RE: How to Generate Labels based on Layers

Hi, Rollout elements are create at compile time, so you can’t add them dynamically the way you tried. Take a look at the “RolloutCreator Functions” t…

17 years ago
Forum
Reply
RE: Dead Feature: registerViewWindow?

Hi, This function does work. There’s an example in the mxs help in the “MAXScript Dialogs and Rollout Floaters as Extended Viewports” topic. Note tha…

17 years ago
Forum
Reply
RE: Help with selecting keys

Hi, Check out AddInBetween () it might do what you want, and if not, you can look at the code and see how I selected the surronding keys. Cheers, o

17 years ago
Forum
Reply
RE: MySQL .NET connector tutorial

Actually, these are not ’ (single quotation mark) but ` (grave accent sign, the one usually next to the 1 key), but yes, you can leave them out in mos…

17 years ago
Forum
Reply
RE: MySQL .NET connector tutorial

Hi Klaas, I find the ADO.NET to be quite complex, and since most of my SQL knowledge comes from using it with PHP, I prefer to just use SQL commands…

17 years ago
Forum
Topic
Forum
Replies: 10
Views: 21
Reply
RE: to get the most recent file

Hi, If your nameing scheme is strict (like in your example above) you could put them all in an array and sort it: ( local files = #(“AA_BB_V01_02….

17 years ago
Forum
Reply
RE: Problem using FlattenMap within a Loop

Hi, It seems that the object you wish to add the unwrap_uvw modifier has to be selected in order for the flatten function to work correctly. Try this…

17 years ago
Forum
Reply
RE: Rollout Categories Fail in Scripted Utilities?

Try right clicking in the rollout area in the modifier panel, and select “Reset Rollout Order” cheers, o

17 years ago
Forum
Reply
RE: Loading a PDF from Max with .NET

In windows you should use quotation marks (“) around a path that contain spaces when passing it as argument. I’m not sure it will help in this case th…

17 years ago
Forum
Reply
RE: exit prematurely

Hi, AFAIK, the reason it should be avoided is because it’s relatively expensive in terms of cpu cycles. So, my rule of thumb for return usage is: av…

17 years ago
Forum
Reply
RE: Removing IKControl from bone?

I check if it’s transform controller is IKControl. That would be really nice, thank you! Please send it to martin at breidt dot net, thanks! – Mart…

17 years ago
Forum
Reply
RE: Removing IKControl from bone?

Hi Martin, I’ve written a function that bakes objects’ transforms and can handle IK Chains. This is an ugly can of worms We used this function at sn…

17 years ago
Forum
Reply
RE: max version detection ?

Hi, The registry key for the installation dir is: HKLM\SOFTWARE\Autodesk\3dsmax\8.0\Installdir The 8.0 represents the max version. You have a differ…

17 years ago
Forum
Reply
RE: Adding non-instanced modifiers

Hi, AddModifier is a function, it’s not a method of the objects so your code should be: for o in selection do addModifier o (Materialmodifier ()) ui…

17 years ago
Forum
Page 5 / 14