Im pretty much a beginner when i comes to actionscript... so i was wondering if anybody ould help me out with this. I have a movie clip that i want to be scrollable withe the mouse wheel. It works fine but i want to be able to add boundries ont he y axis where it has to stop and wont be able to scroll anymore.
right now i have this code applied to it on my actions layer:

Actionscript:
// Creating the listener object
mouseListener = new Object();
// Create onMouseWheel function
mouseListener.onMouseWheel = function (delta) {
linksmov._y += delta;
}
// Registering the listener to the Mouse object
Mouse.addListener(mouseListener);
/*
so thats the jist of it hope you guys can help me out. Ive included the fla so you guys can see for yourself. If you keep scrolling it just keeps going even off the stage. Make sure that you click on the circle first to enable the mouswheel funciton.