A few things

Comments on existing version & Suggestions for future versions. If you want a new feature suggest it here. Discussions about beta versions also come in this section.
Post Reply
LaPPe

A few things

Post 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.
antp
Site Admin
Posts: 9675
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post 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...
Guest

Post 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." ???
antp
Site Admin
Posts: 9675
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post 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.
Post Reply