I have to call a function that is defined on the main stage of my project, and I have to call it from a MovieClip, what can I do? I\'m using flash cs5.5 and AS3.0
if your MovieClip has a class, just add it to your main class using like:
var m:MovieClip = new MovieClip(); **addChild(m);
then you can get access into it's public function like typing:
m."functon name";