The changesprite() function can be used to alter the appearance of a Simple Sprite. ChangeSprite() substitutes new image data for the data currently used to display a Simple Sprite. It is called by the following sequence: struct ViewPort *vp; struct SimpleSprite *sprite; APTR newdata; ChangeSprite(vp, sprite, newdata); The vp input to this function is a pointer to the viewport for this sprite or 0 if this Sprite is relative only to the current view. the sprite argument is a pointer to a simplesprite data structure. (you must allocate an actual SimpleSprite structure for sprite to point to.) Set newdata to the address of an image data structure containing the new image. The data must reside in Chip (memf_chip) memory. The structure for the new sprite image data is shown below. It is not a system structure, so it will not be found in the system includes, but it is described in the documentation for the changesprite() call. struct spriteimage { UWORD posctl[2]; /* position and control data for this Sprite */ /* Two words per line of Sprite height, first of the two words * contains the MSB for color selection, second word contains * LSB (colors 0,1,2,3 from allowable color register selection * set). Color '0' for any Sprite pixel makes it transparent. */ UWORD data[height][2]; /* actual Sprite image */ UWORD reserved[2]; /* reserved, initialize to 0, 0 */ };