ja sam uspio napraviti ovako:
OnTimer1:
if (image1.width = 48) and (image1.height = 48) then
timer1.enabled:=False
else
begin
image1.width:=image1.width + 2;
image1.height:=image1.height + 2;
end;
OnTimer2:
if (image1.width = 32) and (image1.height = 32) then
timer2.enabled:=False
else
begin
image1.width:=image1.width - 2;
image1.height:=image1.height - 2;
end;