
25.07.2005, 00:34
|
|
Регистрация: Dec 2002
Адрес: Сочи
Сообщений: 2,819
|
stop();
this.createEmptyMovieClip('maska', this.getNextHighestDepth());
with (this.maska) {
beginFill(0);
moveTo(100, 100);
curveTo(400, 300, 400, 200);
curveTo(400, 100, 300, 100);
curveTo(200, 100, 200, 200);
curveTo(200, 200, 300, 300);
endFill();
}
mc.setMask(this.maska)
|