Hello, and thanks for any help in advanced. Ok so here is the proble… I am trying to define an on release for 2 movie clips… however, when I use loadMovie on the clips, the onRelease gets deleted. I tried setting the onRelease after I used loadMovie but since the movie had not loaded yet, it still overwrote it… understand? Any ideas? Thanks. here is the code
pic1.loadMovie("../"+varLoad.picPath1);
pic1.onEnterFrame = function() {
trace(this.getBytesTotal());
};
pic2.loadMovie("../"+varLoad.picPath2);
pic2.onRelease = function() {
trace(this);
};
EDIT**
I know the code above has onEnterFrame for pic1… that was me testing to see that it was getting set at all… and the onEnterFrame executed once then stopped. Welp thnx for any help.