attachMovie issue

Hello-

I am attaching a movie from the library to _root by clicking a button that is nested several clips deep. On the main timeline, in my AS layer, I am trying to reference the attached clip via the instance name I gave it…

//button code
on (press) {
_root.attachMovie(“africa_symbol”, “af”, 1, {_x: 10, _y: 50});
}

//main timeline
af.onRollOver= function() {
//this is not working- no hand??? pls. help- thank you!
};