This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-07-05 06:21:27

777w
Scratcher
Registered: 2009-02-10
Posts: 1000+

recent visitors?

what ever happened to the list of recent visitors? why was it removed?

Offline

 

#2 2012-07-05 07:51:33

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: recent visitors?

I don't know... if you want, i can make a userscript that gets it, and the newest members back. They're still in the source.

Offline

 

#3 2012-07-05 07:53:04

jontmy00
Scratcher
Registered: 2011-11-28
Posts: 1000+

Re: recent visitors?

scimonster wrote:

I don't know... if you want, i can make a userscript that gets it, and the newest members back. They're still in the source.

I wonder if there're any purposes for that. New members tend to have no projects, so...


FOR ALL THE NEWS ON UPDATES FOR SIMPLISTICRAFT, CLICK HERE.

Offline

 

#4 2012-07-05 08:48:12

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: recent visitors?

scimonster wrote:

I don't know... if you want, i can make a userscript that gets it, and the newest members back. They're still in the source.

Code:

// ==UserScript==
// @name        Show recent visitors
// @namespace   Scratch, Scimonster
// @description Show recent visitors (and newest members, optionally) on the homepage
// @include     http://scratch.mit.edu/
// @version     1
// ==/UserScript==
var newest=false; //change "false" to "true" to show newest members!
var html = document.body.innerHTML.substring(document.body.innerHTML.indexOf('<!--\n    <div id="RecentVisitors" class="sidecontainer">'),(document.body.innerHTML.indexOf('//-->',document.body.innerHTML.indexOf('<!--\n    <div id="RecentVisitors" class="sidecontainer">'))+5));
document.body.innerHTML = document.body.innerHTML.replace(html, html.substring(5,html.length-5));
if(newest) {
    html = document.body.innerHTML.substring(document.body.innerHTML.indexOf('<!--\n    <div id="NewestMembers" class="sidecontainer">'),(document.body.innerHTML.indexOf('//-->',document.body.innerHTML.indexOf('<!--\n    <div id="NewestMembers" class="sidecontainer">'))+5));
    document.body.innerHTML = document.body.innerHTML.replace(html, html.substring(5,html.length-5));
}

There's an option there that you can change before installing, whether or not to show the newest members.

Offline

 

Board footer