Havent got flash on this computer ...so this is a shot in the dark: suppose your mc is called mcDuck which has an onEnterFrame running
..then see if the following code spits out something which refers to the onEnterFrame
Code:
for(var i:String in mcDuck){
trace("property: " + i + " value: " + mcDuck[i] + "type: " + typeof mcDuck[i]);
}
If you do get something positive from the above then u can use a recursive function to loops through all the movieclips removing onEnterFrames..
actually maybe u could do it anyway..even if they dont have onEnterFrames running on them..the following should remove all onEnterFrames from all movieclips
Code:
deleteOnEnter(_root);
function deleteOnEnter(movie:MovieClip):Void {
delete movie.onEnterFrame;
for (var i:String in movie) {
if (movie[i] instanceof MovieClip) {
delete movie[i].onEnterFrame;
deleteOnEnter(movie[i]);
}
}
}