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);
}
| Apply To Product(s) |
| Compatibility |
Action Script 2 |
| Skill Level |
Basic |