Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Ivek23

Pages: 1 ... 123 124 125 126 127 [128] 129 130 131 132 133
2541
Support / Re: Where is PVD Skin Engine Manual
« on: April 25, 2010, 08:29:52 am »
Thank you for this.

2542
Scripts and Templates / Re: Allmovie Script
« on: April 21, 2010, 01:11:24 pm »
Here I managed to Description the script.

Would need a small help Features code for Features on the same page.

2543
Support / Re: Where is PVD Skin Engine Manual
« on: April 21, 2010, 09:49:40 am »
OK, thanks,soon is was direct link from home page,damage that not now.

2544
Support / [SOLVED] Where is PVD Skin Engine Manual
« on: April 21, 2010, 06:35:31 am »
Where is the link to PVD Skin Engine Manual,about two day gone by.

2545
Scripts and Templates / Re: Allmovie Script
« on: April 19, 2010, 02:45:08 pm »
How would the script work

Code: [Select]
//Aka
 AddFieldValue(mfAka, TextBetween(HTML, '<span>AKA</span>', '</table>', True, curPos));

 //Box office
 curPos := PosFrom('<span>Box office</span>', HTML, EndPos);
 if curPos > 0 then begin
  curPos := PosFrom('<li>', HTML, curPos) + 5;
  EndPos := PosFrom('</li>', HTML, curPos);
  
  TmpStr := Copy(HTML, curPos, EndPos - curPos);
  curPos := Pos('/', TmpStr);
  if curPos > 0 then
   Delete(TmpStr, curPos, Length(TmpStr) - curPos + 1);
  curPos := Pos(':', TmpStr);
  if curPos > 0 then
   Delete(TmpStr, curPos, Length(TmpStr) - curPos + 1);
  AddCustomFieldValueByName('Money', TmpStr);
 end;

if this or something like that remove away.

I hope it's okay and it works.

2546
Scripts and Templates / Re: Allmovie Script
« on: April 19, 2010, 07:25:29 am »
I will explain the Movie Title The Matrix:

Longer way:

The first use URL:
http://www.allmovie.com/work/the-matrix-177524

to get to this page,then go to DVD Releases View,(http://www.allmovie.com/dvd/releases/the-matrix-177524)

Easier way:
Through this

Code: [Select]
//Features (DVD releases)
curPos := PosFrom('<td class="large-list-title" style="padding-top: 13px; padding-bottom: 1px;">', HTML, EndPos);
TmpStr := TextBetween(HTML, '<td class="large-list-title" style="padding-top: 13px; padding-bottom: 1px;">', '>View DVD Releases</a></td>', False, curPos);
TmpStr1 := StringReplace(TmpStr, '» <a href=', '', True, True, False);
If TmpStr1 <> '' then
AddFieldValue(mfFeatures, '<link url=' + TmpStr1 + '>DVD Releases</link>');

I get through this

<link url="http://www.allmovie.com/dvd/releases/the-matrix-177524">DVD Releases</link>
directly to this page DVD releases for:

then choose a title such as this one Matrix (Sep 21, 1999 Warner Home Video)     Feature confirm the movie title Matrix and I get to this page the url http://www.allmovie.com/dvd/matrix-4529

Copy this url in PVD to rest url  and then can I get rating for DVD Rating and Feature Rating,and this

Code: [Select]
//DVD Rating
 AddCustomFieldValueByName('DVD rating', '0');
 curPos := PosFrom('<img src="/img/st_r', HTML, EndPos);
 if curPos > 0 then begin
  curPos := PosFrom('alt="', HTML, curPos) + 5;
  EndPos := PosFrom(' ', HTML, curPos);
  
  AddCustomFieldValueByName('DVD rating', FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2));  
  
 end else
  curPos := EndPos;

//Feature Rating
 AddCustomFieldValueByName('Feature rating', '0');
 curPos := PosFrom('<img src="/img/st_r', HTML, EndPos);
 if curPos > 0 then begin
  curPos := PosFrom('alt="', HTML, curPos) + 5;
  EndPos := PosFrom(' ', HTML, curPos);
  
  AddCustomFieldValueByName('Feature rating', FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2));  

when I run my on new modified AllMovie + (Ivek23) script.


2547
Scripts and Templates / Re: Allmovie Script
« on: April 18, 2010, 06:44:10 pm »
Obviously it will be necessary to manually enter this address

http://www.allmovie.com/dvd/100-girls-19609

you must manually enter the url.However, this would then

Code: [Select]
//DVD Rating
 AddCustomFieldValueByName('DVD rating', '0');
 curPos := PosFrom('<img src="/img/st_r', HTML, EndPos);
 if curPos > 0 then begin
  curPos := PosFrom('alt="', HTML, curPos) + 5;
  EndPos := PosFrom(' ', HTML, curPos);
 
  AddCustomFieldValueByName('DVD rating', FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2)); 
   
 end else
  curPos := EndPos;

//Feature Rating
 AddCustomFieldValueByName('Feature rating', '0');
 curPos := PosFrom('<img src="/img/st_r', HTML, EndPos);
 if curPos > 0 then begin
  curPos := PosFrom('alt="', HTML, curPos) + 5;
  EndPos := PosFrom(' ', HTML, curPos);
 
  AddCustomFieldValueByName('Feature rating', FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2)); 

should work.I will inform how it works.

2548
Scripts and Templates / Re: Allmovie Script
« on: April 18, 2010, 02:39:43 pm »
Here
Code: [Select]
//DVD Rating
 AddCustomFieldValueByName('DVD rating', '0');
 curPos := PosFrom('<img src="/img/st_r', HTML, EndPos);
 if curPos > 0 then begin
  curPos := PosFrom('alt="', HTML, curPos) + 5;
  EndPos := PosFrom(' ', HTML, curPos);
 
  AddCustomFieldValueByName('DVD rating', FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2)); 
   
 end else
  curPos := EndPos;

//Feature Rating
 AddCustomFieldValueByName('Feature rating', '0');
 curPos := PosFrom('<img src="/img/st_r', HTML, EndPos);
 if curPos > 0 then begin
  curPos := PosFrom('alt="', HTML, curPos) + 5;
  EndPos := PosFrom(' ', HTML, curPos);
 
  AddCustomFieldValueByName('Feature rating', FloatToStr(StrToFloat(Copy(HTML, curPos, EndPos - curPos)) * 2)); 

from this link
http://www.allmovie.com/dvd/100-girls-19609

what needs to be corrected that even if this will work.

2549
Support / Re: Covers.mrcat.org not work
« on: April 18, 2010, 12:55:18 pm »
Thanks.

2550
Support / Re: Covers.mrcat.org not work
« on: April 18, 2010, 08:23:42 am »
Now part of the normal web page but not imports front Cover or disc cover in PVD.
Is that how it is regulated.

2551
Scripts and Templates / Re: Allmovie Script
« on: April 16, 2010, 07:08:38 am »
Wanted to say
Quote
You mean you want a script that
also at this link
Quote
http://www.allmovie.com/dvd/100-girls-19609
of course if it were possible.

2552
Scripts and Templates / Re: Allmovie Script
« on: April 16, 2010, 06:25:28 am »
I think it would be interesting to have such information for those who do not have the original movies on DVD or other media.

2553
Scripts and Templates / Re: Allmovie Script
« on: April 16, 2010, 06:20:28 am »
Quote
If I ever do want use it for it's intended purpose, I'm sure I'll be happy to replace the link with the actual feature information for the DVD I own.

I would ask, therefore, actual feature information.
But I would also welcome the script for additional information AllMovie DVD release, as are they:
100 Girls:

(http://www.allmovie.com/dvd/releases/100-girls-249188)
http://www.allmovie.com/dvd/100-girls-19609

2554
Scripts and Templates / Allmovie Script
« on: April 15, 2010, 08:13:02 pm »
The AllMovie site has been replaced by AllRovi.
See AllRovi movie script for Scripts and Templates board.
Post it now in AllRovi movie script for Support board.



I have a question (the initiative) to AllMovie script:
Would it be possible to add this script from AllMovie.com:
View DVD Releases

View DVD Releases
as
DVD releases for:

It would be very interesting I hope that more of such advice.

2555
Support / Re: Problem with the Zacca and VinT families skins
« on: April 15, 2010, 07:20:26 pm »
OK, thanks for the clarification.

2556
Scripts and Templates / Re: Question:Skin PVD Movie Tabs
« on: April 15, 2010, 06:30:10 pm »
Quote
Next to it is pvd_movie_tabs extra + Modified the xml and txt and pictures Modified Skin
I have Modified with the help of this here AllMovie + (Ivek23)

All in zip file.


2557
Scripts and Templates / Re: AllMovie+(Ivek23)
« on: April 15, 2010, 05:59:33 pm »
I will also shortly be uploaded image here

2558
Scripts and Templates / Re: AllMovie+(Ivek23)
« on: April 15, 2010, 05:53:28 pm »
I also edited the original script AllMovie but I do not published.

If someone is interested in you can get the code and how I edited the custom items.

List what I changed:

Rating            Stay that way
MPAA             --->transferred to AllMovie + (Ivek23) script
Aka                --->transferred to AllMovie + (Ivek23) script
Genre             --->transferred to AllMovie + (Ivek23) script
Tags               --->transferred to AllMovie + (Ivek23) script
Studio            --->transferred to AllMovie + (Ivek23) script
Box office       --->transferred to AllMovie + (Ivek23) script


Perhaps I changed something in the future I informed at least I hope.

Duration        (--->transferred to AllMovie + (Ivek23) script)

Here's the code

Code: [Select]
//Duration
 curPos := PosFrom('">', HTML, EndPos) + 2;
 EndPos := PosFrom(' ', HTML, curPos);
 
 AddFieldValue(mfDuration, Copy(HTML, curPos, EndPos - curPos));
 
 LogMessage('Duration:' + Copy(HTML, curPos, EndPos - curPos));

Replace with this code
Code: [Select]
//Duration
 curPos := PosFrom('">', HTML, EndPos) + 2;
 EndPos := PosFrom(' ', HTML, curPos);
 
 AddCustomFieldValueByName('Original Duration', Copy(HTML, curPos, EndPos - curPos));  
 
 LogMessage('Duration:' + Copy(HTML, curPos, EndPos - curPos));

and got into custom items Original duration.

2559
Support / Problem with the Zacca and VinT families skins
« on: April 15, 2010, 04:48:12 pm »
Windows XP PRO SP3
800x600 screen resolution
PVD 9.1.19


Why do I have problems in the skins of families Zacca and VinT and the skin pvd_movie_themovedb.

The moment is always my preference to skin from these familie pvd_movie_themovedb PVD or blocked me or I have a blank screen (not open database)with other skin,these problems can not.

2560
Scripts and Templates / Re: AllMovie+(Ivek23)
« on: April 15, 2010, 07:12:22 am »
Ok,Thanks

Pages: 1 ... 123 124 125 126 127 [128] 129 130 131 132 133