View Single Post
Old 21-07-2003, 14:40   #2 (permalink)
dan
Iris Folder
 
dan's Avatar
 
Join Date: Apr 2003
Location: smokey
Posts: 2,674
Just place the image in a movie clip and make it dragable.

Drop this code on the first frame of the movieClip along with the image and it should work assuming your using MX - which I seem to remember you were.

this.onPress = function () {
this.startDrag(true);
}

this.onRelease = function (){
this.stopDrag();
}

And who says we aren't helpfull
  Reply With Quote