Run another script in a script

I have two scrpts:

a.komodotool
b.komodotool

Is it possible to run b in a?

Thank you! @careyh

@surfactant,

You certainly can:

var t = ko.toolbox2.getToolsByTypeAndName("macro","My Tools Name")[0]
ko.toolbox2.invokeTool(t)

That should do it.

  • Carey

Hi @careyh Thanks!

1 Like