Think you might have misread MikeT's reply.
myImage1:TImage = LoadAnimImage(path$,32,32,0,5)
myImage2:TImage = LoadAnimImage(path$,32,32,5,5)
myImage3:TImage = LoadAnimImage(path$,32,32,10,5)
That will load your 3 separate animations, from the same file, into 3 separate TImages.
LoadAnimImage loads images from left to right. When it reaches the right hand side of the image, it goes down to the next row, and so on. The images in a so-called animstrip don't need to be horizontally arranged. For example, you could load a five-frame 32x32 animation from a 32 wide x 192 high image, or from a 192x32 image, or from a 64x96 image (although there'd be a blank frame in the lower right corner of the image file, in that case, since an image that size could contain six frames).