CS3 page loads at bottom of browser window

I’m trying to figure out the following question… any thoughts would be greatly appreciated!

|-----------------------------------------------------------------------------------------------------------------------|

I’m building a Flash website in CS3 and have a question which should be really easy to answer…

  • When you click on a link in the bottom menu bar of my site, the new page opens at the bottom of that page (instead of the top).

As you can see (from the action script at the bottom of this post ), it’s basically just turning on and off the visibility of the pages. So when you click on the Ethnography button, it makes that page visible and the page that you were on, not visible.

So when the button being clicked (the Ethnography button) makes the Ethnography page visible, the page location stays in the same place (aka - the bottom of the page). Is there a quick action script statement that I can add to the EventListener for the button that will tell it to open the new page at the top of the page?

Something like: window.scrollTo(0,0) ?

—The following is an example of a button in my main page action script:------------------------------------

Aboutethnography1_btn.addEventListener(MouseEvent.CLICK, forAboutethnography1);
function forAboutethnography1(event:MouseEvent):void

{ indexHeaderBar2_mc.visible = false;
indexText1_mc.visible = false;
ToTheMaxPage1_mc.visible = false;
customerPage1_mc.visible = false;

ethnography2_btn.visible = true;
focusGroups1_btn.visible = false;
focusGroups1_mc.visible = false;
ethnographyPage1_mc.visible = true;

trainingPage1_mc.visible = false;
ideaGenerationPage1_mc.visible = false;
aboutPage1_mc.visible = false;
contactPage1_mc.visible = false;

SWFAddress.setValue(“Ethnography”);

FG_focusGroups1_btn.visible = false;
FG_ethnography1_btn.visible = false;
FG_ideaGeneration1_btn.visible = false;
FG_training1_btn.visible = false;

IG_focusGroups1_btn.visible = false;
IG_ethnography1_btn.visible = false;
IG_ideaGeneration1_btn.visible = false;
IG_training1_btn.visible = false;

TR_focusGroups1_btn.visible = false;
TR_ethnography1_btn.visible = false;
TR_ideaGeneration1_btn.visible = false;
TR_training1_btn.visible = false;

TTMfocusGroups1_btn.visible = false;
TTMethnography1_btn.visible = false;
TTMideaGeneration1_btn.visible = false;
TTMtraining1_btn.visible = false;

AboutfocusGroups1_btn.visible = false;
Aboutethnography1_btn.visible = false;
AboutideaGeneration1_btn.visible = false;
Abouttraining1_btn.visible = false;

customer1_btn.visible = false;
about1_btn.visible = false;
contact1_btn.visible = false;
innovation1_btn.visible = false;
ToTheMax1_btn.visible = false;
training1_btn.visible = false;
home1_btn.visible = true;

focusGroups2_btn.visible = true;
training2_btn.visible = true;
ideaGeneration1_btn.visible = true;
ethnography1_btn.visible = true;
}