Light
@light
New Member
Joined: Feb 14, 2024
Topics: 6 / Replies: 370
Reply
RE: Button Creation

Hi Pat, You can open Video Post using this: actionMan.executeAction 0 “40027” – Render: Video Post Dialog Toggle Light

19 years ago
Forum
Reply
RE: declaring local redundant

Hi Ryan, The reason is very simple. Implicit declaration can lead to an error where you need to evaluate the script twice in order for maxscript to i…

19 years ago
Forum
Reply
RE: Resizing ActiveX controls

Hi Kai, Try using the size property. Light

19 years ago
Forum
Reply
RE: ListView UI : how to control?

Hi Patrick, If you meant when resizing: on listview_rollout resized val do lv_objects.size = val – [10,10] Light

19 years ago
Forum
Reply
RE: How to randomly assign material on a specific count of objects ?

Laurent, Just add a spinner control like: spinner toVal range:[1,24,6] and then use toVal.value instead of max values like random 1 toVal.value Ligh…

19 years ago
Forum
Reply
RE: How to randomly assign material on a specific count of objects ?

It basically loops through your current selection and assigns materials from 1 to 6. You can see that “((i – 1) / 9) + 1” creates values from 1 to 6 t…

19 years ago
Forum
Reply
RE: How to randomly assign material on a specific count of objects ?

Hi Bruno, You can use something like this: for i = 1 to selection.count do selection[i].material = meditMaterials[((i – 1) / 9) + 1] Light

19 years ago
Forum
Reply
RE: scripted plugins?

Hi, I would probably use a specific naming for the trees, instead of sticking global arrays in every max file. So the trees would be like this: myNe…

19 years ago
Forum
Reply
RE: Selecting elements in an editable poly

Mike, You can also use Cycle Elements which selects elements by cycling through all elements in the currently selected poly object. Light

19 years ago
Forum
Reply
RE: 3DCG.co.uk Intro – Problem!

Hi cecofuli, You have 3 questions but the answer is only one. a. x_offset = 0 b. move newobj [x_offset,0,0] c. [i]x_offset += x_dist.value [/i]x…

19 years ago
Forum
Reply
RE: Set bitmap from image, to a color?

Bronson, myRollout.myBitmap.bitmap = bitmap 320 240 color:red Light

19 years ago
Forum
Reply
19 years ago
Forum
Reply
RE: Using button pressed as a function?

To be able to use the same type of calls outside the scope of the dialog, you need to declare the dialog’s name as global and use something like this:…

19 years ago
Forum
Reply
RE: Using button pressed as a function?

Maybe this does what you need: buttonName.pressed() Light

19 years ago
Forum
Reply
RE: How hide it?

I know, that’s why I don’t do it. Light

19 years ago
Forum
Page 16 / 26