Search…

X3 Photo Gallery Support Forums

Search…
 
alexdex
Topic Author
Posts: 2
Joined: 22 Oct 2008, 04:18

loading problem

22 Jan 2009, 08:52

Hi.....i need to load a specific page of my gallery inside a flash project

I follow and read all about this.

I put online the gallery:

http://lnx.miriamlangellotti.com/web/im ... gevue2.swf

So i have a main folder web and after 2 differen folders:
Imagevue and Content
Inside content i have 6 folders. The name is 1, 2, 3 etc........

I create a flash project actionscript 2 and player 8 with correct size and framerate and i load the movie with this actionscript:

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... gevue2.swf", targetMovieClip);
}

Function without problem but if i need to loading for example the folder 3 inside content never function!!!!!!!!!!!!!!!!

I change swf address on config in administartion gallery (on adn off)

I try so:

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... content/3/", targetMovieClip);
}

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... /content3/", targetMovieClip);
}

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... content/3/", targetMovieClip);
}

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... /content3/", targetMovieClip);
}

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... content/3/", targetMovieClip);
}

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... content/3/", targetMovieClip);
}

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... content/3/", targetMovieClip);
}

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... /content3/", targetMovieClip);
}

on (release) {
loadMovie("http://lnx.miriamlangellotti.com/web/im ... /content/3", targetMovieClip);
}

And more and more but nothing:-(((((((((((

Sorry for my english

PLEASE HELP ME

THANK YOU
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

29 Jan 2009, 07:16

Sorry for the late reply ...

Basically, there are two factors here:

1. You should be using "startpath" and not "path" parameter, and the value is ALWAYS relative to gallery folder. For example:
Code
imagevue2.swf?startpath=content/folder/
2. Why not use RELATIVE url when loading the SWF? It may help as flash has restrictions... Also it's impossible for me to know the location of your main flash file.