Jump to content

Run IronPython Script Last


Recommended Posts

  • 2 months later...

You can execute one script after another through below code:

from Spotfire.Dxp.Application.Scripting import ScriptDefinition

from System.Collections.Generic import Dictionary

import clr

 

scriptDef = clr.Reference[scriptDefinition]()

Document.ScriptManager.TryGetScript("otherScript", scriptDef)

params = Dictionary[str, object]()

Document.ScriptManager.ExecuteScript(scriptDef.ScriptCode, params)https://community.spotfire.com/wiki/using-ironpython-call-script-tibco-spot...

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...