All Movie Guide (En) Broken?
All Movie Guide (En) Broken?
I can't seem to get any info using the All Movie Guide script. Anybody else see this?
Thanks
I uploaded it to http://www.antp.be/temp/scripts/
I uploaded it to http://www.antp.be/temp/scripts/
I modified the line 513 by
to see the year and the director on the list of title.
Code: Select all
MovieTitle := GetStringFromHTML(Page, '284px;word-wrap:break-word;"><a', '">', '</a>') + ' - ' + GetStringFromHTML(Page, '70px;word-wrap:break-word;"', '>', '</TD>') + ' - ' + GetStringFromHTML(Page, '190px;word-wrap:break-word;"', '>', '</TD>');
-
- Posts: 21
- Joined: 2006-01-01 10:04:57
Script update 0.4.1
Changes in this version:
a. Add year to list of titles returned by the site's search.
b. Pre-filter search results to just show movies, reducing unwanted matches from showing up.
New version sent to Antoine, please wait until its uploaded.
a. Add year to list of titles returned by the site's search.
b. Pre-filter search results to just show movies, reducing unwanted matches from showing up.
New version sent to Antoine, please wait until its uploaded.
Last edited by GameGod on 2006-07-27 15:09:06, edited 1 time in total.
Thanks, I've already modified the script to add the year to the title. I noticed this problem when the search returned multiple results with the same namebaffab wrote:I modified the line 513 byto see the year and the director on the list of title.Code: Select all
MovieTitle := GetStringFromHTML(Page, '284px;word-wrap:break-word;"><a', '">', '</a>') + ' - ' + GetStringFromHTML(Page, '70px;word-wrap:break-word;"', '>', '</TD>') + ' - ' + GetStringFromHTML(Page, '190px;word-wrap:break-word;"', '>', '</TD>');
Thanks for your work on this!
I find when I am searching for a movie tital that is also found under the AMG "Name" search - eg "Emma" or "Spinal Tap", the movie search results aren't part of the pick tree, just the name search results. Any possibility of forcing the search results to show the movie results only?
I find when I am searching for a movie tital that is also found under the AMG "Name" search - eg "Emma" or "Spinal Tap", the movie search results aren't part of the pick tree, just the name search results. Any possibility of forcing the search results to show the movie results only?
I made this change and solved my own problem: on line 559, add '+~T1' as follows:
From: AnalyzePage('http://www.allmovie.com/cg/avg.dll?p=avg&opt1=12&sql=' + StringReplace(URLEncode(MovieName) + '~T1', '%20', '+'));
To:
AnalyzePage('http://www.allmovie.com/cg/avg.dll?p=avg&opt1=12&sql=' + StringReplace(URLEncode(MovieName) + '~T1', '%20', '+'));
From: AnalyzePage('http://www.allmovie.com/cg/avg.dll?p=avg&opt1=12&sql=' + StringReplace(URLEncode(MovieName) + '~T1', '%20', '+'));
To:
AnalyzePage('http://www.allmovie.com/cg/avg.dll?p=avg&opt1=12&sql=' + StringReplace(URLEncode(MovieName) + '~T1', '%20', '+'));