Global variable for Movie Clip Instance

Hi, i have a movie clip with the instance name “aboutus”

Code:

The following code does not work:

_global.page = “aboutus”

on(release){
_root.main._global.page.play();
_global.menuSelected = “framing”;
_global.page = “framing”;
}

BUT this code does

_global.page = “aboutus”

on(release){
_root.main.aboutus.play();
_global.menuSelected = “framing”;
_global.page = “framing”;
}

the only difference being one uses the variable wheres the other uses the instance name…
Can anyone enlighten me what i am doing wrong?

Thanks