[ create a new paste ] login | about

Link: http://codepad.org/PgAvRVnH    [ raw code | fork ]

Plain Text, pasted on Mar 3:
package{
	import flash.display.*;
	import flash.utils.Timer;
	import flash.events.*;
	import flash.ui.Mouse;
	
	public class main extends MovieClip{
		
		
		
		public function main(){
			
			var timer:Timer = new Timer(1);
			timer.addEventListener(TimerEvent.TIMER,tick);
			timer.start();
			
		}
		
		private function tick(temp:TimerEvent){
			
			var circle_temp:circle = new circle();
			addChild(circle_temp);
			
		}
	}
}


Create a new paste based on this one


Comments: