home *** CD-ROM | disk | FTP | other *** search
- class application.screens.BackBlindScreen extends application.screens.AbstractScreen implements application.models.IScreen
- {
- var btn;
- var tf;
- var configObj;
- function BackBlindScreen()
- {
- super();
- }
- function build()
- {
- var _loc2_ = this.btn;
- this.buildButton(_loc2_);
- _loc2_.mainId = 8;
- _loc2_.subId = 0;
- this.tf.text = this.configObj.textList.previousButtonLabel;
- this.createFocusRec(_loc2_,_loc2_._width,_loc2_._height,0,0);
- application.core.FocusManager.getInstance().registerButton(_loc2_,97);
- }
- function onButtonRollOver(mc)
- {
- }
- function onButtonRollOut(mc)
- {
- }
- function onButtonPress(mc)
- {
- }
- function onButtonRelease(mc)
- {
- application.core.ContentManager.getInstance().showContent(3,7,0);
- }
- function onButtonDisable(mc)
- {
- }
- function onButtonEnable(mc)
- {
- }
- function onButtonReleaseOutside(mc)
- {
- }
- }
-