Search found 6 matches

by BobbyG63
Tue Oct 23, 2018 10:17 am
Forum: Verison 4.0x Support Forum
Topic: Scores not updating
Replies: 54
Views: 28037

Re: Scores not updating

MSPSBL, I like the "Current Year" change. A very nice touch.

Smokey Jones, my pleasure!!! If i'm ever in Tennessee, I'll ping you for that beer...
Never know... Been looking at Norris Lake for retirement. :)
by BobbyG63
Sat Oct 20, 2018 9:46 pm
Forum: Verison 4.0x Support Forum
Topic: Scores not updating
Replies: 54
Views: 28037

Scores not updating - Posting of complete scoresLoader code

//========================================================================= // Module: scoresLoader // // Used to set game scores using data retrieved from the NFL.com web site. //========================================================================= var scoresLoader = function () { // The update...
by BobbyG63
Sat Oct 20, 2018 3:35 pm
Forum: Verison 4.0x Support Forum
Topic: Scores not updating
Replies: 54
Views: 28037

Re: Scores not updating

No problems Baldy... It's all good... To answer your question... No, week comes from the 1st XML feed (which does not allow for a requested week, the NFL is always returning current week) So if the Form week differs from the LiveFeed XML, then you have to request the scores with the Ajax call. That ...
by BobbyG63
Sat Oct 20, 2018 9:40 am
Forum: Verison 4.0x Support Forum
Topic: Scores not updating
Replies: 54
Views: 28037

Re: Scores not updating

In the 4.0 version of updateScores, var week = ""; is defined up top, under the scoresLoader function. and the "week" that is refereed to in the "formEl.elements["week"].value" statement comes from the form "<div><input type="hidden" name="...
by BobbyG63
Mon Oct 15, 2018 1:39 pm
Forum: Verison 4.0x Support Forum
Topic: Scores not updating
Replies: 54
Views: 28037

Re: Scores not updating

After posting my original fix, I noticed that the feed I was using that allows for the selection of Year Season, and Week is not as "real-time" as I expected. The feed that is closer to "real-time" does not allow for the selection of Year, Season, and Week. I modified the code to...
by BobbyG63
Sun Oct 14, 2018 9:10 am
Forum: Verison 4.0x Support Forum
Topic: Scores not updating
Replies: 54
Views: 28037

Re: Scores not updating

This was driving me crazy. So I coded a Score Loader that is driven from the NFL XML feed. Lighting fast because it does not have to wait for the NFL Score site to load and then to scrape the score from it. Let me know what you think. Replace the "scoresLoader" code in the "UpdateScor...