
10.12.2012, 14:11
|
|
Регистрация: Dec 2012
Сообщений: 4
|
Цитата:
Сообщение от DaFive
Баннер на АС2, а в теме на АС3. Ну да ладно. Вот на АС2:
 Код AS3:
var counter = 0;
onEnterFrame = function() {
if(currentFrame == 20) {
if(counter < 5) {
counter ++;
} else {
gotoAndStop(20);
delete this.onEnterFrame;
}
}
}
|
Выдает такую ошибку
и пишет в дебаге:
Цитата:
Please use onSelfEvent(enterFrame) instead of the deprecated onEnterFrame in script:
Scene_1, line 7: onEnterFrame = function() {
Expecting an expression but found "=" in script:
, line 1: var counter : `type` = 0
|
|