home *** CD-ROM | disk | FTP | other *** search
- if(_root.timerActive)
- {
- if(_root.timer == 0)
- {
- _root.timer = getTimer();
- }
- _root.currentx = math.floor(_root._xmouse);
- _root.currenty = math.floor(_root._ymouse);
- if(_root.mousex == _root.currentx && _root.mousey == _root.currenty)
- {
- if(60000 < getTimer() - _root.timer)
- {
- _level0.gotoandstop("start");
- loadMovieNum("intro.swf",1,"GET");
- }
- }
- else
- {
- _root.timer = getTimer();
- _root.mousex = math.floor(_root._xmouse);
- _root.mousey = math.floor(_root._ymouse);
- }
- }
-