|    | 
CImageSet:Append
The Append method appends, or "adds" a CImage to the end of the image set.
| CImageSet:Append( CImage ) | 
This method adds a CImage at the end of the set. In comparison, the Insert method adds a CImage at a position in the image set prior to a numerical index.
The following script fragment uses a loop to interactively append images until you click [Cancel] on the Open dialog. Note that the images are not closed after being opened, so they are available for use.
| S = CImageSet:new() | -- create a CImageSet | 
| I = CImage:new() | -- create a CImage | 
| while ( true ) do | 
 | 
| local sPath, bOk = GetFileName() | -- use the Open dialog to get a filename | 
| if ( not bOk ) then Exit() end | -- exit the loop after hitting Cancel | 
| I:Open(sPath) | -- load the image | 
| S:Append( I ) | -- add the image to the end of the set | 
| end | 
 |