Zbuffer
@zbuffer
New Member
Joined: Feb 14, 2024
Topics: 28 / Replies: 300
Reply
RE: Renaming menu items

Is there a way that you could just write the macro script lines using format to a single file so that the last used are all in one file? Yep, simple…

18 years ago
Forum
Reply
RE: Renaming menu items

Hi, funny you ask about this, I just did a little script to have a “recent script’ menu added to the MaxScript menu I used the .settitle funtion to…

18 years ago
Forum
Reply
RE: Adjusting all material setting at once with maxscript

That would depend on the type of material (standard, raytrace, etc…) but for standard Materials and multisub with standard materials, you could try m…

18 years ago
Forum
Reply
RE: Need help optimizing speed in a treeView control

Yeah i already have this function to get SCENE nodes but for Treeview, the .children property returns the number of children, not the children themsel…

18 years ago
Forum
Reply
RE: Need help optimizing speed in a treeView control

Hi, Thanks for the tip mobeen, very usefull ! But, the ‘getchildren’ function does not return anything unless ‘node’ has no children if ‘node” has …

18 years ago
Forum
Reply
RE: Need help optimizing speed in a treeView control

Hi, The How-to example has a function to recursively ADD Scene Nodes to a tree: AddChildren What I am looking for is a better way to implement a ‘Ge…

18 years ago
Forum
Topic
Forum
Replies: 6
Views: 18
Reply
RE: Instance map to selected objects' selfillumination map slot

HI, here is an example for the Reflection Map: MyMap=falloff () for obj in selection do Obj.material.reflectionMap=MyMap note: all selected objects…

18 years ago
Forum
Reply
RE: Parametric Cabinet

Hi, This should not be too hard… As stated before go for a simpleObject plugin script. Look for help for more info… 3 variables defined in the UI: …

18 years ago
Forum
Reply
RE: Problem with Tab controls

ot seams that the ‘outputFile=createfile savefile’ is called before savefile is defined (so it is undefined) just move the line in the ‘on Browse’ ha…

18 years ago
Forum
Reply
RE: Problem with Tab controls

You need to save your values in a .ini file something like: on MyRollout close do ( setINIsetting myINI MySection MyVal1Name Myval1 – etc … ) then …

18 years ago
Forum
Reply
RE: instances question

Hi, look for ‘instanceReplace’

18 years ago
Forum
Reply
RE: Extend text object

Hi, Why use the trimesh data ? You could use the Bounding Box properties of the text: MyText=text text:“Some Text” size:50 centerpivot MyText – be…

18 years ago
Forum
Topic
Forum
Replies: 3
Views: 17
Reply
RE: Script not loading correctly

HI Try declaring both functions before you define them with: ( local fc1, fc2 fn fc1 p1 p2 = (…) fn fc2 p1 p2 = (…) – then do the real call to the…

18 years ago
Forum
Page 19 / 22