rdg
@rdg
New Member
Joined: Feb 15, 2024
Topics: 29 / Replies: 388
Reply
RE: Appending numerical indices to names

-s, If you just want to rename Objects in the scene: Tools -> Rename Objects … If you need more precice controll over the renaming, or just to ge…

19 years ago
Forum
Reply
RE: Appending numerical indices to names

M.E.L., if you have the objects as selection: theSel = selection as array for i = 1 to theSel.count do ( theSel[i].name += (“_#” + i as string) ) …

19 years ago
Forum
Reply
RE: trace movie

hvanzon, so I misread your question. If you have allready imported all objects into max you could hide all but the onbe to be displayed at a specifi…

19 years ago
Forum
Reply
RE: trace movie

hvanzon, I had good results with this workflow: Export the movie to frames and trace the frames with corel 4 batch tracer If I remember well, this wo…

19 years ago
Forum
Reply
RE: Remove all reactions

You could loop through the object properties and remove all reactor controllers. Georg

19 years ago
Forum
Reply
RE: Geometrical calculations : points, lines, planes : intersections, distances, angles

this is a maxscript version of Robert Penners Easing Equotations for Flash: struct rpEFn ( — — — Easing Equotations by Robert Penner — –…

19 years ago
Forum
Reply
RE: Geometrical calculations : points, lines, planes : intersections, distances, angles

The Algorithmic Beauty of Plants can be downloaded here as PDF: This is the ‘definitve book’ about L-Systems (see also Challenge #16). Sometimes you…

19 years ago
Forum
Reply
RE: Can you animate a string to change over time?

Ok. I misunderstood you question. If get it right you need a array containing all possible objectnames – or a function that generates the correct obj…

19 years ago
Forum
Reply
RE: Can you animate a string to change over time?

nebille, I made a short test with a script-controller to change the name of a object and surprise max crashed. This is due to node – name – depende…

19 years ago
Forum
Reply
RE: CgTalk Maxscript Challenge 011: "Circular Array Tool"

Nice work! I can’t see the preview some possible improvements: currently the dialog can be created more than once. If Copies is set to 1 – no copy …

19 years ago
Forum
Reply
RE: Timed Autosave

There is alot going on with autoabackup under the hood that I didn’t try to touch. what does this imply? I wrote a script – just missing an setup in…

19 years ago
Forum
Reply
RE: Timed Autosave

johnnixon, there is a interface control named “Timer”, When enabled it fires a event after a specified time. This could be a starting point for a scr…

19 years ago
Forum
Reply
RE: creating a realtime rendering engine

Greenwu, there was sometime ago a script here in the forum that rendered viewports. Depending on your computer this would give you some realtime expe…

19 years ago
Forum
Reply
RE: Silly Question – Syntax for connecting points (nodes) to Blobmesh compound?

SplitXRaven, here is a bit of code: ( maxPoints = 20 b = blobmesh () for i = 1 to maxPoints do ( p = point pos:[random -20 20, random…

19 years ago
Forum
Reply
RE: filename to include number of frames

[i] “– unable to convert: 31 to type: string” if you need a string then you should change integer to string: [/i] totalFrames = (animationrange…

19 years ago
Forum
Page 19 / 28