I need a quick bit of help..
I want the txtLifeLost part to disappear after 5 seconds from when it appears but can't work out how
Thanks!Code:if(mcBall._y >= Stage.height-mcBall._height){
lives --;
txtLifeLost.text = 'Lives remaining: '+lives;
ballXSpeed *= 0;
ballYSpeed *= -1;
mcBall._x = 280;
mcBall._y = 354.4;
mcPaddle._x = 252;
mcPaddle._y = 362;
}

