PDA

View Full Version : How do i set a timer on to a movieclip



DesignerDude05
November 7th, 2005, 08:10 AM
setProperty("pleasewaitmain", _visible, true); how would i set this on a timer to be UNVISIBLE (false) after about 10 seconds...

DesignerDude05
November 7th, 2005, 08:46 AM
nevermind i found a simple solution but with the amount of code i have and layers and mcs and other stuff it was hard to get my head round but finaly got it :)

//EDIT

well atleast it only too me from 01:10 PM till 01:44 lol :) im impressed LOL

Barn
November 7th, 2005, 12:18 PM
That could be something like this:


itvHide = setInterval(function () {
clearInterval(itvHide);
pleasewaitmain._visible = false;
}, 10);