In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

みなに聞きたいことがあるんだ

Get Adobe Flash player
by naggg 17 Jan 2009
// forked from naggg's みんな氏ね
package{
	
	import flash.display.*;
	import flash.events.*;
	import flash.text.TextField;
	import flash.text.TextFieldAutoSize;
	import flash.text.TextFormat;
	import flash.utils.setInterval;
	
	public class Hoge extends Sprite{
		
		private var tf:TextField;
		private var fucks:Array = new Array();
		private var numFucks:int = 0;
		
		[SWF(width="465", height="465", backgroundColor="0x000000", frameRate="15")]
		
		public function Hoge():void{
			
			tf = addChild(new TextField()) as TextField;
			tf.text = "Hello Wonderfl!!";
			tf.autoSize = TextFieldAutoSize.NONE;
			tf.width = 465;
			tf.height = 465;
			tf.mouseEnabled = false;
			tf.mouseWheelEnabled = false;
			
			fucks.push(tf.text);
			
			setInterval(update, 50);
			
		}
		
		private function update():void{
			
			var s:String = "あんた年収いくら?";
			var len:int = numFucks++;
			for(var i:int=0; i<len; i++){
				s += "?";
			}
			fucks.push(s);
			tf.text = fucks.join("\n");
			
			tf.scrollV = tf.maxScrollV;
			
			if(fucks.length > 100){
				fucks.shift();
			}
		}
		
	}
	
}