home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / ellipsis.swf / scripts / DefineSprite_161 / frame_30 / DoAction.as
Encoding:
Text File  |  2007-02-20  |  245 b   |  10 lines

  1. onEnterFrame = function()
  2. {
  3.    a = attachMovie("circle","circle" + getNextHighestDepth(),getNextHighestDepth());
  4.    a._x = pointA._x;
  5.    a._y = pointA._y;
  6.    a._xscale = random(500) + 100;
  7.    a._yscale = a._xscale;
  8.    a._alpha = 25;
  9. };
  10.