1. Двойной клик по любой кнопке
2. На втором кадре "киноленты" видим код

Код:
stop();
this.hitArea = hit;
this.onRollOver = function() {
frame = 1;
};
this.onRollOut = onReleaseOutside=function () {
frame = -1;
};
this.onEnterFrame = function() {
gotoAndStop(_currentframe+frame);
};
Собственно на манер выше изложенного добавляем к исходному тексту событие
onPress. И получаем к примеру вот такой

Код:
stop();
this.hitArea = hit;
this.onRollOver = function() {
frame = 1;
};
this.onPress = function() {
frame = 1;
};
this.onRollOut = onReleaseOutside=function () {
frame = -1;
};
this.onEnterFrame = function() {
gotoAndStop(_currentframe+frame);
};
Дальше ваша фантазия и знание мат части.