Hello All,


Setting up touch screen kiosk need help with ActionScript in Flash MX. Have
a screen saver script that records mouse movement,  once the mouse stops
moving for a certain amount of time the play head goes to and plays an intro
movie. The file seems to have a bug that appears randomly. At different time
intervals the play-back-head jumps back to the intro movie when clicking
around in the kiosk. Have not isolated a time when the play-back-head jumps
back to the intro movie.

Here is the script:

stop();

this.>
_global.mouseXPosition = _root._xmouse; //save mouse position to a global
variable

_global.mouseYPosition = _root._ymouse;

//trace(mouseYPosition); //if you want to test it...

updateAfterEvent(); //reset

}

checkMouse = setInterval(whereMouse,60000); //look at the mouse position
every second

function whereMouse(){

oldMouseX = _global.mouseXPosition; // get the current mouse X position for
this function

oldMouseY = _global.mouseYPosition; // get the current mouse Y position for
this function

//trace(oldMouseX + ","+ oldMouseY); //just to test it

if(_root._xmouse==oldMouseX && _root._ymouse==oldMouseY){ //if the mouse
hasn't moved for a second....

gotoAndStop("Begin");

}

}

Thanks!
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to