animate
if button1.Caption='播放' thenanimate1.play(1,31,5);
button1.Caption:='停止' ;
else
animate1.Stop;
button1.Caption:='播放' ;
按钮开始是播放 按下去变停止
按停止 变播放
if button1.Caption = '播放' then begin animate1.play(1, 31, 5); button1.Caption := '停止'; end else begin animate1.Stop; button1.Caption := '播放'; end;