I want to control 3ds max from a command-line. The problem is that every time I run it through cmd it opens a new instance. Is there any possibility to manipulate working instance of the program through the command-line?

link|improve this question
feedback

3 Answers

There's no easy (build-in) way to achieve this, but it's possible through COM or even a dotnet socket server. The idea is to build a bridge and sent maxscript commands. Backburner achieves this to start max in a special server mode and make it listen to the server through a pipe, but there's no documentation if this could be leveraged for custom solutions. What are you trying too achieve?

link|improve this answer
feedback

@JHN: I´m trying to achieve the hardwarelockID from 3dsmax through python interpreter... I´ve tried a few parsing methods using subprocess but no good :/ ... Any ideas?

:EDIT 2012-04-28: http://download.autodesk.com/us/3dsmax/2012help/index.html?url=files/GUID-8DD74086-FE75-4585-9BD3-ED22BEE4A39-2953.htm,topicNumber=d28e546553

link|improve this answer
feedback

renato, Johan hello.

Does it have to be Python? If you were to do this via a dotnet, it would be a simple matter of referencing managedservices.dll and calling the executeIntMaxscriptQuery function.

In maxscript it would be like this but it would be not much different in C#

(dotnetclass "managedservices.maxscriptSDK").ExecuteIntMaxscriptQuery "HardWareLockID"

Im just finding my feet with Python, but if you were using Iron Python you would be able to use the managedservices.dll too if i'm not mistaken.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.