i wanna make an animation
so used this code
but it doesn't work he only plays frame 1 so no animation what's wrong
can some one help

mitch

[pascal] heli := Tback.Create(DXSpriteEngine1.Engine);
heli.Image := Form1.DXImageList1.Items.Find('Pacman');
heli.X := 10;
heli.Y := 10;
heli.Width := 28;
heli.Height := heli.Image.Height;
heli.AnimStart := 0;
heli.AnimCount := 2;
heli.AnimLooped := True;
heli.AnimSpeed := 50/1000;[/pascal]