I'm working with Python and STK integration. I need to build scenarios and save them, the problem is that I cannot find any saving example on AGI's documentation. Here is a starting point:
import win32com.client
uiApplication = win32com.client.Dispatch('STK11.Application')
uiApplication.Visible = True
root = uiApplication.Personality2
root.NewScenario('this_Scenario')
satellite = root.CurrentScenario.Children.New(18, 'this_Satellite') # eSatellite
input("Press enter to exit script.")
How to tell STK to save the created scenario?