whitem0nkey Posted July 20, 2006 Share Posted July 20, 2006 So I was surfing on my fantasy league and looking at different leagues. And I noticed that you can copy and paste java script into the 10 available messages. Some of them allow you to have the ESPN bottom line scroll on the bottom. Some allow you to have a drop down menu. Ill post the ones I found below, please post if you have more. Quote Link to comment Share on other sites More sharing options...
whitem0nkey Posted July 20, 2006 Author Share Posted July 20, 2006 ESPN bottom line just paste this in the 10th message ----------------------------------------------------------------------------------------------------------------------------- <div align="center" id="newspaper"> <table width = "98%" border="0" cols="2"> <tr><td> <table border="1" cellpadding="2" cellspacing="1" width="100%" > <caption>AFC</caption> <tr> <td width="14%" valign="middle" align="center"><font color="#000000"><img src =" <small><br /> </small></a><br /> </font></td></tr><tr> <td width ="14%" valign="middle" align="center"><font color="#000000"><img src ="http://images.usatoday.com/sports/football/nfl/_logos/100cowboys.gif" alt="logo" /></font></td> <td width="19%" valign="middle" align="left"> <font color="#000000" face="Arial"> <a href=" <small><br /> </small></a><br /> </font></td> <td width ="14%" valign="middle" align="center"><font color="#000000"><img src ="http://images.usatoday.com/sports/football/nfl/_logos/10049ers.gif" alt="logo" /></font></td> <td width="19%" valign="middle" align="left"> <font color="#000000" face="Arial"> <a href="http://sports.insidebayarea.com/teams/49ers/" target="_blank"> <small>Oakland Tribune</small></a><br /> <a href="http://www.sfgate.com/sports/49ers/" target="_blank"> <small>SF Chronicle</small></a><br /> <a href="http://www.bayarea.com/mld/cctimes/sports/football/nfl/san_francisco_49ers/" target="_blank"> <small>Contra Costa Times</small></a><br /> <a href="http://www.bayarea.com/mld/mercurynews/sports/football/nfl/san_francisco_49ers/" target="_blank"> <small>San Jose Mercury News</small></a><br /> <a href="http://examiner.com/sports/" target="_blank"> <small>SF Examiner</small></a><br /> <a href="http://www.pressdemocrat.com/49ers/index.html" target="_blank"> <small>Santa Rosa Press Democrat</small></a><br /> <a href="http://www.sacbee.com/sports/49ers/" target="_blank"> <small>Sacramento Bee</small></a><br /> </font></td></tr><tr> <td width ="14%" valign="middle" align="center"><font color="#000000"><img src ="http://images.usatoday.com/sports/football/nfl/_logos/100rams.gif" alt="logo" /></font></td> <td width="19%" valign="middle" align="left"> <font color="#000000" face="Arial"> <a href="http://www.stltoday.com/rams" target="_blank"> <small>St. Louis Post-Dispatch</small></a><br /> </font></td> <td width ="14%" valign="middle" align="center"><font color="#000000"><img src ="http://images.usatoday.com/sports/football/nfl/_logos/100buccaneers.gif" alt="logo" /></font></td> <td width="19%" valign="middle" align="left"> <font color="#000000" face="Arial"> <a href="http://bucs.tbo.com" target="_blank"> <small>Tampa Tribune</small></a><br /> <a href="http://www.sptimes.com/Bucs" target="_blank"> <small>St. Petersburg Times</small></a><br /> <a href="http://www.orlandosentinel.com/sports/football/pro/buccaneers/" target="_blank"> <small>Orlando Sentinel</small></a><br /> </font></td></tr><tr> <td width ="14%" valign="middle" align="center"><font color="#000000"><img src ="http://images.usatoday.com/sports/football/nfl/_logos/100redskins.gif" alt="logo" /></font></td> <td width="19%" valign="middle" align="left"> <font color="#000000" face="Arial"> <a href="http://www.washingtonpost.com/wp-dyn/sports/redskins/" target="_blank"> <small>Washington Post</small></a><br /> <a href="http://www.pilotonline.com/sports/redskins/index.html" target="_blank"> <small>Virginian Pilot</small></a><br /> </font></td> <td width ="14%" valign="middle" align="center"><font color="#000000"><img src ="http://images.usatoday.com/sports/football/nfl/_logos/100seahawks.gif" alt="logo" /></font></td> <td width="19%" valign="middle" align="left"> <font color="#000000" face="Arial"> <a href="http://www.seattletimes.com/sports/seahawks/" target="_blank"> <small>Seattle Times</small></a><br /> <a href="http://www.thenewstribune.com/sports/seahawks/" target="_blank"> <small>Tacoma News Tribune</small></a><br /> <a href="http://www.seattle-pi.com/football/" target="_blank"> <small>Seattle Post-Intelligencer</small></a><br /> </font></td></tr><tr> <td width ="14%" valign="middle" align="center"> </td> <td width="19%" valign="middle" align="left"> <font color="#000000" face="Arial"> </font></td> <td width ="14%" valign="middle" align="center"> </td> <td width="19%" valign="middle" align="left"> <font color="#000000" face="Arial"> </font></td> </tr> </table> </td></tr> </table> </div> Quote Link to comment Share on other sites More sharing options...
whitem0nkey Posted July 20, 2006 Author Share Posted July 20, 2006 Live Scoring Ticker Quote Link to comment Share on other sites More sharing options...
whitem0nkey Posted July 20, 2006 Author Share Posted July 20, 2006 drop down menu ------------------------------------------------------------------------------------------------- <style type="text/css"> .dropcontent{ width: 100%; height: 100%; border: 1px solid black; background-color: #FFECC6; display:block; } </style> <script type="text/javascript"> /* Combo-Box Viewer script- Created by and © Dynamicdrive.com Visit http://www.dynamicdrive.com/ for this script and more This notice MUST stay intact for legal use */ if (document.getElementById){ document.write('<style type="text/css">\n') document.write('.dropcontent{display:none;}\n') document.write('</style>\n') } function contractall(){ if (document.getElementById){ var inc=0 while (document.getElementById("dropmsg"+inc)){ document.getElementById("dropmsg"+inc).style.display="none" inc++ } } } function expandone(){ if (document.getElementById){ var selectedItem=document.dropmsgform.dropmsgoption.selectedIndex contractall() document.getElementById("dropmsg"+selectedItem).style.display="block" } } if (window.addEventListener) window.addEventListener("load", expandone, false) else if (window.attachEvent) window.attachEvent("onload", expandone) </script> <form name="dropmsgform"> <select name="dropmsgoption" size="1" style="width:300" onChange="expandone()"> <option selected>Standings</option> <option>Schedule</option> <option>Communication</option> <option>Power</option> <option>NFL Survivor Pool</option> <option>NFL Schedule</option> <option>Calendar</option> <option>Transactions</option> <option>Message Board</option> <option>Top Adds</option> <option>Top Free Agents</option> <option>Owner Links</option> <option>Player Reports</option> <option>Football Related Links</option> <option>Live Scoring</option> </select> <br> <div id="dropmsg0" class="dropcontent"> <CENTER><SMALL><B>Standings As Of Week: </B><SPAN CLASS="currentweek">1</SPAN> </SMALL></CENTER><BR> <TABLE WIDTH="100%" HEIGHT="100%"> <TR> <TD COLSPAN=3><MODULE NAME="STANDINGS"></TD> </TR> </TABLE> </div> <div id="dropmsg1" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="NEXT_WEEKS_FANTASY_SCHEDULE"></TD> </TR> </TABLE> </div> <div id="dropmsg2" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="MESSAGE_BOARD_SUMMARY" &COUNT="5"></TD> </TR> </TABLE> </div> <div id="dropmsg3" class="dropcontent"> <CENTER><SMALL><B>Power Rankings As Of Week: </B><SPAN CLASS="currentweek">1</SPAN> </SMALL></CENTER><BR> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="POWER_RANK"></TD> </TR> </TABLE> </div> <div id="dropmsg4" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="NFL_SURVIVOR_POOL"></TD> </TR> </TABLE> </div> <div id="dropmsg5" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="NFLSCHEDULE"></TD> </TR> </TABLE> </div> <div id="dropmsg6" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="MONTHLY_CALENDAR"></TD> </TR> </TABLE> </div> <div id="dropmsg7" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="TRANSACTIONS" &COUNT="10"></TD> </TR> </TABLE> </div> <div id="dropmsg8" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="MESSAGE_BOARD_SUMMARY" &COUNT="5"></TD> </TR> </TABLE> </div> <div id="dropmsg9" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="TOP_ADDS" &COUNT="10"></TD> </TR> </TABLE> </div> <div id="dropmsg10" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="TOP_FA" &COUNT="5" &POSITION="QB"></TD> <TD><MODULE NAME="TOP_FA" &COUNT="5" &POSITION="RB"></TD> <TD><MODULE NAME="TOP_FA" &COUNT="5" &POSITION="WR"></TD></TR></TABLE> <TABLE WIDTH="100%"> <TR> <TD><MODULE NAME="TOP_FA" &COUNT="5" &POSITION="TE"></TD> <TD><MODULE NAME="TOP_FA" &COUNT="5" &POSITION="PK"></TD> <TD><MODULE NAME="TOP_FA" &COUNT="5" &POSITION="DEF"></TD> </TR> </TABLE> </div> <div id="dropmsg11" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <LEFT><SMALL><B>Click on link for quick access to Owner related links:<BR/></B></SPAN> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=129">My Draft List</a></li> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=02">Submit Lineups</a></li> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=70">Change Password</a></li> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=50">Basic Franchise Setup</a></li> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=11">Advance Franchise Setup</a></li> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=05">Trades</a></li> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=46">Waivers</a></li> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=74">Drop Players</a></li> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=121">NFL Pool Picks</a></li> </ul> </SMALL></LEFT><BR> </TR> </TABLE> </div> <div id="dropmsg12" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <LEFT><SMALL><B>Click on link for quick access to Player Reports:<BR/></B></SPAN> <li> <a href="http://football.myfantasyleague.com/2005/options?L=34904&O=08">Top Performers/Player Stats</a></li> <li> <a href="http://football.myfantasyleague.com/2005/free_agents?L=34904">Free Agents</a></li> <li> <a href="http://football.myfantasyleague.com/2005/player_search?L=34904">Player Search</a></li> </ul> </SMALL></LEFT><BR> </TR> </TABLE> </div> <div id="dropmsg13" class="dropcontent"> <TABLE WIDTH="100%"> <TR> <LEFT><SMALL><B>Click on links for quick access to popular football sites:<BR/></B></SPAN> <li> <a href="http://football.myfantasyleague.com/2005/draft_analysis">Draft Tracker</a></li> <li> <a href="http://www.thehuddle.com">theHuddle.com</a></li> <li> <a href="http://www.kffl.com/fantasy/">KFFL</a></li> <li> <a href="http://www.footballguys.com/">Football Guys</a></li> <li> <a href="http://www.fantasysharks.com/">Fantasy Sharks</a></li> <li> <a href="http://www.fantasyguru.com/">Fantasy Guru</a></li> <li> <a href="http://www.sportsline.com/nfl">CBS Sportsline - NFL</a></li> <li> <a href="http://sports.espn.go.com/nfl/index">ESPN - NFL</a></li> <li> <a href="http://www.nfl.com/>NFL.com</a></li> <li> <a href="http://sports.yahoo.com/">Yahoo Sports</a></li> </ul> </SMALL></LEFT><BR> </TR> </TABLE> </div> <div id="dropmsg14" class="dropcontent"> <BR><TABLE ALIGN=CENTER CELLSPACING=1 CLASS="homepagemodule report" ID="livescoring_summary"><CAPTION><SPAN>Live Scoring</SPAN></CAPTION><TR><TD><IFRAME CLASS="livescoringsummary" ALIGN=CENTER SRC="/2005/live_scoring_brief?L=34904">Your web browser is not IFRAME-compatible</IFRAME></TD></TR></TABLE> </div> </form> Quote Link to comment Share on other sites More sharing options...
rajncajn Posted July 20, 2006 Share Posted July 20, 2006 Good stuff Monkey...I've been wanting to try this out. Quote Link to comment Share on other sites More sharing options...
Big Country Posted July 20, 2006 Share Posted July 20, 2006 MFL has one of their boards dedicated to just these things.. some very good stuff there. Quote Link to comment Share on other sites More sharing options...
Yukon Cornelius Posted July 20, 2006 Share Posted July 20, 2006 MFL has one of their boards dedicated to just these things.. some very good stuff there. i must be an ijid i cant get them to work Quote Link to comment Share on other sites More sharing options...
whitem0nkey Posted July 20, 2006 Author Share Posted July 20, 2006 i must be an ijid i cant get them to work make sure to turn off Use "Advanced Editor" on league type-in boxes you will find it in Appearance/Other Settings Quote Link to comment Share on other sites More sharing options...
thecerwin Posted July 20, 2006 Share Posted July 20, 2006 Is this stuff for the commish only? Quote Link to comment Share on other sites More sharing options...
Big Country Posted July 20, 2006 Share Posted July 20, 2006 Is this stuff for the commish only? Yes... things the commish can add to the league page through the commish setup options. Quote Link to comment Share on other sites More sharing options...
Yukon Cornelius Posted July 20, 2006 Share Posted July 20, 2006 make sure to turn off Use "Advanced Editor" on league type-in boxes you will find it in Appearance/Other Settings cool thanks Quote Link to comment Share on other sites More sharing options...
rajncajn Posted July 21, 2006 Share Posted July 21, 2006 make sure to turn off Use "Advanced Editor" on league type-in boxes you will find it in Appearance/Other Settings Did that & it's still not working. Quote Link to comment Share on other sites More sharing options...
rajncajn Posted July 21, 2006 Share Posted July 21, 2006 NM, working now Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.