the following is from the kirupa tutorials, and it work great
ideally I need the files which are currently jpgs, and will be swfs, to
fade in from 0 alpha to 100 alpha, the movie runs at 30 fps and I would like
the fade to be about 2/3 second (20 frames visually), I can do this with the swf, but i would like to do with action script (can that happen if using jpgs ?).
I have no idea how to do that in Action Script.
Secondly, this is not showing up in my preloading, is that because it comes from seperate directory?
How to do that?
Thirdly, I would love to have an intervval timer so this will replay after about 30 seconds.
Lastly, is this type of thing possible with the image in the library and the linkage set to export for actionScript?
All this is way beyond my AS limits
anyOne willing to help me?
thanks for looking
filename = [“1.jpg”, “2.jpg”, “3.jpg”,“4.jpg”,“5.jpg”];
path = “http://208.106.158.167/fiveR/1330/”;
i = filename.length;
k = Math.ceil(Math.random()*i);
//k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);