Page 1 of 1
A few things
Posted: 2003-01-26 03:56:14
by LaPPe
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.
Posted: 2003-01-26 10:21:35
by antp
Multiple pictures will be possible in the future.
There is a script that makes the sum of all the numbers of disks.
For the filesizes, it is a little difficult, since you may put anything in the field, e.g. if I have two discs for a movie I put something like 700+690...
Posted: 2003-01-26 20:33:04
by Guest
hmmm, I can't seem to find the script that finds the sum of all the numbers of disks.
Could the guru please lead med to it?
Right now I export to html via "template3". Is it possible for me to have it saying "Total: XXX movies. Spread over XXX disks." ???
Posted: 2003-01-26 20:50:16
by antp
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:
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.
You have to create an empty file "tempfile.txt" on C:\
It is not possible to put this total automatically in the HTML template.