I currently have a single SWF file that dynamically loads other SWF files with a movieclip named 'container'. However, I am unable to manipulate anything within the dynamically loaded SWF from the main file. I'm simply loading the file with this:
_root.container.loadMovie("home.swf",0);
I tried getting the loaded SWF to play by using the code below, but got no results...
_root.container.play();
Any idea as to how I would reference the content within the container movieclip with Actionscript 2?