Hi Carl,
Access the Image object created by ImageIntegration
Use the following property of ImageIntegration:
String ImageIntegration.integrationImageIdFor example:
var II = new ImageIntegration;
// blah
var ok = II.executeGlobal();
if ( ok )
{
var window = ImageWindow.windowById( II.integrationImageId );
...
}Save the file in FITS without a thumbnail
The FITS format support module does not have format hints to disable generation of thumbnail images, so you cannot prevent their inclusion programmatically. You have to disable thumbnails on the FITS Format Preferences dialog. To open this dialog, open the Format Explorer window and double click the FITS item on the left panel.
is it possible to execute a ProcessContainer from JavaScript?
Of course, just as any object derived from ProcessInstance, that is, by calling executeGlobal() or executeOn(), as required.
However, in most cases a ProcessContainer does not make too much sense from a script. You can apply a list of process instances sequentially, and you have more flexibility and control this way.