home *** CD-ROM | disk | FTP | other *** search
- createemptymovieclip("dark",100001);
- var d = this.dark;
- with(d)
- {
- lineStyle(1,0,100);
- beginfill(16777215,100);
- moveto(-5000,-5000);
- lineto(5000,-5000);
- lineto(5000,5000);
- lineto(-5000,5000);
- endfill();
- d.onEnterFrame = function()
- {
- _alpha -= 5;
- if(_alpha <= 0)
- {
- removeMovieClip("");
- stop();
- }
- };
- }
-