imdb import based on movie URL
imdb import based on movie URL
Is there any way to import some movie informations from imdb using the URL? I have a script which import title, rating full, multiple categories etc. and I want to update some titles with the small/big picture. Thanks.
Using the Tools -> Scripting command, and if you have the IMDB URL in the URL field (for example) you can modify any script like that :
Somewhere in the script there is a line that looks like that :
AnalyzePage('http://us.imdb.com/Tsearch?title='+UrlEncode(MovieName));
Put a // in Front of it to comment it, and add
AnalyzePage(GetField(fieldURL));
Somewhere in the script there is a line that looks like that :
AnalyzePage('http://us.imdb.com/Tsearch?title='+UrlEncode(MovieName));
Put a // in Front of it to comment it, and add
AnalyzePage(GetField(fieldURL));
You are right, I called with "Get Information -> From Script" (Shift + F10), not with "Tools -> Scripting" (F6). In this version it work, for my surprize, even if I don't provide the title, just the URL, wich is what I wanted.
Is a little longer way, there are 2 more clicks, but it works! Thank you very much for your answers and for this beautiful program!
P.S. Anything new about the version 4?
Is a little longer way, there are 2 more clicks, but it works! Thank you very much for your answers and for this beautiful program!
P.S. Anything new about the version 4?