I'd like to be able to add more pictures e.g. a screenshot to judge the quality of the video and maybe the backcover too...
Second, I'd like some more info about the disks.
-A feature in Statistics showing how many disks all together
-And the accumulated filesize of all the movies together - not much needed, really, but it would be rather fun.
A few things
I do not remember if I included the script with the program.
It was in this topic: viewtopic.php?t=315
Here is the script:
You have to create an empty file "tempfile.txt" on C:\
It is not possible to put this total automatically in the HTML template.
It was in this topic: viewtopic.php?t=315
Here is the script:
Code: Select all
program CountDisks;
var
Total: Integer;
TempFile: TStringList;
begin
TempFile := TStringList.Create;
TempFile.LoadFromFile('c:\tempfile.txt');
Total := StrToInt(TempFile.Text, 0);
Total := Total + 1;
TempFile.Text := IntToStr(Total);
TempFile.SaveToFile('c:\tempfile.txt');
TempFile.Free;
end.
It is not possible to put this total automatically in the HTML template.