FMX help - external swf photo gallery loaded to full website

Hi I’ve used the basic ideas of full flash site and photo gallery tute (which loads images from an external file). Now, when I load the photo gallery swf page into full site (tute) only the peacock photo comes up without any mask or arrow buttons. Why is this happening? Do I have to do something different, when images are loaded from an external file?

I Clicked on Portfolio button and right clicking on it to get action panel and pasting in the following (the pg7.swf is the final full photo gallery tute which shows animal photos in a masked frame)

on (release) {
_root.contents.loadMovie(“pg7.swf”);
}

Can you help?

I had exactly the same problem with exactly the same swf. The problem is due to the fact that the tutorial uses releative rather than absolute paths to find the pictures which get messed up when the swf is loaded into a movie. I spent a while messing around with the code, trying to get it to work. In the end I just put the gallery code directly into my movie and it worked fine.

Hope this helps,

Biscuit.:wink:

thanks, I’ll have a go!