hello there,

I like to call a function that is outside of the class file.

for example

main.fla
Code:
function callmepls(){
 trace("yes");
}
Calling.as
Code:
package{
 public class Calling{
  callmepls();
  public function Calling(){
  }
 }
}