Font detector

Yes…try running this script:

var swag = TextField.getFontList().sort();
var loot = 0;
function theft() {
	//
	if (loot < swag.length) {
		trace("Stealing the font " + swag[loot] + ". Thanks!!");
		++loot;
	} else {
		clearInterval(id);
		trace(newline + "Muaahaahaaa...we've cleaned out all the fonts. Now let's scarper before the rozzers arrive!");
	}
}
id = setInterval(theft, 100);