In my flash page i made, in the right side, a horizontal infinite menu with a magnifying glass that has the same effect. This clip is made separately and is loaded into the page by an empty movie clip. All works well when is not in the page, but when it is loaded the lens is not moving. I figured out this problem putting this AS into the empty movie clip:
onClipEvent (mouseDown) {
startDrag(“lens”);
}
onClipEvent (mouseUp) {
stopDrag();
}
But another problem appeared. Wherever i use the mouse, the lens are acting as if i am manipulating it. The lens are moving according to the position of the mouse. What can i do? I know that the problem is this AS i-m using in the flash page, but i’m only at my beginnings in flash.