onMouseUp > on release outside?
Hi,
if I have this code:
code:
mousecontroll.onMouseUp = function() {
//trace("release");
_root.pageDragged = false;
if(flip) {
flipOK = false;
if(sx<0 && pages._xmouse>0) flipOK = true;
if(sx>0 && pages._xmouse<0) flipOK = true;
trace(flipOK);
flipOff = true;
flip = false;
}
//if dragged, release it!
}
Is there any way to add something that the function is also called when the mouse is release outside the movie?
Now when you drag out the movie the page get's stuck at you mouse.
I tried adding a blank button with on (releaseOutside) but that gives a flash of the book in this movie.
thanks :)