You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package { import flash.display.MovieClip; public class Explosion extends MovieClip { var outline:MovieClip; var tintElements; public function Explosion() { this.scaleX = this.scaleY = 2; tintElements = new Array(); trace("Children "+ this.numChildren); outline = this.getChildAt(1) as MovieClip; tintElements.push(outline); } } }