Page 1 of 1

new installation - gallery stalls while initial flash loads

Posted: 10 Oct 2006, 23:17
by markam24
downloaded the update

(the old version is visible @ EDITED)

Unzipped the file, exported, and uploaded lasted version to:
http://www.EDITED.com/newvue/

deleted all content folders but one

set permissions on the remaining folder to 777

the flash begins to download but stalls after "get imagelist" (then nothing happens)

Any ideas?

Many Thanks!
Mark

more info

Posted: 11 Oct 2006, 00:38
by markam24
seems it's partially loading - i changed the config file to include the site menu and it works...although - i get the impression it is innitially trying to open a slideshow as apposed to the main gallery module.

Posted: 11 Oct 2006, 00:50
by mjau-mjau
i get the impression it is innitially trying to open a slideshow as apposed to the main gallery module.
Thats exactly what its trying to do. Not sure how it came out that way, but can you download the latest files here:

<a href="https://www.photo.gallery/downloads/imag ... agevue.swf" class="mlink">imagevue.swf</a><a href="https://www.photo.gallery/downloads/imag ... deshow.swf" class="mlink">slideshow.swf</a>

Posted: 13 Oct 2006, 03:22
by D-ziner
I have the same problem...
When using the loadMovie("gallery/imagevue.swf", targetMovieClip); action the gallery seems to stop and just showing 2 black rectangles.

Also with a simple button action, loading on a level (10)

on (release) {
loadMovieNum("http://www.domain.com/website/gallery/imagevue.swf", 10);
}

placing the url in a browser or using the GetURL function works fine.

Posted: 13 Oct 2006, 04:17
by mjau-mjau
loadMovie("gallery/imagevue.swf", targetMovieClip);
That is a slightly different issue actually. Since you are loading Imagevue from a remote folder, you need to specify the globalpath parameter to get it to work right:
Code
loadMovie("gallery/imagevue.swf?globalpath=gallery/", targetMovieClip);
Above code should do it ...