Page 1 of 1

Problem Loading into SWF

Posted: 25 Oct 2006, 12:00
by DELETED
DELETED

Posted: 25 Oct 2006, 12:32
by thescientist
can you post a link to your website so we can have a look?

Posted: 26 Oct 2006, 02:41
by mjau-mjau
This is most likely because of your folder scope. If you are loading imagevue.swf from the same folder as the HTML file where the parent SWF is embeded, it should work straightforward:
Code
loadMovie("imagevue.swf", target);
However, if you are loading imagevue.swf from a folder, you must include the globalpath parameter:
Code
loadMovie("gallery/imagevue.swf?globalpath=gallery/", target);

Posted: 28 Oct 2006, 04:00
by DELETED
DELETED