Welcome to the Invelos forums. Please read the forum rules before posting.

Read access to our public forums is open to everyone. To post messages, a free registration is required.

If you have an Invelos account, sign in to post.

    Invelos Forums->DVD Profiler: Layouts and Reports Page: 1 2 3  Previous   Next
New HTML Window - Extended Features
Author Message
DVD Profiler Unlimited Registrantgoodguy
Sita Sings the Blues
Registered: March 14, 2007
Reputation: Superior Rating
Germany Posts: 1,029
Posted:
PM this userDirect link to this postReply with quote
Well, I understand the possibilities, I just think a more database-like approach instead of freetext files would be more useful.

For example, I'm using a secondary MS Access database to keep track of (among other things) content details and watched events per content. The DVDPro integration looks as following:



Unfortunately, there is no easy way to port this into a public solution, but it might give some ideas.
Matthias
DVD Profiler Unlimited RegistrantRossRoy
Registered: March 13, 2007
Posts: 793
Posted:
PM this userDirect link to this postReply with quote
Quoting goodguy:
Quote:
I don't want to spoil all the fun, but what exactly is the flexibility? All that information can usually be obtained by looking at the back cover (scan). And since it is in an external file, you can't search for data from within DVD Profiler. Or do I miss something?


Well a lot of back covers are unreadable when downloaded from DVDP for many different reasons (too small, reflexive, metallic finish, bad typography choice, typography too small, compression artifacts, etc) so it provides an easy to add the data, without cluttering that single "Other Features" field, or the notes.

Sure, it's not searchable, and from a DB standpoint, rather useless, but honnestly, how often do you find yourself looking for a movie by searching "Finding Quentin's Gals"?

Though I like your approach with a second Db... almost makes me wish I hadn't given up programming so long ago
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,312
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Quoting goodguy:
Quote:
Well, I understand the possibilities, I just think a more database-like approach instead of freetext files would be more useful.

For example, I'm using a secondary MS Access database to keep track of (among other things) content details and watched events per content. The DVDPro integration looks as following:



Unfortunately, there is no easy way to port this into a public solution, but it might give some ideas.


Appreciate that... but some of us don't want a second database for such info... not to mention... not everyone has MS Access... I have had several computers over the last 12 years... and neither of them had MS Access.
Pete
DVD Profiler Desktop and Mobile Registrantpauls42
Reg: 31/01/2003
Registered: March 13, 2007
United Kingdom Posts: 2,692
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting goodguy:
Quote:
Well, I understand the possibilities, I just think a more database-like approach instead of freetext files would be more useful.

For example, I'm using a secondary MS Access database to keep track of (among other things) content details and watched events per content. The DVDPro integration looks as following:



Unfortunately, there is no easy way to port this into a public solution, but it might give some ideas.


it looks very nice. Hopefully it will give some ideas..
Paul
DVD Profiler Desktop and Mobile RegistrantStar Contributorm.cellophane
tonight's the night...
Registered: March 13, 2007
Reputation: High Rating
United States Posts: 3,480
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Quoting goodguy:
Quote:
Well, I understand the possibilities, I just think a more database-like approach instead of freetext files would be more useful.

For example, I'm using a secondary MS Access database to keep track of (among other things) content details and watched events per content. The DVDPro integration looks as following:



Unfortunately, there is no easy way to port this into a public solution, but it might give some ideas.

This is very cool. Can this be done using Excel and exporting to XML?
...James

"People fake a lot of human interactions, but I feel like I fake them all, and I fake them very well. That’s my burden, I guess." ~ Dexter Morgan
DVD Profiler Unlimited RegistrantStar ContributorLopek
Lovely day for a...
Registered: March 13, 2007
United Kingdom Posts: 813
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting goodguy:
Quote:
Well, I understand the possibilities, I just think a more database-like approach instead of freetext files would be more useful.

For example, I'm using a secondary MS Access database to keep track of (among other things) content details and watched events per content. The DVDPro integration looks as following:



Unfortunately, there is no easy way to port this into a public solution, but it might give some ideas.

Could you use an webhosted MySQL database in place of a local MS Access one? Can a HTML window accept PHP to access that info? Could that not open something like this up to be more public - if not the personal watched stuff, but the content info?
Andy

"Credited as" Names Database
DVD Profiler Unlimited Registrantgoodguy
Sita Sings the Blues
Registered: March 14, 2007
Reputation: Superior Rating
Germany Posts: 1,029
Posted:
PM this userDirect link to this postReply with quote
Quoting Lopek:
Quote:
Quoting goodguy:
Quote:
Well, I understand the possibilities, I just think a more database-like approach instead of freetext files would be more useful.

For example, I'm using a secondary MS Access database to keep track of (among other things) content details and watched events per content. The DVDPro integration looks as following:



Unfortunately, there is no easy way to port this into a public solution, but it might give some ideas.

Could you use an webhosted MySQL database in place of a local MS Access one? Can a HTML window accept PHP to access that info? Could that not open something like this up to be more public - if not the personal watched stuff, but the content info?

Of course, you could. MS Access is just what I use. The entire project started almost 3 years ago to supplement DVDPro with features I myself found lacking while trying to avoid duplicating any functionality DVDPro already has. Unlike some of my other projects, it is highly tailored to my personal needs and doesn't take public use into account. That's why I posted it only as an example.

An HTML Section can use XmlHttp to query data from a server. In fact, that's what I use to access the database from within DVDPro to display and search data.

Data entry itself happens in MS Access, both for the content and watched stuff. It is then propagated into the DVDPro database: Content types get the Special Features tickboxes set if they have a match, watched entries for main content are condensed from an hierarchical model and added to the user history.

For a more generic solution, you could do the data entry in the HTML Section and again use XmlHttp to post it to the server and update the database. Of course, that server can be a local one.

The problem with turning something like this into a public solution with shared data is that you basically have to implement an Online DB just like DVDPro itself does - with contribution, download and all that stuff.
Matthias
DVD Profiler Unlimited RegistrantStar ContributorLopek
Lovely day for a...
Registered: March 13, 2007
United Kingdom Posts: 813
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Cheers Matthias.

I may have a play around with it at some point, but like you probably for my personal use only. I really like what you have done; more than I need but has given me some ideas. 
Andy

"Credited as" Names Database
DVD Profiler Unlimited Registrantzefeer
Registered: 10.02.2004
Registered: March 19, 2007
Portugal Posts: 93
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting RossRoy:
Quote:
Just finished (sort-of, I just copied what's written on the backcover) my first EF file! (and it also happens to show my new layout for 1280x1024)



Hi there Ross. Just one simple question. How did u put the tagline window on your db?
Genius !    thanks.
Beauty is in the eye of the beholder!
DVD Profiler Unlimited RegistrantRossRoy
Registered: March 13, 2007
Posts: 793
Posted:
PM this userDirect link to this postReply with quote
Quoting zefeer:
Quote:
Hi there Ross. Just one simple question. How did u put the tagline window on your db?
Genius !    thanks.


Do you mean how I managed to get the window in this position, or how I added the window? 
DVD Profiler Unlimited Registrantzefeer
Registered: 10.02.2004
Registered: March 19, 2007
Portugal Posts: 93
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting RossRoy:
Quote:
Quoting zefeer:
Quote:
Hi there Ross. Just one simple question. How did u put the tagline window on your db?
Genius !    thanks.


Do you mean how I managed to get the window in this position, or how I added the window? 


I'd like to know how did u added the window.
One other thing. i'd like also to know how do i ad a banner to the same window?
Beauty is in the eye of the beholder!
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,312
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
HERE is the thread you are looking for to get a tagline window. The best code for the window is on page 2.
Pete
DVD Profiler Unlimited Registrantzefeer
Registered: 10.02.2004
Registered: March 19, 2007
Portugal Posts: 93
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Hi there Addicted... Thanks is working jut fine! Brilliant Idea by the way.
But I'm also interesting in adding it a banner, similar to the ones we used on EPG.
Do u have any idea how can i make this?
Beauty is in the eye of the beholder!
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,312
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Sorry... not sure on that one.
Pete
DVD Profiler Unlimited RegistrantRossRoy
Registered: March 13, 2007
Posts: 793
Posted:
PM this userDirect link to this postReply with quote
Zefeer, you mean adding an image, with the changing tagline underneath it, all in a single window?
DVD Profiler Unlimited Registrantzefeer
Registered: 10.02.2004
Registered: March 19, 2007
Portugal Posts: 93
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Yes Ross, that is my idea, i just don't know ihow to do it or even if it's possible.
If not in the same html window as the tagline in other.
What do u think?
Beauty is in the eye of the beholder!
    Invelos Forums->DVD Profiler: Layouts and Reports Page: 1 2 3  Previous   Next