PDA

View Full Version : removeMovieClip ?


Xeef
08-23-2004, 12:16 PM
hi to ALL

_root.attachMovie("aaa","ccc",1);
_root.attachMovie("bbb","ccc",1);
//is there any diferenc ? (Memory usage) same level !!!
_root.attachMovie("aaa","ccc",1);
_root.ccc.removeMovieClip();
_root.attachMovie("bbb","ccc",1);


thanks for any help

Xeef
08-23-2004, 02:56 PM
i now it's Monday but PLZ sombody

deadbeat
08-23-2004, 06:12 PM
What exactly is your question?

K.

Xeef
08-23-2004, 06:26 PM
is there a diferenc if i attach a movie on the same DEPTH which is overwriting the old one or if i explicitli unload the movie and then attach the new one
is in the ceas i not unload it enithing left from it in memory?

Tink
08-23-2004, 08:13 PM
i don't believe there is any difference

black
08-24-2004, 07:13 AM
if you attach another mc into the depth which has been occupied, the old one will be replaced by the newer.
if you unload the old mc and attach the new mc to that depth the result is the same with the way above.

Xeef
08-24-2004, 10:45 AM
thx
i just was thinking maybe aditional values defined by a class will stay in memory