Author Topic: Access Corona Converter Script Using 3Ds Max Script Command line  (Read 1694 times)

2022-03-10, 11:21:03

arthvaja

  • Active Users
  • **
  • Posts: 8
    • View Profile
Hello there,

I was wandering to convert my whole scene to corona with automation but when we run the corona converter script we need to click the "START CONVERSION" button by our selves however I want to do that using 3ds max scripting.
I have found a few results from google to access corona converter UI but didn't find the way out to convert the scene.
please help me to convert the whole scene using a 3ds max script with automation or a way to access Corona Converter UI using 3ds max script.

Google result that I found:

Code: [Select]
dialogHWND =  windows.getChildHWND 0 "Corona Converter v1.42"
dialogChildren = windows.getChildrenhwnd dialogHWND[1]
for child in dialogChildren where child[4] == "Button" and child[5] == "StartConverting" do
UIAccessor.pressButton child[1]

Thank you.