I want to write a dynammic text before the picture slides. And this text will animate together the clip, I can I do that?
Thanks
Eduardo
procedure TForm1.PicShow1Stop(Sender: TObject);
begin
Stamped := False;
end;
procedure TForm1.PicShow1BeforeNewFrame(Sender: TObject; Picture, Screen: TBitmap);
begin
if not Stamped then
begin
Stamped := True;
Picture.Canvas.TextOut(10, 10, 'Sample');
end;
end;
procedure TForm1.PicShow1Start(Sender: TObject; Picture, Screen: TBitmap);
begin
Picture.Canvas.TextOut(10, 10, 'Sample');
end;
Return to DELPHI AREA Projects
Users browsing this forum: No registered users and 11 guests