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 ... 120 121 122 123 124 [125] 126 127 128 129 130 ... 133
2481
Thank you for this one exports Database Record ID.

2482
Support / Re: Bug: Export templates and UTF8BOM
« on: July 06, 2010, 05:30:01 am »
Quote
Every template using UTF8BOM generates three characters (the byte order mark) at the beginning of the exported file.

So that's why I was getting "?»?" at the beginning of my files. I'm glad I'm not alone. :-\
With me is the same as using in XP Pro SP 3.

2483
I found some solution to this, but now I test how it works and will be reported somewhere in September how the testing was successful and maybe something from that published for other users using PVD.

2484
How to add Custom Field.

User Comments
Technical Specs:
Top 250:
IMDB Votes

2485
Plain Text Templates for Export:Sample templates question.

What do I need to change in this
Code: [Select]
URL {#StringReplace '{%value=url}' 'http://www.imdb.com/title/' ''}I will get full url address to IMDB,
Quote
URL                                               tt0147800/
http://www.allmovie.com/work/10-things-i-hate-about-you-177526
http://www.moviemeter.nl/film/714
http://www.mymovies.it/dizionario/recensione.asp?id=32867
http://www.zelluloid.de/filme/index.php3?id=664
and now is just like that..

What I have to change in this
Code: [Select]
Images:
----------------------------------------------------------
Screenshots: {%value=screenshots params="full" template="pages\screens.ptm"}
Front cover: {%value=froncover}
CD cover: {%value=cdcover}
Poster: {%value=poster}
that I got into film images folder Front Cover,CD cover and several poster images. Now I have a single poster image in images folder, I would like I have the all images for a single movie.

Example:

For the movie   10 Things I Hate About You  I have Four poster images.
                     100 Girls                            I have Three poster images.
                     After The Sunset                I have Four Poster images.
                     Boot Hill                            I have Five poster images.

I have a large number of films where I have more than one poster image.

2486
Scripts and Templates / Re: Allmovie Script
« on: June 26, 2010, 07:12:01 am »
I have suggestion for AllMovie script, if possible added to the script profile option
(Film) Awards and links to similar or other similar works (films) with the addition of the year and film director.
Individuals would have the option, of course, if you wish to make visible in a custom field.
Thanks.

2487
Scripts and Templates / Re: Allmovie Script
« on: June 23, 2010, 12:37:23 pm »
Quote
I tried the code (/ / Review, / / Features (DVD releases) and / / Description) but no success.
I did it just change the custom field to another custom field, not the text in the second custom field.

2488
Scripts and Templates / Re: Allmovie Script
« on: June 21, 2010, 06:13:51 pm »
Quote
Similar Works and Other Related Works for example at this site: http://www.allmovie.com/work/the-matrix-177524
I tried the code (/ / Review, / / Features (DVD releases) and / / Description) but no success.
I am very interested in it that would be visible in the script, but I have no idea how to do it.
Similarly, on IMDB.com under Movie connections, but it is shown differently on both sides.

2489
Scripts and Templates / Re: Allmovie Script
« on: June 20, 2010, 03:53:06 pm »
I have a question:

Would it be possible (if at all possible), how to make the code for Similar Works and Other Related Works for example at this site: http://www.allmovie.com/work/the-matrix-177524

Maybe even both codes in a custom field, for example in the field Awards.

Thanks for the reply and effort in advance.

2490
Scripts and Templates / Re: Allmovie Script
« on: June 16, 2010, 09:52:11 am »
Cast Tab is a solution Here.

2491
Support / [SOLVED] AllMovie Cast(Actors) in custom items
« on: June 16, 2010, 09:45:18 am »
The AllMovie script:
I original code
Code: [Select]
procedure ParseCast(HTML : String);
var
 curPos, EndPos : Integer;
 Name, Role, URL : String;
begin
 curPos := Pos('<div id="results-table">', HTML);
 if curPos < 1 then
  Exit;
  
  
 //Actors              
 EndPos := curPos;
 curPos := PosFrom('http://www.allmovie.com/artist/', HTML, curPos);
 while (curPos > 0) AND (curPos < PosFrom('</table>', HTML, EndPos)) do begin
  EndPos := PosFrom('">', HTML, curPos);
  
  URL := Copy(HTML, curPos, EndPos - curPos);
  
  curPos := EndPos + 2;
  EndPos := PosFrom('</a>', HTML, curPos);
  
  Name := Copy(HTML, curPos, EndPos - curPos);
  
  curPos := PosFrom('<em>', HTML, EndPos);
  if curPos > 0 then begin
   curPos := curPos + 4;
   EndPos := PosFrom('</em>', HTML, curPos);
  
   Role := Trim(Copy(HTML, curPos, EndPos - curPos));
  end else begin
   Role := '';  
   curPos := EndPos;
  end;
  
  AddMoviePerson(Name, '', Role, URL, ctActors);

  if curPos > 0 then
   curPos := PosFrom('http://www.allmovie.com/artist/', HTML, curPos)
  else
   Exit;  
 end;
end;
I replaced it with this code
Code: [Select]
procedure ParseCast(HTML : String);
var
curPos, EndPos : Integer;
 TmpStr : String;
 Name, Role, URL : String;
begin
 curPos := Pos('<div id="results-table">', HTML);
 if curPos < 1 then
  Exit;
  
  TmpStr := '';
  
 EndPos := curPos;
 curPos := PosFrom('http://www.allmovie.com/artist/', HTML, curPos);
 while (curPos > 0) AND (curPos < PosFrom('</table>', HTML, EndPos)) do begin
  EndPos := PosFrom('">', HTML, curPos);
  
  URL := Copy(HTML, curPos, EndPos - curPos);
  
  curPos := EndPos + 2;
  EndPos := PosFrom('</a>', HTML, curPos);
  
  Name := Copy(HTML, curPos, EndPos - curPos);
  
  curPos := PosFrom('<em>', HTML, EndPos);
  if curPos > 0 then begin
   curPos := curPos + 4;
   EndPos := PosFrom('</em>', HTML, curPos);
  
   Role := Trim(Copy(HTML, curPos, EndPos - curPos));
  end else begin
   Role := '';  
   curPos := EndPos;
  end;
  
  if TmpStr <> '' then
   TmpStr := TmpStr + #13;  
  if URL <> '' then
   TmpStr := TmpStr + '<link url="' + URL + '">';
  TmpStr := TmpStr + Name;
  if Role <> '' then
   TmpStr := TmpStr + ' - ' + Role;
  if URL <> '' then
   TmpStr := TmpStr + '</link>';

  if curPos > 0 then
   curPos := PosFrom('http://www.allmovie.com/artist/', HTML, curPos)
  else
   Exit;  
 end;
  
 AddCustomFieldValueByName('Actors', TmpStr);
end;

Actors are now in the custom items (custom items: custom field Actors and Memo field) just as Production.

[attachment deleted by admin]

2492
Support / Re: AllMovie Url in custom items
« on: June 15, 2010, 03:06:14 pm »
Final solution:
Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
  AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else
  AddFieldValue(mfURL, MovieURL);

//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
    AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('Url', '<link url="' + MovieURL + '">' + MovieURL + '</link>');

The first part of the code is changed back to original
Code: [Select]
AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('AMG Url', MovieURL);
changed to original
Code: [Select]
AddFieldValue(mfURL, MovieURL);
another piece of code is added to the new.
Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
    AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('Url', '<link url="' + MovieURL + '">' + MovieURL + '</link>');

Quote
If you remove AddFieldValue(mfURL, MovieURL);, the URL will not be added to the URL field and the script will not be able to update the record without searching for it again.

Now, the record be updated without a new search.

2493
Support / Re: AllMovie Url in custom items
« on: June 14, 2010, 09:32:10 pm »
Now I found a partially correct code for AllMovie Url:

This code
Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
    AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('Url', '<link url="' + MovieURL + '">Url For Movie</link>');
works properly but can not display AllMovie Url.

This code
Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
    AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('Url', '<link url="' + MovieURL + '">' + MovieURL + '</link>');
is working properly and it appears that AllMovie Url.

Attached are pictures to prove it is indeed shown AllMovie Url.
I apologize for the first scan picture Before AllMovie Url logo can be seen as Portable Appz so I added an additional figure.

If you remove AddFieldValue(mfURL, MovieURL);, the URL will not be added to the URL field and the script will not be able to update the record without searching for it again. I suppose you could modify the script to use the new field, but I don't have a clue how to do that.

To display a URL as a hyperlink, use a memo field.

Rick.ca here is a partial answer to the second part of the reply(quote).
Quote
I suppose you could modify the script to use the new field, but I don't have a clue how to do that.

In the first part still attached to the reply(quote).
Quote
If you remove AddFieldValue(mfURL, MovieURL);, the URL will not be added to the URL field and the script will not be able to update the record without searching for it again.
Quote
To display a URL as a hyperlink, use a memo field.
Only by hand not automatically.

[attachment deleted by admin]

2494
Support / Re: People view problem
« on: June 13, 2010, 06:11:56 pm »
Hi all.

I think PVD could be the answer to all my movie database prayers, thx. :)

I got some problems though.
In people mode when sorting by date in tree view, PVD shows me the date folders in the left window, fine.
But I can't expand any of them, and when I try to expand the top folder, I get this error:
conversion error from string "13-06-2010" Overflow occurred during data type conversion. Error Code 14.

I also get the "cannot read" memory error in viddb.exe when exiting PVD 0.9.9.21 (all updated)
This only happens, when using TheMovieDB


A similar problem is described here.

2495
Scripts and Templates / Re: Question:Skin PVD Movie Tab
« on: June 12, 2010, 07:00:01 am »
For skins described or skins published here is the following notice:

For skins described or skins published here,will be no more updates for this version and later versions of PVD, which come in the future.  ;)

Since there is no interest for skins ,so this theme (no more) are closed,  :(
because I'll skin (first post) in the immediate future update (everything in the Slovenian language I translate into English) is a topic open again.  :D

BTW: ;) Maybe I'll  in autumn uploaded a new skin and updates with added information from AllMovie.com. :)

2496
Support / Re: How are movies stored on Hard drive??
« on: June 12, 2010, 05:51:23 am »
OK, now I see what you wanted to ask.
Quote
But when storing media on HD, I am streaming to xbox, so I think this way may not work.
I am thinking of having movies in one directory and a total reliance on PVD for managing them.
Sorry, this (xbox) unfortunately I have no experiences.

2497
Feature Suggestions / Re: Import PVD database
« on: June 11, 2010, 09:20:28 pm »
With me, the media database
Code: [Select]
( I am interested in knowing how others store their media on Hard drives and how they then
catalog them in PVD).
to an external hard disk arranged by category.
Example:
    Action
    Comedy
    Western
and
     Rest.
.

In PVD, I have the custom section done custom field Movie Categories and manually confirmed one of the categories of films that I have an external disk.
Arrangements may also be in the File Information.

2498
Support / Re: AllMovie Url in custom items
« on: June 10, 2010, 04:29:41 pm »
Here is a solution :

Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
    AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('AMG Url', '<link url="' + MovieURL + '">Url For Movie</link>');
or
Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
    AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('Url', '<link url="' + MovieURL + '">Url For Movie</link>');

Work,I have tested and show pictures attached.


Even this
Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
  AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('AMG Url', MovieURL);

//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
    AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
AddCustomFieldValueByName('Url', '<link url="' + MovieURL + '">Url For Movie</link>');
 
like this added together, I have tested ,work,
and show pictures 1 attached.

[attachment deleted by admin]

2499
Support / Re: Moviedb problem
« on: June 10, 2010, 06:23:38 am »
Maybe the problem is also in this.
I noticed that the modernization of the movie information from MovieDB, rating
not displayed in Additional rating box, but displayed in IMDB rating box.
At least for me I noticed a different Rating numbers.

2500
Support / Re: AllMovie Url in custom items
« on: June 09, 2010, 08:08:30 pm »
I did not change this
Code: [Select]
//Get URL
 EndPos := Pos('">Overview</a>', HTML);
 if EndPos > 0 then begin
  curPos := PrevPos('<a href="', HTML, EndPos);
  AddFieldValue(mfURL, Copy(HTML, curPos + 9, EndPos - curPos - 9));
 end else

  //AddFieldValue(mfURL, MovieURL); // Changed to:
.

I just changed this
Code: [Select]
AddCustomFieldValueByName('AMG Url', '<link>'+ MovieURL + TmpStr1 + '</link>');.

I came to this result, as seen in attached images.It is not a hyperlink and the URL is not work.
Who may have some idea of chance how this might give way to edit.

I helped a little bit of DVD releases code here.

[attachment deleted by admin]

Pages: 1 ... 120 121 122 123 124 [125] 126 127 128 129 130 ... 133