I'm new to scripting and need a bit of a push. I use the IMDB script for pulling metadata and would like to modify it slightly. In brief I want to create and populate a new field.
I have noticed that the IMDB trailers can be found at
http://www.imdb.com/title/ttnnnnnnn/
where ttnnnnnnn is the IMDB UID for the movie. I also notice in the IMDB script that the movie URL is created around the lines
Code: Select all
MovieURL := 'http://imdb.com/title/tt' + MovieNumber;
// URL
if CanSetField(fieldURL) then
SetField(fieldURL, MovieURL);
My question is, then what? I need to assign the created trailer URL to a variable that I can get to from the reporting markup pages. Do I just make one up?
I see also there's a script that uses Youtube trailers so there's a choice I guess. Bit by bit though I'd like to learn more about AMC hopefully without driving you guys nuts with my questions.
Many thanks
emu