Hi
I import som images on the fly in my flash app with this code:
for (j=1; j<5; j++) {
path = 'thumbs/thumb'+j+'.jpg';
_root.createEmptyMovieClip('movieClip'+j, j);
_root['movieClip'+j]._x = 40*j;
_root['movieClip'+j]._y = 40*j;
_root['movieClip'+j].loadMovie(path);
}
..I want to be able to drag and drop the images I just added. Is this possible?
Regards, Tommy
I import som images on the fly in my flash app with this code:
for (j=1; j<5; j++) {
path = 'thumbs/thumb'+j+'.jpg';
_root.createEmptyMovieClip('movieClip'+j, j);
_root['movieClip'+j]._x = 40*j;
_root['movieClip'+j]._y = 40*j;
_root['movieClip'+j].loadMovie(path);
}
..I want to be able to drag and drop the images I just added. Is this possible?
Regards, Tommy