- Code: Select all
var arr = new Array("firstvideo.jpg", "secondvideo.jpg");
var idx = 0;
When you need the file, just use its index pos.
- Code: Select all
placeholder.loadMovie(arr[idx]);
idx++;
![]() | It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!) |

|
|
var arr = new Array("firstvideo.jpg", "secondvideo.jpg");
var idx = 0;
placeholder.loadMovie(arr[idx]);
idx++;