home *** CD-ROM | disk | FTP | other *** search
/ T-Online 6 / T-Online.iso / Animation / content / intro / intro.swf / scripts / __Packages / application / screens / BackBlindScreen.as < prev    next >
Encoding:
Text File  |  2005-10-20  |  987 b   |  43 lines

  1. class application.screens.BackBlindScreen extends application.screens.AbstractScreen implements application.models.IScreen
  2. {
  3.    var btn;
  4.    var tf;
  5.    var configObj;
  6.    function BackBlindScreen()
  7.    {
  8.       super();
  9.    }
  10.    function build()
  11.    {
  12.       var _loc2_ = this.btn;
  13.       this.buildButton(_loc2_);
  14.       _loc2_.mainId = 8;
  15.       _loc2_.subId = 0;
  16.       this.tf.text = this.configObj.textList.previousButtonLabel;
  17.       this.createFocusRec(_loc2_,_loc2_._width,_loc2_._height,0,0);
  18.       application.core.FocusManager.getInstance().registerButton(_loc2_,97);
  19.    }
  20.    function onButtonRollOver(mc)
  21.    {
  22.    }
  23.    function onButtonRollOut(mc)
  24.    {
  25.    }
  26.    function onButtonPress(mc)
  27.    {
  28.    }
  29.    function onButtonRelease(mc)
  30.    {
  31.       application.core.ContentManager.getInstance().showContent(3,7,0);
  32.    }
  33.    function onButtonDisable(mc)
  34.    {
  35.    }
  36.    function onButtonEnable(mc)
  37.    {
  38.    }
  39.    function onButtonReleaseOutside(mc)
  40.    {
  41.    }
  42. }
  43.