Notifications
Clear all

[Closed] Increase format string length to fix "…"

im using format to output to a file, however my string is really long, so max is putting in the “…” at the end of my array.

I have forgotten how to fix this in maxscript.

3 Replies

Hi Gibbz

options.printAllElements = true

or the exception safe method:

with printAllElements on
   (
 -- format / print etc
   )

cheers guys!