home *** CD-ROM | disk | FTP | other *** search
- function rollOver()
- {
- if(!enter)
- {
- gotoAndStop(5);
- }
- }
- function rollOut()
- {
- if(!enter)
- {
- gotoAndStop(1);
- }
- }
- function release()
- {
- if(!enter)
- {
- enter = true;
- gotoAndPlay(10);
- }
- }
- stop();
- this.onRollOver = rollOver;
- this.onRollOut = rollOut;
- this.onDragOut = rollOut;
- this.onRelease = release;
-