k4noe
@k4noe
New Member
Joined: Feb 15, 2024
Topics: 8 / Replies: 69
Reply
RE: Get type of selected item/object ?

( local fmt = format , clsOf = classOf for i in selection do ( fmt “Object Name : % | Class : % ” (i.name) (clsOf i) ) )

8 years ago
Forum
Reply
8 years ago
Forum
Reply
RE: How to transfer data from C# to maxscript

some can some not …I believe if you use “lambda” in c#, it’ll hard to use it directly using maxscript but if its some native method that max c# versi…

8 years ago
Forum
Reply
RE: How to transfer data from C# to maxscript

public static string sayHelloWord (string str) { string hell= str; return hell; // if you want just say string // returned ex:str= “hello” in maxscri…

8 years ago
Forum
Reply
RE: unable to convert: undefined to type: String

you should define strArr first as empty array , since you use “if – do” like this may be [B]strArr = “”[/B] — define strArr as empty string — th…

8 years ago
Forum
Reply
RE: Lambda Expressions in Maxscript – II

I wonder whats the purpose behind of doing this ? I dont see this will speed up workflow of doing thing in ms-ing, a riddle scripting, or is this to m…

8 years ago
Forum
Reply
RE: Creating Layers populated by current selection

Hope it help ( — select something first local lay = “practice” local newLay = LayerManager.newLayerFromName lay for i in selection do newLay.addNod…

8 years ago
Forum
Reply
RE: [MaxScript] Beginner – Simple load and assign textures to a model

Its matter… Coz different renderer had different mat that they support as default, put it vray, people that use vray mostly use vraymtl, when you r…

8 years ago
Forum
Reply
Reply
RE: dotnet forms

Hope it help… try (frm.close()) catch() frm = dotNetObject “form” frm.FormBorderStyle = frm.FormBorderStyle.FixedSingle –or you could use –frm.M…

8 years ago
Forum
Reply
RE: open the last scene found by modification date?

I suggest the easiest way is to make ui… Using listview would be great but unfortunately i cant do that right now coz im on vacation. You could find s…

8 years ago
Forum
Reply
RE: open the last scene found by modification date?

@manue, please use code wrapping before you writte the code, like this “[-code]–your code[-/code]”… Without strip… To make the code look “beautiful”…

8 years ago
Forum
Reply
RE: open the last scene found by modification date?

hope this’ll help theFiles= getfiles ((GetDir #autoback)+ “\\*.max”) — change it to your directory dateFiles= for i in theFiles collect #(i,getFil…

8 years ago
Forum
Reply
RE: MaxScript Tutorials

still worth it…even 5 or so years ago…as long as you understand the basic …it ll became your step stone on your later…

8 years ago
Forum
Reply
RE: mergeMaxFile options?

— this is basic idea, i havent tried it yourfiles=#(“Z:\\ModelPath\\ModelName.max”,”Z:\\ModelPath\\ModelName.max”) — insert yourfile name here wit…

8 years ago
Forum
Page 2 / 6