Is it possible to load an external movie on an external movie?

i have a navigation button that goes to gallery
the gallery button opens an external swf in a container called gallery.swf

in gallery.swf there are 8 buttons that are meant to link to xml galleries.
i cant seem to load any of those galleries over the gallery.swf movie in the container.

if this is not possible (which i cant see why since it’s just like loading a page onto _self in an iframe with html), then how can i get around this?

thanks.

It’s certainly possible, but you’d need a less retarded nickname.

You can load a swf inside of a swf inside of a swf. As long as it’s not an actionscript 3 loading an actionscript 2 swf loading another swf.

Your problem could be that any directories will be pointed to where you main swf is.
For example. Your main swf is in:

main/index.swf

it is loading:
main/swfs/myXMLoader.swf

the second swf is loading
main/swfs/xml.xml

It will load properly when you open myXMLoader.swf on it’s own, but not index.swf. To fix that you need to move the file to:

main/xml.xml

Hope this helps.