This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

18 lines
325 B
ObjectPascal

// Клонирование графических объектов
uses ABCObjects,GraphABC;
var bt: TextABC;
begin
var x := 224;
bt := new TextABC(60,110,110,'Hello!',RGB(x,x,x));
while x>32 do
begin
Sleep(40);
x -= 32;
bt := bt.Clone;
bt.Color := RGB(x,x,x);
bt.MoveOn(7,7);
end;
end.