home *** CD-ROM | disk | FTP | other *** search
/ T-Online 6 / T-Online.iso / Animation / content / intro / intro.swf / scripts / __Packages / application / config / Config.as
Encoding:
Text File  |  2005-10-20  |  2.8 KB  |  46 lines

  1. class application.config.Config
  2. {
  3.    var configObj;
  4.    function Config()
  5.    {
  6.       this.configObj = {};
  7.       this.configObj.DESKTOP = _level0.desktopdir + "\\";
  8.       this.configObj.APPBASE = _level0.ssStartDir + "\\";
  9.       this.configObj.FILEPREFIX = "file:\\\\\\";
  10.       this.configObj.CSS = this.configObj.APPBASE + "data\\css\\";
  11.       this.configObj.SWFBASE = this.configObj.APPBASE + "content\\swf\\";
  12.       this.configObj.INTROBASE = this.configObj.APPBASE + "content\\intro\\";
  13.       this.configObj.IMGBASE = this.configObj.APPBASE + "content\\jpeg\\";
  14.       this.configObj.SOUNDBASE = this.configObj.APPBASE + "content\\sound\\";
  15.       this.configObj.HELP = this.configObj.APPBASE + "content\\hilfe\\";
  16.       this.configObj.PARTNER = this.configObj.APPBASE + "content\\partner\\";
  17.       this.configObj.PARTNER_LOGOS = this.configObj.PARTNER + "logos\\";
  18.       this.configObj.PARTNER_CONTENT = this.configObj.PARTNER + "content\\";
  19.       this.configObj.CONFIGXML = this.configObj.APPBASE + "data\\config.xml";
  20.       this.configObj.DESKTOPICON = this.configObj.APPBASE + "content\\exe\\SoftwarePlus.exe";
  21.       this.configObj.DESKTOPICONPATH = this.configObj.APPBASE + "content\\exe\\";
  22.       trace("Internal Config");
  23.       trace("---------------");
  24.       trace("");
  25.       trace("DESKTOP\t\t\t= " + this.configObj.DESKTOP);
  26.       trace("APPBASE\t\t\t= " + this.configObj.APPBASE);
  27.       trace("CSS\t\t\t\t= " + this.configObj.CSS);
  28.       trace("SWFBASE\t\t\t= " + this.configObj.SWFBASE);
  29.       trace("IMGBASE\t\t\t= " + this.configObj.IMGBASE);
  30.       trace("SOUNDBASE\t\t= " + this.configObj.SOUNDBASE);
  31.       trace("HELP\t\t\t\t= " + this.configObj.HELP);
  32.       trace("PARTNER_LOGOS\t= " + this.configObj.PARTNER_LOGOS);
  33.       trace("PARTNER_CONTENT\t\t= " + this.configObj.PARTNER_CONTENT);
  34.       trace("CONFIGXML\t\t= " + this.configObj.CONFIGXML);
  35.       trace("FILEPREFIX\t\t= " + this.configObj.FILEPREFIX);
  36.       trace("DESKTOPICON\t\t= " + this.configObj.DESKTOPICON);
  37.       trace("");
  38.       this.configObj.textList = {navBtn0:"zum <u>A</u>nfang",navBtn1:"<u>T</u>on",navBtn2:"<u>H</u>ilfe",navBtn3:"<u>I</u>mpressum",navBtn4:"<u>S</u>chlie├ƒen",banner0:"Ihre Inklusivleistungen.",banner1:"Das bietet die neue T-Online 6.0.",bannerNoneXP:"Ihre Inklusivleistungen von T-Online im ├£berblick.",cancelBtn:"Abbrechen",okBtn:"Weiter",modul0HeadLine:"",modul0Description:"",modul0ButtonLabel:"",modul1HeadLine:"",modul1Description:"",modul1DescriptionNoneXP:"",modul1ButtonLabel:"",previousButtonLabel:"zur├╝ck",nextButtonLabel:"weiter",registerButtonLabel:"Anmeldung",install0Label:"installieren",install1Label:"weiter",helpContent:"Hilfe-Eintrag"};
  39.       this.configObj.tabBorderColor = 14418032;
  40.    }
  41.    function getConfigObj()
  42.    {
  43.       return this.configObj;
  44.    }
  45. }
  46.