Blue
@blue
New Member
Joined: Feb 15, 2024
Topics: 9 / Replies: 142
Reply
RE: multiple slider/button enabling

Definately posible with a loop and an execute command, just have to make sure you address the controls properly. ————————————…

18 years ago
Forum
Reply
RE: Updating custom scripts over a network

We used to have a bat file system here for updating scripts and plugins, but it was not a dependable way of getting updates out, people forget or just…

18 years ago
Forum
Reply
RE: Instanced objects

The only problem here is that a reference with no additional modifiers is essentially the same as the instance root, the difference being it has the p…

18 years ago
Forum
Reply
RE: Help in MaxScript – Attach Multi Command

Make a collection of objects to attach and then loop through the attach command. ——————————— ——————————— …

18 years ago
Forum
Reply
RE: batch preview build script

I don’t believe you can, if I recall correctly it uses your last settings only. Disclaimer: I haven’t had to output a video in a few years so this my…

18 years ago
Forum
Reply
RE: How to use a function on the executing of a macroscript.

Here is something quick, good luck. ————————————————- ————————————————- — collect …

18 years ago
Forum
Reply
RE: Extending/custom materials

Read about scripted plugins in the ms help file. You can also change the replaceUI:true to false to keep the base material UI. I just prefer to make m…

18 years ago
Forum
Reply
RE: Extending/custom materials

Yes, this is very possible. Here is an example that I threw together a few days ago for a similar question. —————————————–…

18 years ago
Forum
Reply
RE: Opening nested groups

A quick and dirty script to open the selected groups for i in selection do ( try(setGroupOpen i true)catch() ) this one un groups the selection fo…

19 years ago
Forum
Reply
RE: extending multi sub panel

It can definately be done as a scripted plugin. Here is my starter code: ————————————————- ———————…

19 years ago
Forum
Reply
RE: extending multi sub panel

This sounds like a great scripting challenge, make a better multisub. There are quite a few things about the current multisub that needs love to make …

19 years ago
Forum
Reply
RE: theHold ? how to use it?

Have you tried using the undo command? undo “myCode” on ( myCode myCode myCode myCode )

19 years ago
Forum
Reply
RE: Rollouts without borders etc.. how?

This can be done with subrollouts on a dialog window check out my test code: ( rollout test “testFloater” height:244 width:160 ( subrollout test1…

19 years ago
Forum
Reply
RE: Spinner help please

Just an observation, but is there a reason why you are declaring the spinner as an integer but giving it a default value of 0.0?

19 years ago
Forum
Reply
RE: Clamping values

Here is a simple function that replicates the clamp command in maya fn clamp minVal maxVal val = ( if val < minVal then val = minVal else if val…

19 years ago
Forum
Page 6 / 11