home *** CD-ROM | disk | FTP | other *** search
- package game.panel
- {
- import flash.display.MovieClip;
- import game.ThisGameManager;
-
- [Embed(source="/_assets/assets.swf", symbol="game.panel.BlendaIntro")]
- public class BlendaIntro extends MovieClip
- {
-
-
- public function BlendaIntro()
- {
- super();
- addFrameScript(11,frame12);
- this.x = 16;
- this.y = -108;
- }
-
- internal function frame12() : *
- {
- stop();
- MovieClip(this.parent).stop();
- goGO();
- }
-
- public function goGO() : void
- {
- ThisGameManager.getInstance().play();
- }
- }
- }
-