home *** CD-ROM | disk | FTP | other *** search
- function mStart()
- {
- play();
- }
- function mHit()
- {
- _root.goGame.pbGreyBallActive = false;
- _root.goGame.poBall.mHide();
- this.piCount = this.piCount + 1;
- }
- function mRedHit()
- {
- _parent.redball.mHide();
- _root.goGame.pbRedBallActive = false;
- this.piCount = this.piCount + 1;
- }
- function mDone()
- {
- if(this.piCount == 2)
- {
- _root.goGame.mLevelComplete();
- }
- else if(_root.goGame.pbRedBallActive == false)
- {
- _root.goGame.mActivate();
- }
- }
- function mRedDone()
- {
- if(this.piCount == 2)
- {
- _root.goGame.mLevelComplete();
- }
- else if(_root.goGame.pbGreyBallActive == false)
- {
- _root.goGame.mActivate();
- }
- }
- function mReset()
- {
- piCount = 0;
- _parent.redball.mReset();
- targeta.gotoAndStop(1);
- targetb.gotoAndStop(1);
- }
- piCount = 0;
- stop();
-