
01.11.2003, 02:29
|
|
Регистрация: Dec 2002
Адрес: Сочи
Сообщений: 2,819
|
Посмотрел, вроде вертикальное отражение получилось.
Горизонтальное -
onClipEvent (load) {
tt = this._y;
ttt = this._y-this._height;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._rotation = 180;
this._y = ttt;
} else if (Key.isDown(Key.LEFT)) {
this._rotation = 0;
this._y = tt;
}
}
|