home *** CD-ROM | disk | FTP | other *** search
- class application.contents.HomeContent extends MovieClip implements application.models.IContent
- {
- var content;
- var instCounter;
- function HomeContent()
- {
- super();
- }
- function build(mc, dataObj, systemObj, configObj)
- {
- var _loc3_ = application.core.ContentManager.getInstance();
- var _loc2_ = _loc3_.getIface();
- application.core.FocusManager.getInstance().reset();
- application.core.FocusManager.getInstance().setContent(this);
- _loc2_.coBrandHolder.coBrand.update(true);
- Object.registerClass("home",application.screens.HomeScreen);
- this.content = application.screens.HomeScreen(mc.attachMovie("home","home" + this.instCounter,this.instCounter));
- this.content.setDataObj(dataObj);
- this.content.setSystemProvider(systemObj);
- this.content.setConfigProvider(configObj);
- this.content.build();
- }
- function remove()
- {
- this.content.removeMovieClip();
- }
- function update(state, activeMain, activeSub)
- {
- }
- function getNextContent()
- {
- }
- function getPreviousContent()
- {
- }
- function showDisclaimScroll(tf)
- {
- }
- function openRegistration()
- {
- }
- function onChangeRateContent(isSubscreen)
- {
- }
- function openInstaller()
- {
- }
- function openSoftware(id)
- {
- }
- function showInfo(id)
- {
- }
- function updateView(height, showBlind, id)
- {
- }
- function getScrollBar()
- {
- return null;
- }
- function getMask()
- {
- return null;
- }
- }
-