Well i’ve pretty much made it work, for anyone who cares here is how you can make topFive lists of weblog posts:
1. Create a new weblog that is called something like “list”
2. Create custom field set that has 5 text fields with no formatting
3. Create a SAEF from the list weblog.
4. Add a checkbox inside of each entry from your regular Weblog (example default_blog) that onclick calls a JS function
5. With javascript and jquery do the following type of idea
var runtime = 1;
function populateForm(entryId) {
alert(entryId);
if (runtime == 1)
$('#field_id_7').val(entryId);
else if (runtime == 2)
$('#field_id_8').val(entryId);
else if (runtime == 3)
$('#field_id_9').val(entryId);
else if (runtime == 4)
$('#field_id_10').val(entryId);
else if (runtime == 5)
$('#field_id_11').val(entryId);
runtime++;
}
6. Now that those are populated just make the page that contains the list weblog with all these values to have a {redirect="list/{segment2}/{segment3}”} the list page needs to contain a {entries} tag that has the entry_id=”{segment2}|{segment3}” attribute