Hi! Look below for whole action script. This is very simple way to make Bubbles in Flash with Action Script. AS2:- i = 1; color = 0x000000; this.createEmptyMovieClip("mymc",1); this.onMouseMove = function() { a = mymc.attachMovie("bubble","mc"+i, i+1); a._x = _xmouse; a._y = _ymouse; a._xscale = a._yscale = ( Math.random() * 80) + 20; myColor = new Color(a); myColor.setRGB(color); color += 0x123456; i++; } code pour embarquer la vidéo : >>> http://www.youtube.com/embed/g-z_wpO61GE <<< |