Hi,
Can anyone help with this simple problem. Can’t quite figure out why this is not unloading:
cont.onPress = function () {
trace (count);
if (count == 0){
_root.attachMovie(“contact_detail”, “my_mc”, 1, {_x: 100, _y: 100});
count += 1;
}
else if (count == 1){
unloadMovie(“my_mc”);
count -= 1;
}
}
Many thanks,