Before you jump into a new software you need to learn the basics of it.
With that said lets start with the basics:
1. Your program uses the file (swi) as a working program. Much as a text program uses .txt
2. The file needed for export is (swf). This is the file that a Flash player uses to show your movie.
3. When you are done working with your swi file you export (swf) and the (html) to a folder on your hard drive to be used show your movie.
So now this will change what you want to called into your container.
Code:
onFrame (2) {
container.loadMovie("Critics Choice.swf");
}
Wayne