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]
Display a lot of pictures - Part 2
hi BlackBuda,
did you set the timeline control of the flash clip to be controlled by flash.
right-click the channel, the choose timelinecontrol = flash.
this enables actionscripting in the main-timeline.
i can't seem to be able to download the file you attached.. can you zip it first...
cheers
Edwin
did you set the timeline control of the flash clip to be controlled by flash.
right-click the channel, the choose timelinecontrol = flash.
this enables actionscripting in the main-timeline.
i can't seem to be able to download the file you attached.. can you zip it first...
cheers
Edwin
Flash Load Fader 2.0 - By Sense
Hi People, we coded just the thing you need lasts week. We needed it for a show. We made 2 parameters;
1. How long a pictute stays on the screen
2. How long the fade takes
You can download it from our site : http://www.friendsofsense.com/index.php?id=01148
Any questions or just need some explaination about the code, just drop us a line @ info@friendsofsense.com
Hope this works for you!
Cheerz,
nz|Sense
PS: At the moment it loads the pictures randomly, probably will add another parameter for random on / off in v2.1
PSS: blackbuda: I think your problem is with this line:
loadMovie("/images/photo"+sequencia+".jpg","moldura_place" );
try loadMovie("images/photo" + sequencia + ".jpg", _root.moldura_place);
so drop the / at the beginning, and the "" around your target MC
[Edited on 30-10-2004 by Sense]
1. How long a pictute stays on the screen
2. How long the fade takes
You can download it from our site : http://www.friendsofsense.com/index.php?id=01148
Any questions or just need some explaination about the code, just drop us a line @ info@friendsofsense.com
Hope this works for you!
Cheerz,
nz|Sense
PS: At the moment it loads the pictures randomly, probably will add another parameter for random on / off in v2.1
PSS: blackbuda: I think your problem is with this line:
loadMovie("/images/photo"+sequencia+".jpg","moldura_place" );
try loadMovie("images/photo" + sequencia + ".jpg", _root.moldura_place);
so drop the / at the beginning, and the "" around your target MC
[Edited on 30-10-2004 by Sense]