View difference between Paste ID: X5Eq8KpL and fEhfJNhg
SHOW: | | - or go back to the newest paste.
1
if (eff.getQuizTransition())
2
	{
3
			var myTimer:Timer = new Timer(100, 100);
4
			myTimer.addEventListener(TimerEvent.TIMER, difficultTransit);					
5
			myTimer.start();	
6
	}
7
8
9
var a:int = QuestionDifficult.alpha * 100;
10
		var effect:String = "in";
11
		if (effect == "in")
12
		{
13
			a += 1
14
			trace(a);
15
			QuestionDifficult.alpha = (a/100);
16
			InfoDifficult.alpha = (a/100);
17
			InfoDifficult2.alpha = (a/100);
18
			txtFacile.alpha = (a/100);
19
			txtMoyen.alpha = (a/100);
20
			txtDifficile.alpha = (a/100);
21
			
22
		}