home *** CD-ROM | disk | FTP | other *** search
/ T-Online 6 / T-Online.iso / Animation / content / intro / intro.swf / scripts / __Packages / application / contents / HomeContent.as < prev    next >
Encoding:
Text File  |  2005-10-20  |  1.5 KB  |  66 lines

  1. class application.contents.HomeContent extends MovieClip implements application.models.IContent
  2. {
  3.    var content;
  4.    var instCounter;
  5.    function HomeContent()
  6.    {
  7.       super();
  8.    }
  9.    function build(mc, dataObj, systemObj, configObj)
  10.    {
  11.       var _loc3_ = application.core.ContentManager.getInstance();
  12.       var _loc2_ = _loc3_.getIface();
  13.       application.core.FocusManager.getInstance().reset();
  14.       application.core.FocusManager.getInstance().setContent(this);
  15.       _loc2_.coBrandHolder.coBrand.update(true);
  16.       Object.registerClass("home",application.screens.HomeScreen);
  17.       this.content = application.screens.HomeScreen(mc.attachMovie("home","home" + this.instCounter,this.instCounter));
  18.       this.content.setDataObj(dataObj);
  19.       this.content.setSystemProvider(systemObj);
  20.       this.content.setConfigProvider(configObj);
  21.       this.content.build();
  22.    }
  23.    function remove()
  24.    {
  25.       this.content.removeMovieClip();
  26.    }
  27.    function update(state, activeMain, activeSub)
  28.    {
  29.    }
  30.    function getNextContent()
  31.    {
  32.    }
  33.    function getPreviousContent()
  34.    {
  35.    }
  36.    function showDisclaimScroll(tf)
  37.    {
  38.    }
  39.    function openRegistration()
  40.    {
  41.    }
  42.    function onChangeRateContent(isSubscreen)
  43.    {
  44.    }
  45.    function openInstaller()
  46.    {
  47.    }
  48.    function openSoftware(id)
  49.    {
  50.    }
  51.    function showInfo(id)
  52.    {
  53.    }
  54.    function updateView(height, showBlind, id)
  55.    {
  56.    }
  57.    function getScrollBar()
  58.    {
  59.       return null;
  60.    }
  61.    function getMask()
  62.    {
  63.       return null;
  64.    }
  65. }
  66.