Jump to content
[[Template core/front/custom/_customHeader is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]

MFL scripts


whitem0nkey
 Share

Recommended Posts

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.

Link to comment
Share on other sites

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>

Link to comment
Share on other sites

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>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information