Control menu motion of RotationMENU (AS2)
Author: Digicrafts Last Update: 09/04/2008
To control the motion with action script. You need to turn off mouse scrolling first.

Action Script: You can put the following script in any button.
// to control the item move to next item
on(press)
{
_root.instance1.nextItem();
}
// to control the item move to previous item
on(press)
{
_root.instance1.prevItem();
}
// to control the item move to the item with id 1
on(press)
{
_root.instance1.nextItem(1);
}