Is it possible to add a method to existing (built in) ActionScript Flash class without extending it and making a new class?
For instance I want to create my own fadeOut method and add it to the MovieClip class so that all MovieClips would have that method, and use it like so: ball_mc.fadeOut()
I DO NOT WANT TO EXTEND THE CLASS LIKE THIS:
public class NewMovieClipClass extends MovieClip{ ... }