Notifications
Clear all

[Closed] Store information outside of maxscript

Hi,

How can I store some information outside of maxscript? Ideally in some .txt file so I could open the files everywhere I am. Can I do this somehow via maxscript or do I need some outside (of max) programming to do this?

2 Replies

mxs can parse a text file or even a file with binary data… the modern trend would be to use xml format though (many examples on here of using xml with dotnet).

the native MAX technique to store some data(settings) is using of methods: setINISetting and getINISetting
see the mxs help for details (and you can search this forum for examples)