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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

loadMovie question

Status
Not open for further replies.

stillhanginon

Programmer
Mar 25, 2005
27
US
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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top