On(release) question

I have a mc set up like this:


on(release){
	this.scaleTo(100,.5,"easeInQuad");
	this.alphaTo(25,1,"linear")
	this.enabled = false;
	_root.star_1.alphaTo(0,.2,"easeOutSine");
	_root.eastbutton.alphaTo(100,.25,"easeOutBack");
	_root.eastbutton.enabled = true;
	_root.star_1.attachMovie("westH","eastHemi",1);
	_root.star_1.alphaTo(100,.5,"easeInSine",1.25);
}

the problem I have is that westH loads before _root.star_1 has time to fade out completely.

Here is an online example…If you switch between the east and west hemisphere you will know what I mean.

I know its a big file…still working on it.

http://www.suicidenote.net/casey/flashhelp.html

Thanks,
Case