|
发表于 2005-11-8 11:59:30
|
显示全部楼层
<P>终于把FLASH搞定了,我们老师翻来覆去讲了3节课的东西其实就是个小学函数。。。。。。。。。。。。</P><P>on (press) {
this.startDrag(true, 159, _y, 313, _y);
this.adjusting = 1;
}
on (release) {
this.stopDrag();
this.adjusting = 2;
}
onClipEvent (enterFrame) {
if (this.adjusting == 1) {
a = this._x-159;
_root.movie.gotoAndStop(int((a*_root.movie._totalframes)/154));
} else if (this.adjusting == 2) {
a = int((_root.movie._currentframe*154)/_root.movie._totalframes);
this._x = a+159;
}
}
</P> |
|