Movieclips Speed

In my previous projects I never used movieclips or sprite so im somewhat new to this, the problem im having is when I create a movieclip the speed
is way to fast and I cant seem to slow it down even if I change the startFrame,
endFrame ect. . .

Im just trying to make a bird flap its wings (testing movieclip) it consist of 3
images what would you recommend me Sprite or movieclip? And if movieclip
how do i slow down the speed to change to next image ?

Thanks in advance, and here is my code i`m using to test movieclip

[code]local myAnim = movieclip.newAnim{“images/bird.png”, “images/bird2.png”, “images/bird3.png”}
myAnim.x = _W
myAnim.y = _H
localGroup:insert(myAnim)

myAnim:play{ startFrame=1, endFrame=6, loop=0, remove=false } [import]uid: 30314 topic_id: 9982 reply_id: 309982[/import]

Solution: I guess I had an outdated movieclip.lua, I found a newer
movieclip.lua in code exchange that allows you to use a setSpeed()
method and it seems to be working great.

Hope this helps for anyone else wanting to change the speed of a
movieclip

link to modified movieclip: http://developer.anscamobile.com/code/modified-moviecliplua [import]uid: 30314 topic_id: 9982 reply_id: 36432[/import]