I'm loading an external AS3 SWF using the Loader class but i need to access a method inside the loaded SWF. how can i do this?
Try this:
var _myVariable:* = loader.content;
_myVariable.methodInLoadedSWF();