Serejah
@serejah
New Member
Joined: Feb 14, 2024
Topics: 34 / Replies: 1221
Reply
RE: File exist issue with maxscript

Hope it is clear enough actionMan.executeAction 0 “40472” — open MAXScript listener fn OnFileCreated sender event_args = ( format “>> %\n”…

5 years ago
Forum
Reply
RE: File exist issue with maxscript

Unique name for each rendered frame 3ds Max SDK and MaxScript this is not a batch render. it’s easy. you can rename the files after render …

5 years ago
Forum
Reply
RE: File exist issue with maxscript

you can use FileSystemWatcher

5 years ago
Forum
Reply
RE: Maxscript listBox refresh

It is a good idea to show some of your code when you have a problem with it try (destroydialog X ) catch () rollout X “” ( local items = #( #(“1″…

5 years ago
Forum
Reply
RE: [Solved] [Maxscript] How to use regular expression to associate an object with a proxy?

Lithirium: I need to compare thoses results because I would like to duplicate each object and align them with the right proxy. An object can be alig…

5 years ago
Forum
Reply
RE: [Solved] [Maxscript] How to use regular expression to associate an object with a proxy?

proxy_names = #(“proxy_001_1200x300″,”proxy_002_1200x300″,”proxy_001_1200x400″,”proxy_650x350”) object_names = #(“object_1200x300″,”object_1300x300”,…

5 years ago
Forum
Reply
RE: How to make planar baseed on the selected face with maxscript?

get selection center project all verts of the selection to the plane delete objects gc light:true obj = plane widthsegs:7 lengthsegs:7 width:100 len…

5 years ago
Forum
Reply
RE: MAXScript Editor: how to turn off "Use Monospaced Font" option by default?

GSystems: When creating a new script, the option “Use Monospaced Font” is again turned on. Wow, that was unexpected

5 years ago
Forum
Reply
RE: MAXScript Editor: how to turn off "Use Monospaced Font" option by default?

In case if you won’t find a setting that turns in on/off put it in startup scripts folder — IDM_MONOFONT Toggle Use Monospaced Font windows.sendM…

5 years ago
Forum
Reply
RE: Can't access HWND in 3dsmax 2020 (here we go again)

I personally hate that kind of code, but it works in 2014 & 2020 fn GetCommandPanelHWND = ( local g = (dotNetClass “Autodesk.Max.GlobalInterface…

5 years ago
Forum
Reply
RE: Locate the largest gap in a sequence of numbers

max_gap = 0 index = 0 for i=1 to arr.count – 1 where max_gap < (diff = arr[i+1] – arr[i]) do ( max_gap = diff; index = i ) [ max_gap, index, index …

5 years ago
Forum
Reply
RE: Check FTP login

wrapping it with try catch may help if ( try ( ConnectToFTP login pass ) catch ( undefined ) ) != undefined ) do ( … )

5 years ago
Forum
Reply
RE: How to enter text in editText with UIAccessor and close dialoge

I couldn’t make it work in create mode without it throwing an exception ( tested in max 2014 only ) In modify mode it works as expected … DialogMon…

5 years ago
Forum
Reply
RE: How to generate mesh from vertices?

Charlo020: close enough together. if any triangle side of terrain mesh is longer than you would expect – delete this triangle

5 years ago
Forum
Reply
RE: How to generate mesh from vertices?

yes, it won’t work if any point is exactly above of some other point Perhaps it can be fixed if we randomly move points a little before applying terr…

5 years ago
Forum
Page 37 / 84