hi folks, sorry for bothering.
i needed covers with equal size, dvdempire has almost every cover, but they have different sizes.
allmovie covers are good for export. put i want the script to search for original title and not the translated.
does anyone know if something like apples coverflow is possible with amc?
help, i need a modded script
What do you mean by searching for original title? (I do not know how that site/script works, but usually others use original title)
For that "Coverflow" thing, from what I see in Google it is something where you see and handle the images like you would handle disc cases on a shelf? Maybe it could be done using a lot of Javascript or Flash on data exported by AMC... all is possible.
But I do not know if it has been done yet.
For that "Coverflow" thing, from what I see in Google it is something where you see and handle the images like you would handle disc cases on a shelf? Maybe it could be done using a lot of Javascript or Flash on data exported by AMC... all is possible.
But I do not know if it has been done yet.
Re: help, i need a modded script
Are you using batch mode or manual mode ? Can you give an example for original/translated title where search does not work as you'd like to ?vij wrote:allmovie covers are good for export. put i want the script to search for original title and not the translated.
This is quite easy. You need to open and edit the file "StringUtils7552.pas" from your scripts folder (you can use scripts editor from within AMC or use another text editor). In the file search for the these lines :vij wrote:if the script looked for the original title, it would make work much easier.
Code: Select all
//------------------------------------------------------------------------------
// returns the movie name stored in amc
//------------------------------------------------------------------------------
Function GetMovieName:string;
begin
result := GetField(fieldTranslatedTitle); // first translated
if result = '' then result := GetField(fieldOriginalTitle); // or original
end;
Code: Select all
//------------------------------------------------------------------------------
// returns the movie name stored in amc
//------------------------------------------------------------------------------
Function GetMovieName:string;
begin
result := GetField(fieldOriginalTitle); // first original
if result = '' then result := GetField(fieldTranslatedTitle); // or translated
end;
You need to edit the file "StringUtils7552.pas" (you can find it in your scripts folder), not the allmovie script. There you will find the GetField(fieldOriginalTitle) that needs to be changed. The allmovie script (and maybe some others) uses this file.vij wrote:i have the same issue with the all movie script.
i cant find the "get field translated title" in the source code.
help would be much appreciated
thanks in advance