Vertical Scrolling Menu Help
Hi,
I need some support on your Vertical scrolling menu.
First it works great!
BUT,
for some reason the menu continues scrolls even though I am not directly on it.
Like the scroll area is the whole stage instead of just the box it is in.
I even tried creating it's own MC with a mask and it still scrolls past the mask.
Now I fixed the code as in:
"Currently the menu resize using the values from Stage.width and Stage.height.
To set fixed width and height values, remove the onResize function in the code and add the following lines:
var mw:Number = 300;
var mh:Number = 300;
mcList.width = mw;
mcList.height = mh-mcTitle.height;
mcTitle.width = mw; "
So I don't know why it is still scrolling outside it's own area.
Anyway to control this?
Joseph Wraith
|