ZeBoxx2
@zeboxx2
New Member
Joined: Feb 14, 2024
Topics: 7 / Replies: 1402
Reply
RE: Get file owner

o_O okay… fn getFileOwner f = ( local fileInfo = dotNetObject “System.IO.FileInfo” f local fileAccessControl = fileInfo.getAccessControl() local…

16 years ago
Forum
Reply
RE: Get file owner

by ‘owner’, do you mean the ‘author’ in the file’s Summary info? If so, see the ‘3ds Max Scene File Properties’ topic; that only applies to the curre…

16 years ago
Forum
Reply
RE: Extract number from object name?

Note that Piflik’s approach will always start at one, even if the first object in the (sorted) array is, say, Sphere05. Here’s another approach: ob…

16 years ago
Forum
Reply
RE: renaming autocad layers

apropos is definitely not what you’re looking for – apropos exposes classes and the like to, say, a coder. You might want to look into… findString …

16 years ago
Forum
Reply
RE: Asset Tracker not working correctly…

would be odd – (and any other escaped character) only becomes a problem if you feed functions the string manually, rather than a variable that conta…

16 years ago
Forum
Reply
RE: Asset Tracker not working correctly…

haven’t the foggiest, then :\ What I meant by ‘valid’ is that the strings as they appear in your array after you filter them match the strings actual…

16 years ago
Forum
Reply
RE: Asset Tracker not working correctly…

seems to work fine* here… are you sure the values in SceneFileList are valid when you call the SelectFiles method? I noticed you’re checking “iCount …

16 years ago
Forum
Reply
RE: "addModifier $ (CameraMap CameraNode:$Camera01)" doesn't work

not missing anything… and it’s not typically classified as a bug either, but rather as unexpected behavior. The plugin itself has some internals that…

16 years ago
Forum
Reply
RE: MAXScript Reference Bad?

Although I fully support ‘Read The Fine Manual’, I will say the following about this particular subject (by means of a copy/paste from a chat log from…

16 years ago
Forum
Reply
RE: gw.setpos: viewport background not updating?

well, I’m not sure about the enlargement issue you mention… performing things with safe frames is always a good idea, though; or just make sure the vi…

16 years ago
Forum
Reply
RE: gw.setpos: viewport background not updating?

gw.setPos is pretty low-level stuff and a lot of things don’t play nice with it (see earlier threads on retaining proper display aspect, for example) …

16 years ago
Forum
Reply
RE: fibonacci / golden ratio

that’s because you’re not actually drawing a spiral, near’s I can tell. myShape = splineshape() addNewSpline myShape for p in fibonacci_array do ( a…

16 years ago
Forum
Reply
RE: Selecting all instances

something like… mymod = $.modifiers[1] Bend:Bend objs = for ref in (refs.dependents mymod) where ( isKindOf ref GeometryClass ) collect ( ref ) #($E…

16 years ago
Forum
Reply
RE: script called at the same time than a max feature

it’s a bit hidden away, but you are looking for the help topic… Display Panel: Wireframe and Shaded Colors And yes – creating a macro that does what …

16 years ago
Forum
Reply
RE: script called at the same time than a max feature

Unless the command performed is a scripted command (via a macroscript) to begin with, there’s no real way to rewrite what the command does. You can, …

16 years ago
Forum
Page 35 / 94