I was thinking of using a script to build an IN file like:
Code:
[c:\data\scripts\script1.kix]
run=1
[c:\data\scripts\script2.kix]
run=0
[c:\data\scripts\script3.kix]
run=1
[c:\data\scripts\script4.kix]
run=1
[c:\data\scripts\script5.kix]
run=1



The section names would be fully qualified script names in the order you wanted to execute them. The value under the section would signify if the script should execute or not.

This code would then be the parent that uses the INI file to execute those scripts you desire in the specified order.
Code:
$File = "c:\data\scripts\junk.ini"
if exist($File)
$ScriptArray = split(ReadProfileString($File,"",""),chr(10))
for each $script in $ScriptArray
if val(ReadProfileString($File,$script,"run"))
? "Execute: " + $script
else
? "DO NOT execute: " + $script
endif
next
else
? "File not found: " + $File
endif

_________________________
Home page: http://www.kixhelp.com/hb/