To fix the latest spambot problem, I have added a CAPTCHA to the posting form. I also had to delete the latest posts (post number 4078 and above). Sorry for the inconvenience. Please send suggestions and bug reports to mishu@mishu.eu.org. Thanks!
You are not logged in. home |

NOTE: If you don't have an account, just enter a username. One will be created automatically.

 

<no description given>

Posted by bardicknowledge on 06:51, 17 Jul 2007.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
function setBackGround(color) {	
	if(color1 != 0){
		this.createEmptyMovieClip("bkGrnd1",-2);
		bkGrnd1.lineStyle(0);
		bkGrnd1.beginFill(color1,100);
		bkGrnd1.moveTo(0,0);
		bkGrnd1.lineTo(Stage.width+1,0);
		bkGrnd1.lineTo(Stage.width+1,Stage.height+1);
		bkGrnd1.lineTo(0,Stage.height+1);
		bkGrnd1.endFill();
		bkGrnd1._x = -1;
		bkGrnd1._y = -1;
		bkGrnd1._alpha = 100	
	}
		
	this.createEmptyMovieClip("bkGrnd",-1);
	bkGrnd.lineStyle(0);
	bkGrnd.beginFill(color,100);
	bkGrnd.moveTo(0,0);
	bkGrnd.lineTo(Stage.width+1,0);
	bkGrnd.lineTo(Stage.width+1,Stage.height+1);
	bkGrnd.lineTo(0,Stage.height+1);
	bkGrnd.endFill();
	bkGrnd._x = -1;
	bkGrnd._y = -1;
	bkGrnd._alpha = 0	
	
	onEnterFrame = function() {
		if(bkGrnd._alpha < 100){
			bkGrnd._alpha +=10;					 
		}				
	}
	delete this.onEnterFrame();
	color1 = color;		
}