stillhanginon
Programmer
I’m using the loadMovie action to display an array of jpeg’s, one at a time, in a movie clip “photo”.
loadMovie(this.pathToPics+this.pArray[0], _root.photo);
I want to be able to move the loaded movie clip around the stage but according to the reference section:
“The target movie clip will be replaced by the loaded movie or image.”
So this doesn’t work:
photo.onPress = function() {
startDrag(this,false);
};
How do I move the jpeg?
loadMovie(this.pathToPics+this.pArray[0], _root.photo);
I want to be able to move the loaded movie clip around the stage but according to the reference section:
“The target movie clip will be replaced by the loaded movie or image.”
So this doesn’t work:
photo.onPress = function() {
startDrag(this,false);
};
How do I move the jpeg?