im builing a website the loads external .swf from the main movie. now im no pro so i cant get the external movie's action script to work.

if the external movie is called "section3.swf" and the rollover has a instance name of "how" how do i make it perform its rollover????

i thought it would b something like so

section3.swf.how.onRollOver = function(){
section3.swf.how.gotoAndPlay("overIt");
section3.swf.how.back = false;
section3.swf.how.play();
}

section3.swf.how.onRollOut = function(){
section3.swf.how.back = true;
}

any suggestions?