Display a lot of pictures - Part 2
Posted: Fri Oct 29, 2004 09:54
Well.
On the last Buffy, the Vampire Slayer:
"Buffy: Willom!!!"
"Spike: Buffy wait!"
ops, wrong tv channel. :D
Let´s continue.
The Mission:
Make resolume autoload and display many pictures in a folder
Idea:
Make a flash with actionscript autoload and slide the images.
After a little time, the simple code...: ;)
sequencia=1;
setInterval(load_photos,5000,sequencia); // 5000 = 5 seconds
function load_photos(){
if (sequencia>100){ // the last photo on folder
sequencia=1; // start again
}
loadMovie("/images/photo"+sequencia+".jpg","moldura_place");
sequencia++; // no arrays, just read the file sequence in folder, increment it.
}
The Fucking problem:
Work on flash, on web...
But on resolume just a Black screen...
any ideas?
ANY IDEAS? :/
[Edited on 29-10-2004 by BlackBuda]
On the last Buffy, the Vampire Slayer:
"Buffy: Willom!!!"
"Spike: Buffy wait!"
ops, wrong tv channel. :D
Let´s continue.
The Mission:
Make resolume autoload and display many pictures in a folder
Idea:
Make a flash with actionscript autoload and slide the images.
After a little time, the simple code...: ;)
sequencia=1;
setInterval(load_photos,5000,sequencia); // 5000 = 5 seconds
function load_photos(){
if (sequencia>100){ // the last photo on folder
sequencia=1; // start again
}
loadMovie("/images/photo"+sequencia+".jpg","moldura_place");
sequencia++; // no arrays, just read the file sequence in folder, increment it.
}
The Fucking problem:
Work on flash, on web...
But on resolume just a Black screen...
any ideas?
ANY IDEAS? :/
[Edited on 29-10-2004 by BlackBuda]