New Years
Hey guys, sorry for not being around for a while - I was out in Jersey for new years. I know you all missed me terribly. Right?
Calendar
I like the idea of an NG calendar a lot. I prefer BoM's layout, I think it'll be easier to manage, and of course there's no lag.
My own php wizardry
In my spare moments, I whipped up this neat little script that generates an image showing stats on any NG flash. It actually reads the page and extracts the info.
http://www.superflashbros.net/tools/image.php ?ngnum=356348
Try it out with any NG id number. It could be pretty useful, you could have it sitting on your site showing live stats, or you could have it loading into your actual flash movie. Of course, you wont know what id number you'll get until you've already uploaded your flash, but I've solved that problem too:
createEmptyMovieClip("image", 1);
ngnum = _root._url.split(".net/")[1].split("/")[1].sp lit("_")[0];
new MovieClipLoader().loadClip("http://www.superf lashbros.net/tools/image.php?ngnum=" + ngnum, _root.image);
The second line gets your NG id number from the url of the movie itself, and the third line loads the image into the empty clip created in line one. Be aware that if you want to test it before you upload it to NG, you'll need to name it with an existing ng id and put it on a test server in a folder like:
mytestserver.com/site.net/356000/356348_DeepS ea_Zebra.swf
In order to emulate the way NG urls work.
Feel free to play about with it. If anyone wants the php code so they can host it on their site, just ask ^_^
Tom~