Time-out in flash
Time-out in flash
Out of context: Reply #10
- Started
- Last post
- 31 Responses
- Inkyfingers0
Hi there. Still struddling. Anyone kind enough to have a butchers at this?
checkLoaded = function(){
if (xmouse != _root._xmouse or ymouse != _root._ymouse){
clearInterval(intervalID);
} else {
gotoAndStop(5);
}
}intervalID = setInterval(checkLoaded, 10000);
xmouse = _root._xmouse;
ymouse = _root._ymouse;stop();