chaining images in C-Script (.wdl)
'I' believe 'you' can use a var[array] to store images for use in a sequence.
Code:
// theory / example only;  code will NOT work as is 
BMAP im1 = "sp1.tga";
//-load them all from a directory automatically?
BMAP* im_;  // image pointer
var im_a[32]; // image (handle var) array
var im_nC = 0; // image count 0 - 31
var im_nI = 0; // current image index
//...
im_a[im_nC] = handle(im1);
im_nC+=1;
//...
//next image
im_nI+=1;
im_ = ptr_for_handle(im_a[im_nI]);
panel.bmap = im_;