Author |
Message |
Registered: March 19, 2007 | Posts: 93 |
| Posted: | | | | I really like to make mine worked... but I just can't. Can anyone post a sort of walk trough? Damn! this is so confusing to me! Thanks. | | | Beauty is in the eye of the beholder! |
|
Registered: March 13, 2007 | Posts: 646 |
| Posted: | | | | Quoting zefeer: Quote: I really like to make mine worked... but I just can't. Can anyone post a sort of walk trough? Damn! this is so confusing to me! Thanks. A tutorial? I'll see what I can do. |
|
Registered: March 13, 2007 | Reputation: | Posts: 922 |
| Posted: | | | | Looks like your approach from the old thread wasn't futile in the end... Nice work, but perhaps you should put all options in one block and write a readme.txt for all the different possibilities. | | | Deutsches DVD Profiler Forum: www.dvdprofiler-forum.de |
|
Registered: March 13, 2007 | Posts: 646 |
| Posted: | | | | Yes, it sure looks like it Thank you! ...and thanks for suggesting the block and readme.txt approach. Yes, I think I'll do the block suggestion but I must do something more than a readme, to simplify more for people that are not familiar with javascript. I am planning a webpage thingy with screen shots, explaining how to configure it and showing every possible thing it can do. I'll let you guys know when its up. |
|
Registered: March 13, 2007 | Posts: 646 |
| Posted: | | | | It's up! Link in sign C/C anyone? |
|
Registered: March 13, 2007 | Posts: 793 |
| Posted: | | | | Looking good! Guess I should update my current 1.1 version now |
|
Registered: March 13, 2007 | Posts: 646 |
| Posted: | | | | If you wish ...me wonders how many that is actually using this... hole thing would be nice to know |
|
Registered: March 16, 2007 | Posts: 68 |
| Posted: | | | | I'm using it! It's great to actually be able to find out what each episode is about. Thanks, the tutorial is very good too. | | | Last edited: by bdixon |
|
Registered: March 13, 2007 | Posts: 793 |
| Posted: | | | | Xyrano: I have a question. I just "installed" the new EPGL, looking good so far. I just have 1 issue I'm hoping you can help me fix. I can't seem to find a way to get the links footer to always be active, even if the EPGL/Links is not set (as I don't use tags). |
|
Registered: March 13, 2007 | Posts: 646 |
| Posted: | | | | bdixon: Thank you, enjoy! Quoting RossRoy: Quote: Xyrano:
I have a question. I just "installed" the new EPGL, looking good so far. Thank you!
I just have 1 issue I'm hoping you can help me fix. Sure, shoot!
I can't seem to find a way to get the links footer to always be active, even if the EPGL/Links is not set (as I don't use tags). Yes, there is! Here is what you do. Set useFooterTagName to an empty string and useTheFooter to true. Like so: Quote: var useFooterTagName = ""; // <-- SET var useTheFooter = true; // <-- SET true/false Hm, looks like I've missed explaining how to set this up in the tutorial, thanks for the reminder, RossRoy! ...and where is the god damn :smackselfonforeheadsmiley: when you need one, hu!? |
|
Registered: March 13, 2007 | Posts: 793 |
| |
Registered: March 15, 2007 | Reputation: | Posts: 5,459 |
| Posted: | | | | I hope you don't mind but I've added a few lines of code to mine that checks for "Television" genre, and if it doesn't find it then it doesn't show the footer. I added this to the configuration block: Quote: // Check for TV Genre var TVFound = false; for (var i = 0; i < DP_Genres.length; i++) { if (DP_Genres[i] == "Television") { TVFound = true; break; } } and this to the Footer 1.2 section: Quote: if (TVFound == false) useTheFooter = false; Just above the code that checks the value of useTheFooter. Thought I might share it and see if other people liked it. I also added this line to the same Footer 1.2 section to hide the footer if an episode guide already exists, but it only works for Notes (what I use): Quote: if (useNotes == true && DP_Notes.indexOf("<epg=1>") != -1) useTheFooter = false; |
|
Registered: March 13, 2007 | Posts: 646 |
| Posted: | | | | No, not at all. It's a good idea! Personally, I would have gone with hiding it when there is a EPG and show it when there is 'Television' in Genre field, and I would also have keept the tag option, so I could control the visibility of it regardless of whats in the genre field. |
|
Registered: March 15, 2007 | Reputation: | Posts: 5,459 |
| Posted: | | | | I tried getting it to hide when an EPG is showing, but I couldn't get it to work, so I just get it to recheck the Notes section instead! And I'm not a big user of tags so didn't want to try writing code for that and totally screw it up! |
|
Registered: March 13, 2007 | Posts: 646 |
| Posted: | | | | I'll add it, when I do the next update |
|
Registered: March 27, 2007 | Posts: 19 |
| Posted: | | | | Is there something special to change if I use disc id instead of upc. I get upc to show, but, not using disc id. | | | |
|