
22.09.2005, 15:23
|
|
Регистрация: Sep 2005
Сообщений: 18
|
Ой, сорри. Вот кусочек непосредственно с высотой и поворотом.
_root.SecondsMc._height = 120 * (1+sin((seconds/15)*(3.1415)/2));
_root.HoursMc._height = 20 * (1+sin((seconds/15)*(3.1415)/2));
_root.MinutesMc._height = 170 * (1+sin((seconds/15)*(3.1415)/2));
_root.HoursMc._rotation = mytime.getHours()*360/12;
_root.MinutesMc._rotation = mytime.getMinutes()*360/60;
_root.SecondsMc._rotation = mytime.getSeconds()*360/60;
|