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->General: General Discussion Page: 1... 6 7 8 9 10 11  Previous   Next
DVD Profiler Episode Guides (in HTML Window or Notes Section)
Author Message
DVD Profiler Unlimited RegistrantStar ContributorCharlieM
Registered Sept 5 2005
Registered: May 20, 2007
Reputation: High Rating
United States Posts: 2,934
Posted:
PM this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Like Pete, html is not my strong point.

Here is the coding in my epgl for troubleshooting.

Quote:
<!-- quirks mode -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
<!--
body { margin: 0; background-color: rgb(0, 0, 83); padding: 0 0 50px 0; }
div, a { color: white; font-family: verdana; font-size: 10pt; }
div#messages { position: absolute; top: 0; left: 0; z-index: 0; margin: 25 0 0 18; width: 80%; height: 50%; background-color: rgb(0, 0, 83); }
div#loadError { color: red; }
div#footer { position: absolute; bottom: 0; left: 0; width: 100%; height: 50px; display: box; }
@media screen { body>div#footer { position: fixed; } }
* html body { overflow: hidden; }
* html iframe#epgLoader { height: 100%; overflow: auto; }
-->
</style>
<script type="text/javascript">
<!--
<DP NAME="HEADER_VARS" Language="JavaScript" Comments="True" IncludeCast="False" IncludeCrew="False">

/*
The problem is choice!!! Who said that? 0-o
######## TV Episode Guide Loader ########
@title - TV Episode Guide Loader
@filename - EpisodeGuideLoader.html
@version - 1.2.1
@date - 2007-05-14
@author - xyrano
@dependencies - DVD Profiler v3+, working HEADER_VARS.
@configurable - true :D
@thanks - Ken and Gerri @invelos.com. To the EPG crew. To all the people who created these EPG's. To the ones whom I've forgot

@update 1.2.1:
- Removed most comments, please see the TV Episode Guide Loader - Tutorial.
- Rearranged variables after priority (Configuration block).

@update 1.2:
- Added Tag support for Link section.

@update 1.1:
- Fixed excludeLocality return value.
- Fixed tryLoadEPGAnyway option (did nothing in 1.0)
- Added link to the numeric titles @ epg.source
- Changed innerHTML to innerText
- Fixed access/permission denied issues for IE7 users
- Opened up most options... so "something is happening"

@initial release @invelos.com 1.0
*/

// -------- Configuration block - Start --------
// TV Episode Guide Storage Location (EPGSL)
var pathToEpGStorage = "C:\\Documents and Settings\\Charles Means\\My Documents\\DVD Profiler\\EPG\\"; // <-- SET

// filename
var fileNamePrefix = ""; // <-- SET
var excludeLocality = true; // <-- SET true/false
var fileNameSuffix = ".html"; // <-- SET .htm/.html

// TAGS
var tagName = "EPGL/Load"; // <-- SET
var useFooterTagName = "EPGL/Links"; // <-- SET

var useNotes = true; // <-- SET true/false
var useNotesFilename =true; // <-- SET true/false
var useTagName = true; // <-- SET true/false
var useTheIFrame = true; // <-- SET true/false
var useTheFooter = true; // <-- SET true/false
var tryLoadEPGAnyway = false; // <-- SET true/false

// error messages
var errUPCFilename = "Get UPC filename, but no file. 404";
var errNoteUPC = "Notes say get UPC Filename, but no file. 404";
var errNoteFilename = "Notes say Filename, but no file. 404";
var errTagMessage = "Tag say EPG, but no file. 404";
var errIFrameMessage = "No TV Episode Guide available!";

// Some variables for the footer.
var epgURLSource = "epg.dvdaholic.me.uk";
var epgURLSourceSearch = "?letter=";
// -------- Configuration block - The End --------
// -------- Alright, we're set, let's begin! :D --------
var useTheUPCasFileName = true;
var pageToLoad, filenameFoundinNotes, tagFound;
function init() {
    // Build pageToLoad, remember what was done.
    // UPC // 1.1
    var filename = "";
    if (useTheUPCasFileName == true) {
        var upc = fileNamePrefix + DP_UPC;
        if (excludeLocality == true && upc.indexOf(".") != -1)  upc = upc.substring(0, upc.lastIndexOf("."));
        pageToLoad = pathToEpGStorage + upc + fileNameSuffix;
        fileName = upc + fileNameSuffix;
    }
    // File name in Notes  // 1.1
    filenameFoundinNotes = false;
    if (useNotesFilename == true) {
        var sint = DP_Notes.indexOf("[epgfn=");
        if (sint != -1) {
            fileName = DP_Notes.substring(sint, DP_Notes.indexOf("]", sint));
            fileName = fileName.replace("[epgfn=","");
            if (fileName.indexOf(".htm") == -1) fileName += fileNameSuffix;
            pageToLoad = pathToEpGStorage + fileName;
            filenameFoundinNotes = true;
        }
    }
    // <epg=1> in Notes
    var epg1noteFound = false;
    if (useNotes == true && DP_Notes.indexOf("<epg=1>") != -1) epg1noteFound = true;
    // Tags
    tagFound = false;
    if (useTagName == true) {
        for (var i = 0;  i < DP_Tags.length;  i++) {
            if (DP_Tags[i].toLowerCase() == tagName.toLowerCase()) {
                tagFound = true;
                break;
            }
        }
    }
    // Footer // 1.1
    // 1.2
    if (useFooterTagName != "") {
        useTheFooter = false;
        for (var i = 0; i < DP_Tags.length; i++) {
            if (DP_Tags[i].toLowerCase() == useFooterTagName.toLowerCase()) {
                useTheFooter = true;
                break;
            }
        }
    }
    if (useTheFooter == false) (document.getElementById) ? document.getElementById('footer').style.display = "none" : document.all['footer'].style.visibility = "none";
    // Excecute // 1.1
    if (useTheUPCasFileName == true || filenameFoundinNotes == true) {
        if (tryLoadEPGAnyway == true) noIFrame(); // Fly through it
        if (filenameFoundinNotes == true) doIt(fileName);
        else if (useTagName == true && tagFound == true) doIt(fileName);
        else if (useNotes == true && epg1noteFound == true) doIt(fileName);
    } else alert("Configure the script!");
}

function noIFrame() {
    window.location = pageToLoad;
}

var booleanTestIt;
var obj = new Object();
function doIt(fileName) {
    // 1.1
    if (useTheIFrame == true) {
        obj.loadingFile = (document.getElementById) ? document.getElementById('loadingFile') : document.all['loadingFile'];
        obj.loadingFile.innerText += fileName;
        obj.loadingFile.style.visibility = "visible";
        booleanTestIt = false;
        loadEpGInIFrame();
    }
}

function loadEpGInIFrame() {
    // 1.1
    if (typeof window.frames['epgLoader'] == 'object') {
        window.frames['epgLoader'].location = pageToLoad;
        booleanTestIt = true;
    } else noIFrame();
}

function testIFrameContent() {
    // 1.1
    if (booleanTestIt == true) {
        var iframeWin = window.frames['epgLoader'];
        if (typeof iframeWin == 'object') {
            obj.loadError = (document.getElementById) ? document.getElementById('loadError') : document.all['loadError'];
            try {
                (iframeWin.location.href.indexOf('res:') == -1) ? showIFrame(): showMessages();
            } catch (e) { // Catche IE7 access/permission denied and just display iframe and 1 error message
                showIFrame();
                if (useNotes == true) obj.loadError.innerText = errNoteUPC;
                if (useTagName == true && tagFound) obj.loadError.innerText = errTagMessage;
                if (filenameFoundinNotes == true) obj.loadError.innerText = errNoteFilename;
                obj.loadError.style.visibility = "visible";
            }
        } else noIFrame();
    }
}

function showIFrame() {//?IE5:IE4
    // 1.1
    if (useTheFooter == false) document.body.style.padding = "0";
    var iframeElement = (document.getElementById) ? document.getElementById('epgLoader') : document.all['epgLoader'];
    iframeElement.style.width = '100%';
    iframeElement.style.height = '100%';
    (document.getElementById) ? document.getElementById('profileTitle').style.visibility = "hidden" : document.all['profileTitle'].style.visibility = "hidden";
    obj.loadingFile.style.visibility = "hidden";
    (document.getElementById) ? document.getElementById('messages').style.visibility = "hidden" : document.all['messages'].style.visibility = "hidden";
}

function showMessages() {
    // 1.1
    if (useTheUPCasFileName == true) obj.loadError.innerText = errUPCFilename;
    if (useNotes == true) obj.loadError.innerText = errNoteUPC;
    if (useTagName == true && tagFound) obj.loadError.innerText = errTagMessage;
    if (filenameFoundinNotes == true) obj.loadError.innerText = errNoteFilename;
    obj.loadError.style.visibility = "visible";
    (document.getElementById) ? document.getElementById('noEpGAvailable').style.visibility = "visible" : document.all['noEpGAvailable'].style.visibility = "visible";
}
// Body // 1.1
//-->
</script>
</head>
<body scroll="no" onload="init();" oncontextmenu="return false;">
<div id="messages" style="visibility: hidden;">
<div id="profileTitle" style="visibility: visible; width: 100%;">Title: <script
    type="text/javascript">document.write(DP_Title);</script></div>
<div id="loadingFile" style="visibility: hidden; width: 100%">Loading file... </div>
<div id="loadError" style="visibility: hidden; width: 100%;"></div>
<div id="noEpGAvailable" style="visibility: hidden; width: 100%;"><script
    type="text/javascript">document.write(errIFrameMessage);</script></div>
</div>
<iframe id="epgLoader" name="epgLoader" src="about:blank" border="0"
    width="0" height="0" frameborder="0"
    onload="if (booleanTestIt) testIFrameContent();"></iframe>
<div id="footer" name="footer"
    style="visibility: visible; padding: 6pt;"
    oncontextmenu="return false;"><script type="text/javascript">
document.write('Get more TV Series Episode Guides ');
document.write('<a href="http://' + epgURLSource + '" target="_new" onFocus="blur(this);">here</a>!');
document.write("<br><nobr>");
document.write('<span style="margin-right: 2pt; cursor: default;">' +
    '<a href="http://' + epgURLSource + '/' + epgURLSourceSearch + '_"' +
    ' target="_new" onFocus="blur(this);">#</a></span>');
for (var i = 65; i < 91; i++) {
    document.write('<span style="margin-right: 2pt; cursor: default;">' +
        '<a href="http://' + epgURLSource + '/' + epgURLSourceSearch + '&#' + i + ';"' +
        ' target="_new" onFocus="blur(this);">&#' + i + ';</a></span>');
}
document.write("</nobr>");
</script></div>
</body>
</html>


Here is the EPG

Quote:

<html>
<body bgcolor="black">
<font color= "white">
<center><img src="11.jpg"><br><b>The Complete Series Episode Guide</b><br><b><u>Season 1:</u></b></center>

<b>Witchblade</b><br>While investigating the murder of her childhood friend, NYPD Detective Sara Pezzini comes in contact with an ancient gauntlet, which melds onto her wrist and protects her from harm -- forever changing her destiny. It is the Witchblade, an ancient weapon that heightens her powers of perception and transforms into a formidable sword that is one with its wearer. With an arsenal of amazing powers -- and a mind of its own -- the Witchblade is both a blessing and a curse. Now Sara must learn its secrets in order to master its mystery before it masters her.<br><br>
<b>1. Parallax</b><br>Pezzini comes into conflict with experimentally bred super-soldiers called "Black Dragons." Her foe in this one is a Black Dragon named Hector "Moby" Mobius. Moby is inhumanly and impossibly strong and sleek. The socially withdrawn predator seems to be stalking Sara's nemesis, Ian Nottingham.<br><br>
<b>2. Conundrum</b><br>Sara and Jake are caught up in the world of high fashion when a stunning young model is murdered. Sara's connection to the legacy of the Witchblade becomes more mysterious when she uncovers a link between her past and the dead model's roommate. As the investigation progresses, Sara's instincts lead her to Kenneth Irons, his ex-lover and owner of a prestigious modeling agency.<br><br>
<b>3. Diplopia</b><br>When Sara and Jake investigate the murder of a prominent Soho art dealer, they quickly narrow their search to an artist who turns out to be one of an unknown number of identical brothers connected to the myth of the Witchblade. Sara seeks answers about the Witchblade from the incarcerated Dominique Boucher and Internet artifacts dealer, Gabriel Bowman<br><br>
<b>4. Sacrifice</b><br>Pezzini is investigating ritual murders, mutilations and druidic sacrifices. She crosses paths with an Irish rock star named Conchobar whose music is mysteriously linked to the crimes.<br><br>
<b>5. Legion</b><br>The ghost of a murdered Catholic priest tells Sara (Yancy Butler) that the Nazis, the Vatican and the Witchblade were linked during World War II.<br><br>
<b>6. Maelstrom</b><br>True to the Celtic legend of Conchobar and Cathain, Sara races against a ticking clock to save her new love when he's kidnapped and used as bait by an anti-terrorist group intent on arresting his brother for past IRA deed. In the end, the battle for Conchobar's life becomes a battle for the Witchblade.
<b>7. Periculum</b><br>Sara faces the ultimate Witchblade trial; Jake is recruited into a secret brotherhood of vigilante police officers.<br><br>
<b>8. Thanatopsis</b><br>A sniper's bullet kills Sarah and Jake's pursuit of an arms dealer, and triggers the discovery of some explosive information.<br><br>
<b>9. Apprehension</b>Sara is immersed in an investigation surrounding the murder of a pimp when a mysterious package is delivered to her. Her world begins to unravel when clues suggest the enemy may not be who she thought. The only thing she can trust now is the knowing eye of the Witchblade.<br><br>
<b>10. Convergence</b><br>On the lam from the NYPD, Sara turns to Jake for help, but is Jake in on the conspiracy against her? Meanwhile, Kenneth Irons struggles to stay alive as he spins out a plot to attain the one gruesome elixir that can save him.<br><br>
<b>11. Transcendence</b><br>In this mind-blowing season finale, Jake plays his trump card, but ends up revealing a greater web of conspiracy and puts Sara and her friends in the lethal hands of Kenneth Irons. Now Sara must call upon the untapped powers of the Witchblade to save them all from Iron's evil scheme.<br><br>
<center><b><u>Season 2</u></b></center>
<b>1. Emergence (Part 1)</b><br>In the season premiere, it's a case of deja vu when Sara Pezzini is once again chosen to wield the Witchblade. But when the sinister Kenneth Irons vows to take the powerful weapon from her, can she master its powers in time to defend her destiny?.<br><Br>
<br>2. Destiny (Part 2)</b><br>Using the powers of the Witchblade, Sara saves the life of her partner, Danny Woo. But when Irons procures an ancient weapon, can she save herself as the battle for the Witchblade turns into a fight to the death?<br><br>
<b>3. Agape</b><br>As Sara and Danny investigate a series of bizarre drug-related murders, rookie detective Jake is pulled into a sting with a questionable cop. Now Sara must learn to use the Witchblade to solve the crime and save Jake before it's too late.<br>
<b>4. Consectatio</b><br>Obsessed with his feelings for Sara Pezzini and possessed by the spirit of Kenneth Irons, Ian Nottingham contracts with a group of deadly assassins to murder Sara. But when he later regrets his decision, will it be too late to call off the killers and save Sara?.<br><br>
<b>5. Static</b><br>When a rock star meets his untimely demise, Sara and Danny are called in on a series of strange homicides. But when Sara discovers that the killer is using a trail of mayhem to lure her into a trap, her investigation turns into a fight for the Witchblade.<br><br>
<b>6. Nailed</b><br>When a psychotic serial killer with a penchant for young girls -- and a fetish for their fingernails -- becomes obsessed with Danny's niece, Sara must rely on the Witchblade's visions to find the girl before she becomes the killer's next victim.<br><br>
<b>7. Lagrimas</b><br>Sara experiences love at first sight when she meets the man of her dreams. But her perfect love turns into a perfect nightmare as a jealous Ian Nottingham reveals her lover's true nature. Sara is faced with the impossible dilemma: can she kill the man she loves?<br><br>
<b>8. Hierophant</b><br>A killer known only as "V" tries to take over New York's organized crime syndicates, and the evidence gathered at the crime scenes turn up the fingerprints of Sara's long-dead father. Soon she must trust the Witchblade's powers to overcome her feelings and wage battle with the greatest evil she has ever faced.<br><br>
<b>9. Veritas</b><br>A man named Bittner is killed after sending Gabriel evidence convicting an organization of some major murder. Gabriel and Sara recover the tape and go on the run but end up captured by the conspiracy, who are a mysterious cabal who plan on taking over the US. She escapes but the conspiracy lets her live in return for a favour.<br><br>
<b>10. Parabolic</b><br>Lupo, an international hate-clan leader, is accused of killing the parents of a young woman, Bola, after she thwarts several of the group's murder attempts. Sara must enlist the power of the Witchblade to protect Bola and defeat Lupo.<br><br>
<b>11. Palindrome</b><br>Danny and Jake go undercover to investigate a deadly fight-club incident. Sara is drawn to one of the fight-club members, Conchobar, because he has a mysterious and emotionally overwhelming connection to her past.<br><br>
<b>12. Ubique</b><br>A former blade-wielder named Lucrezia Borgia (Kate Levering) steals the Witchblade from Sara, just as a bizarre homicide wave hits the country. People across New York are being lured to a website, only to be brainwashed into committing murders. Struggling without the aid of her cherished gauntlet, Sara discovers clues that suggest Irons may be behind it.
</font>
</html>


WindowsXP
Explorer 8
Firefox 3.6.9 (default)
DVD Profiler 3.7 build 1411
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
ajm is having more problems then we are... so he couldn't help us. I am trying xyrano now... he is the one that wrote the html window... hopefully he can help us out.
Pete
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Ready for Download...



Tales from the Darkside: Season 2

Contains:
- TXT File
- Title Image
Pete
DVD Profiler Unlimited Registrantxyrano
41215.reg 70320.urk
Registered: March 13, 2007
Sweden Posts: 646
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Quoting CharlieM:
Quote:
Color me confused...

I went through the tutorial and All seemed fine except



A little help please...


Charlie

Activating a EPG from notes section using both methods leaves said message in window.
Solution: Use either one in notes section, not both.

What does your notes section say?
 Last edited: by xyrano
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
I use the tag system... but used to use the notes system so I checked some of the ones I remembered this happening to mine...

And nothing was in the notes in those cases other then something for the tagline html window....

<tagline=Live fast. Die never. />

But I do have the tagline thing in other profiles with the epg and it still works as expected.
Pete
DVD Profiler Unlimited RegistrantStar ContributorCharlieM
Registered Sept 5 2005
Registered: May 20, 2007
Reputation: High Rating
United States Posts: 2,934
Posted:
PM this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Quoting xyrano:
Quote:
Quoting CharlieM:
Quote:
Color me confused...

I went through the tutorial and All seemed fine except



A little help please...


Charlie

Activating a EPG from notes section using both methods leaves said message in window.
Solution: Use either one in notes section, not both.

What does your notes section say?


notes section says

<epg=1>
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Do you also use tags? If so you don't want both... just one set.

I seemed to fix mine... There is a change in the settings that fixed all the ones I have this problem with...

Look for...

Quote:
var tryLoadEPGAnyway = false; // <-- SET true/false


I set that to true... and it fixed my problem with the handful I remembered having this problem with.
Pete
DVD Profiler Unlimited RegistrantStar ContributorCharlieM
Registered Sept 5 2005
Registered: May 20, 2007
Reputation: High Rating
United States Posts: 2,934
Posted:
PM this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Made that change, eliminated from Witchblade.

Will try others now.  I don't have to many.


Thanx

Charlie
DVD Profiler Unlimited RegistrantStar ContributorCharlieM
Registered Sept 5 2005
Registered: May 20, 2007
Reputation: High Rating
United States Posts: 2,934
Posted:
PM this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Changed back.  Created a another unwanted problem.

In non guided profiles, it displays page cannot be displayed instead of simple title...


Charlie
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Quoting CharlieM:
Quote:
Changed back.  Created a another unwanted problem.

In non guided profiles, it displays page cannot be displayed instead of simple title...


Charlie


Just saw that myself... Seems like we need a fix from xyrano
Pete
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
I just went back into the edit html window...

I just completely removed this...

Quote:
var errTagMessage = "Tag say EPG, but no file. 404";


Is there anything bad that happens because of this? Just no warning message because of it as far as I can see... but think that is better then getting false positives.

Anyway seems to be working for me.
Pete
DVD Profiler Unlimited Registrantxyrano
41215.reg 70320.urk
Registered: March 13, 2007
Sweden Posts: 646
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
If you feel its working and do not need to se the messages you can empty them.
Quote:
// error messages
var errUPCFilename = "Get UPC filename, but no file. 404";
var errNoteUPC = "Notes say get UPC Filename, but no file. 404";
var errNoteFilename = "Notes say Filename, but no file. 404";
var errTagMessage = "Tag say EPG, but no file. 404";


Quote:
// error messages
var errUPCFilename = ""; // "Get UPC filename, but no file. 404";
var errNoteUPC = ""; // "Notes say get UPC Filename, but no file. 404";
var errNoteFilename = ""; // "Notes say Filename, but no file. 404";
var errTagMessage = ""; // "Tag say EPG, but no file. 404";


I have yet to find a solution. Sorry!
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Thanks... I just removed the error messages from mine for now. Maybe you will find a solution so we don't get the false positives.
Pete
DVD Profiler Unlimited RegistrantStar ContributorCharlieM
Registered Sept 5 2005
Registered: May 20, 2007
Reputation: High Rating
United States Posts: 2,934
Posted:
PM this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Tried to change method to tags.  When I did it changed the display message to

"Tag say EPG, but no file. 404"


it must be in this section

Quote:
function testIFrameContent() {
    // 1.1
    if (booleanTestIt == true) {
        var iframeWin = window.frames['epgLoader'];
        if (typeof iframeWin == 'object') {
            obj.loadError = (document.getElementById) ? document.getElementById('loadError') : document.all['loadError'];
            try {
                (iframeWin.location.href.indexOf('res:') == -1) ? showIFrame(): showMessages();
            } catch (e) { // Catche IE7 access/permission denied and just display iframe and 1 error message
                showIFrame();
                if (useNotes == true) obj.loadError.innerText = errNoteUPC;  <----Set notes error
                if (useTagName == true && tagFound) obj.loadError.innerText = errTagMessage;  <---Sets tag error
                if (filenameFoundinNotes == true) obj.loadError.innerText = errNoteFilename;
                obj.loadError.style.visibility = "visible";
            }
        } else noIFrame();
    }
}


for some reason it is setting the errors  and this is where it does it.  (See my bolded comments above)  I don't understand html enough to decipher why errors set.
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
Ready for Download...



Tales from the Darkside: Season 3

Contains:
- TXT File
- Title Image
Pete
DVD Profiler Unlimited RegistrantStar ContributorAddicted2DVD
Registered: March 13, 2007
Reputation: Highest Rating
United States Posts: 17,330
Posted:
PM this userEmail this userView this user's DVD collectionDirect link to this postReply with quote
There is another version already on the site... but I decided to make another version with episode images and such...



Terminator: The Sarah Connor Chronicles: Season 1

Contains:
- TXT
- Banner Image
- Episode Images
Pete
    Invelos Forums->General: General Discussion Page: 1... 6 7 8 9 10 11  Previous   Next