cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
swiergi11
Level III

Control Panel for multiple scripts

Hi,

Just wondering is there some sort of control panel I could create for my scripts so they all can be run with push of the button externally from script itself?

I have close to 50 scripts which in total create ~150 control charts and I was wondering if I could use some application where I can sort those scripts based on the set criteria and run them  all at ones and not to go to all 50 of them one by one.

 

Thanks T

2 REPLIES 2
ih
Super User (Alumni) ih
Super User (Alumni)

Re: Control Panel for multiple scripts

You can use the include() function to read and execute another jsl file.  An add-in to would let you package the scripts together makingit easy to share them with others and you could create a single script which could call all of the others.

 

Include( "$SAMPLE_SCRIPTS/chaosGame.jsl" );

To create an Add-in I suggest using the Add-In Manager.

swiergi11
Level III

Re: Control Panel for multiple scripts

thank a lot