Search…

X3 Photo Gallery Support Forums

Search…
 
DELETED

Problem Loading into SWF

25 Oct 2006, 12:00

DELETED
 
thescientist
Posts: 19
Joined: 22 Oct 2006, 18:21

25 Oct 2006, 12:32

can you post a link to your website so we can have a look?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14469
Joined: 30 Sep 2006, 03:37

26 Oct 2006, 02:41

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);
 
DELETED

28 Oct 2006, 04:00

DELETED