I'm trying to get a simple fade effect to work with the "Realistic book page flip" found at http://www.flashkit.com/movies/3D/Ps...0710/index.php
However when I get near the corners with the mouse the effects are reset and start over.
I'm ready to pull my hair out because I can't find a solution!
Does anyone know how I can fix this problem?

//Main Movie Code (Frame 5)
img1.onEnterFrame = function() {
img1._alpha += 5;
if (img1._alpha >= 100) {
img1._visible = true;
delete img1.onEnterFrame;
}
}

//Code from page with Fade effect:
Symbol_11._alpha += 5;

Symbol_11.onEnterFrame = function() {
Symbol_11._alpha += 5;
}

Any help would be appreciated

Thanks
Dave