home *** CD-ROM | disk | FTP | other *** search
- function LoadAboutLegalFrameVars()
- {
- _root.LegalTitle = _root.AboutLegal_main_title_1;
- _root.VersionBtn.TextBox.Text = _root.AboutVersion_nav_button_version;
- _root.LegalBtn.TextBox.Text = _root.AboutVersion_nav_button_Legal;
- var TempXML = new XML();
- _root.AboutFile = _root.AboutLegal_control_aboutLegal_file_1;
- TempXML.load(_root.AboutFile);
- TempXML.onLoad = GrabAboutContent;
- }
- function GrabAboutContent()
- {
- _root.AboutText = this.lastChild.toString();
- about.Message.message = _root.AboutText;
- RefreshAboutWindow();
- }
- function RefreshAboutWindow()
- {
- var uTop = getProperty("about.Message", _height) / -2 + getProperty("about.Up", _height) / 2;
- var tTop = uTop + getProperty("about.Up", _height) + 1;
- setProperty("about.Thumb", _Y, tTop);
- about.Message.message.scroll = 1;
- }
- LoadAboutLegalFrameVars();
- stop();
-