Показать сообщение отдельно
Старый 08.12.2003, 03:32
Штрек вне форума Посмотреть профиль Отправить личное сообщение для Штрек Найти все сообщения от Штрек
  № 6  
Штрек

Регистрация: Dec 2002
Адрес: Сочи
Сообщений: 2,819
Примерно так:

_root.createEmptyMovieClip("line", 1);
with (_root.line) {
_root.line.ttt = 1;
onEnterFrame = function () {
if (ttt == 1) {
x = 30*(Math.random()-0.5);
y = 30*(Math.random()-0.5);
xx = 200*(Math.random()-0.5);
yy = 200*(Math.random()-0.5);
alf = 66*(Math.random()+0.5);
lnt = Math.floor((Math.random()+1)*1.5);
lineStyle(lnt, 0x666666, alf);
lineTo(x, y);
ttt *= -1;
_x = 100+xx;
_y = 100+yy;
} else {
clear();
ttt *= -1;
}
};
}