home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2001 June
/
HDC50.iso
/
FreeSoftware
/
MicrosoftXP
/
main.swf
/
scripts
/
DefineSprite_215
/
frame_1
/
DoAction.as
Wrap
Text File
|
2001-03-22
|
579b
|
24 lines
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);
}
}