What would be the correct way to close running Zorro instances from the master (by pressing [Stop])
Code
while  (zStatus(2) or zStatus(3) or zStatus(4) or zStatus(5) ) { 
 if (!wait(300)) { zClose(0); return 1;}				
}
zClose(0) is supposed to close all instances, but this doesn't happen.