Hi, I would like to load more pictures with one request in my main swf movie.
Something like main.php?picture.jpg&from=1-20 this would load picture01.jpg, picture02.jpg, ... picture10.jpg in to one swf
Thanks
Logged In: YES user_id=1349299
i don't think that's possible! how would you load that from flash? you can no load multiple movies with one loadmovie action use a loop in flash instead...
for(i=1;i<20;i++) { loadMovie("jpg2swf.php?pic="+i,"clip"+1); }
... or something like that!
Cheers Belthazor
Log in to post a comment.
Logged In: YES
user_id=1349299
i don't think that's possible!
how would you load that from flash?
you can no load multiple movies with one loadmovie action
use a loop in flash instead...
for(i=1;i<20;i++)
{
loadMovie("jpg2swf.php?pic="+i,"clip"+1);
}
... or something like that!
Cheers
Belthazor