If you need help on how to use the program
jermine01
Posts: 7 Joined: 2012-04-04 18:45:22
Post
by jermine01 » 2012-04-04 18:55:47
I just started using Ant movie catalog. I want to add the no. of votes that each movie receives from imdb. How do I do this? Thanks.
antp
Site Admin
Posts: 9651 Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:
Post
by antp » 2012-04-06 08:29:01
Hi,
Do you have some programming knowledge? As that would require to modify the script for IMDb, if it does not offer that option...
jermine01
Posts: 7 Joined: 2012-04-04 18:45:22
Post
by jermine01 » 2012-04-06 19:51:45
Unfortunately, I don't know any programming. Isn't there any other way?
antp
Site Admin
Posts: 9651 Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:
Post
by antp » 2012-04-07 09:37:31
Find someone who will modify the script for you then
jermine01
Posts: 7 Joined: 2012-04-04 18:45:22
Post
by jermine01 » 2012-04-07 18:16:21
I found out how to download the no. of votes in the imdb script but I don't like the way it is implemented.
jermine01
Posts: 7 Joined: 2012-04-04 18:45:22
Post
by jermine01 » 2012-04-22 20:25:04
I don't Like the way the User ratings and No. of votes is inserted in the field.
eg. Instead of 'User Rating: 8.0 out of 10 (with 426,493 votes)' I would like it to show as '8.0/10 (426,493 Votes)'
Is there any way to do this? Thanks.
bad4u
Posts: 1148 Joined: 2006-12-11 22:54:46
Post
by bad4u » 2012-04-22 21:33:50
Choose IMDB script from the list, then click editor button. Now find line
Code: Select all
Value := 'User Rating: ' + GetField(fieldRating) + ' out of 10 (with ' + Value + ')';
and replace with
Code: Select all
Value := GetField(fieldRating) + '/10 (' + Value + ')';
If you want to replace 'votes' (beginning with small letter) with 'Votes' (starting with capital letter), add following line behind the modified line:
Code: Select all
Value := StringReplace(Value, 'votes', 'Votes');
Remember that you have to do these changes again when there are future script updates.
jermine01
Posts: 7 Joined: 2012-04-04 18:45:22
Post
by jermine01 » 2012-04-25 15:38:47
Can the color of the no. of votes be changed? Eg. 8.0/10 (426,493 Votes) instead of 8.0/10 (426,493 Votes)?
antp
Site Admin
Posts: 9651 Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:
Post
by antp » 2012-04-26 13:14:53
Not in the program itself.
You could add HTML tags to make that appear that way when exporting to HTML, but then you would see the HTML in the text in the program.