How to use the same animation twice on the screen?

I try really hard with searching the forums and the documentation and the sample projects, but I couldn’t find anything.

I have an animation, which I want to use twice on the same screen.

[code]local sheet = sprite.newSpriteSheet( “images/myimage.png”, 32, 32 )

local spriteSet = sprite.newSpriteSet(sheet, 1, 7)
sprite.add( spriteSet, “eyes”, 1, 7, 200, 0 ) – play 15 frames every 200 ms

local instance = sprite.newSprite( spriteSet )
instance1.x = 128
instance1.y = 128

instance1:prepare(“eyes”)
instance1:play()[/code]

If I add a second local instance with other coordinates, my image will be shown twice, but the animation plays only on the first one.

Any help, please? [import]uid: 6587 topic_id: 5703 reply_id: 305703[/import]

Never Mind!

I got it

[code]local sheet = sprite.newSpriteSheet( “images/myimage.png”, 32, 32 )

local spriteSet = sprite.newSpriteSet(sheet, 1, 7)
sprite.add( spriteSet, “eyes”, 1, 7, 200, 0 ) – play 15 frames every 200 ms

local instance1 = sprite.newSprite( spriteSet )
instance1.x = 128
instance1.y = 128

local instance2 = sprite.newSprite( spriteSet )
instance1.x = 228
instance1.y = 228

instance1:prepare(“eyes”)
instance1:play()
instance2:prepare(“eyes”)
instance2:play()[/code] [import]uid: 6587 topic_id: 5703 reply_id: 19519[/import]