Hi

I've use this code to hide mc's

Code:
on (release) {
_root.mcName._visibility = false;
}
I have to use this command in a loaded movie called "bilder.swf". The problem is that i want to hide a movieclip in the original movie named "index.swf".

How can i do that? The movieclip in the original movie is called "page".

Should i use this code? Is the level of the original movie 0?

Code:
on (release) {
_level0.page._visibility = false;
}