Просмотр полной версии : Циклы
Cheshire cat
17.09.2003, 09:02
Клип играет в обратную сторону от 200 кадра к первому. Как сделать так, чтобы после прохождения первого кадра клип опять играл с 200 в обратном порядке. Спасибо
YuriiZelenev
17.09.2003, 12:20
stop(),this.onEnterFrame=function(){
if(_currentframe==1){gotoAndStop(200);
}else if(_currentframe<=200){prevFrame();}
};
// 1-й кадр
this.onLoad=function(){
gotoAndStop(_totalframes);
}
this.onEnterFrame=function(){
trace(_currentframe);
if(_currentframe>1){
gotoAndStop(_currentframe-1);
}
else{
gotoAndStop(_totalframes);
}
}
Cheshire cat
18.09.2003, 02:33
спасибо!
Работает на vBulletin ® версия 3.7.3. Copyright ©2000-2026, Jelsoft Enterprises Ltd. Перевод: zCarot
Copyright © 1999-2008 Flasher.ru. All rights reserved.