Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

createEmptyMovieClip <- drag and drop

Status
Not open for further replies.

fostom

Programmer
Jul 3, 2002
31
NO
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've just put something for this in your other thread.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top