- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Control Panel for multiple scripts
thank a lot