Calling a function within a MC

Quick question, and hopefully someone has a quick answer. Is it possible to call a function that is sitting on he MainTimeline from inside a MC that is sitting on the stage? I have looked on the web and found that AS3 doesn’t use globals anymore :frowning: . So I was hoping that someone here could help me think of a workaround. Thanks

Many apologizes… it must be too early or something, probably just me. I did some more googling and found the solution. You need to pass the MainTimeline/stage as a MovieClip

[AS]
MovieClip(parent).function_to_execute();
[/AS]