попробовал. Действительно при использовании события onPress клип, по всей видимости, получает свойства кнопки, а внутрь нее обратиться нельзя.
вот этот код рабочий:

Код:
var s:Number = null;
outter.onMouseDown = function() {
if (this.hitTest(_root._xmouse, _root._ymouse, false)) {
startDrag(this);
s = 1;
}
};
outter.onMouseUp = function() {
stopDrag();
s = 2;
};
outter.onEnterFrame = function() {
if (s == 1 and (this._alpha <= 100 or this._alpha > 100) and this._alpha > 50) {
this._alpha -= 3;
}
if (s == 2 and this._alpha < 100 and this._alpha >= 40) {
this._alpha += 3;
}
};
this.outter.inner.onRollOver = function() {
trace("onRollOver called");
};
this.outter.inner.onRollOut = function() {
trace("onRollOut called");
};
соответственно: outter - внешний клип, inner - вложенный