In the end, it wasn't as hard to find as I thought, it took 3-5 mins; I had posted in a thread 2-3 pages back. She also had some useful checklists of what she did at the beginning of the season that may be useful. HTG, instead of writing that long post, you could have found this and helped your kid out that way.
----
For whoever has volunteered/is taking on the role of drafting, Kumiko ended up leaving this helpful code and instructions.
----
Moving forward for scouting purposes after a draft, I have asked a good friend for a script to look up multiple teams at once:
If you copy this to notepad, save as html, open
---------------------------------------------------------------------------
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script language="javascript">
function go()
{
var url = $("#txtURL").val();
var start = parseInt($("#txtStart").val());
var end = parseInt($("#txtEnd").val());
var divFrames = $("#divFrames");
var iframe = $("<iframe>")
.css("width", "100%")
.css("height", "500px")
.css("padding-top", "20px");
divFrames.html("");
for(var x = start; x <= end; x++)
{
var newUrl = url + "/" + x + "/overview.aspx";
var iframeClone = iframe.clone().attr("src", newUrl);
divFrames.append(newUrl + "<br />");
divFrames.append(iframeClone);
}
}
</script>
</head>
<body>
c
<br />
Page Start Number: <input id="txtStart" type="text" style="width: 50px" />
<br />
Page End Number: <input id="txtEnd" type="text" style="width: 50px" />
<br />
<input type="button" value="Go" onclick="go();" />
<br /><br />
<div id="divFrames"></div>
</body>
</html>
----------------------------------------------------------------------------------------------
when that opens:
for URL enter: http://www.buzzerbeater.com/player
then enter player# you want to start and end at
presto
so you can start at naismith and go up to iv.64 (players generated in this order)
one or a couple people could scout all newly created 18 year olds very quickly and without the massive amount of clicking you need to do to go thru team by team
Last edited by Fresh24 at 10/25/2014 9:00:17 AM