Page 1 of 1
All Movie Guide (En) Broken?
Posted: 2006-07-03 23:22:48
by GameGod
I can't seem to get any info using the All Movie Guide script. Anybody else see this?
Posted: 2006-07-04 19:51:29
by antp
Other people saw it as I already received few e-mails about that, but I did not receive any update of the script yet.
Posted: 2006-07-10 14:33:14
by GameGod
I've sent a fixed version to Antoine. Please let me know if it works/has problems.
Thanks.
Posted: 2006-07-10 17:00:49
by antp
Posted: 2006-07-21 09:39:53
by baffab
I modified the line 513 by
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>');
to see the year and the director on the list of title.
Posted: 2006-07-27 04:32:00
by klepptoman
GameGod Wrote "I've sent a fixed version to Antoine. Please let me know if it works/has problems"
The script is still importing random picture istead of the one for the title you request.
Thanks
Posted: 2006-07-27 14:43:21
by GameGod
klepptoman wrote:The script is still importing random picture istead of the one for the title you request.
Thanks
I don't see this problem. Can you give me a few examples (titles)?
Script update 0.4.1
Posted: 2006-07-27 14:50:35
by GameGod
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.
Posted: 2006-07-27 14:54:57
by GameGod
baffab wrote:I modified the line 513 by
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>');
to see the year and the director on the list of title.
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 name
Posted: 2006-08-18 19:33:05
by donnah
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?
Posted: 2006-08-18 19:48:41
by donnah
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', '+'));