Hey.
I am working with Flash MX. I am creating a site with a Main.fla which contains buttons to load other SubPage.swf files. For example, I have a Page1 button with the following actionscript code.
on (release) {
_root.contents.loadMovie(“page1.swf”);
}
It works fine.
Now when I work on the Page1.fla, I am trying to load other Movies in the same fashion. It works when I CMD+RETURN to generate the .swf file.
However when I CMD+RETURN the Main.fla file and load the Page1 file, the buttons won’t load the movies.
Is this a Target Path issue? How would I remedy this?
Thanks.