
17.09.2003, 12:28
|
|
Регистрация: Jul 2003
Адрес: SPb
Сообщений: 125
|
// 1-й кадр
this.onLoad=function(){
gotoAndStop(_totalframes);
}
this.onEnterFrame=function(){
trace(_currentframe);
if(_currentframe>1){
gotoAndStop(_currentframe-1);
}
else{
gotoAndStop(_totalframes);
}
}
|