home *** CD-ROM | disk | FTP | other *** search
- function setContent(temp)
- {
- if(temp == "input")
- {
- pane.setScrollContent("supportContent");
- }
- else if(temp == "thankyou")
- {
- pane.setScrollContent("Thank_You");
- }
- pane.refreshPane();
- }
- function translate()
- {
- switch(_level1._root.lang)
- {
- case "en":
- gotoAndStop(4);
- break;
- case "de":
- gotoAndStop(5);
- break;
- case "hr":
- gotoAndStop(6);
- break;
- default:
- gotoAndStop(4);
- }
- }
- function setGlobalStyleFormat()
- {
- globalStyleFormat.face = 1458837;
- globalStyleFormat.background = 1724600;
- globalStyleFormat.arrow = 0;
- globalStyleFormat.darkshadow = 0;
- globalStyleFormat.shadow = 0;
- globalStyleFormat.highlight = 0;
- globalStyleFormat.highlight3D = 0;
- globalStyleFormat.scrollTrack = 0;
- globalStyleFormat.selection = 1458837;
- globalStyleFormat.textSelected = 16777215;
- globalStyleFormat.textColor = 16777215;
- globalStyleFormat.textFont = "supertext";
- globalStyleFormat.embedFonts = true;
- globalStyleFormat.textSize = 8;
- globalStyleFormat.applyChanges();
- }
- this.setGlobalStyleFormat();
- this.setContent("input");
- _root.mouseObj = new classMouse();
- pane.onMouseWheel = function(intWheelDelta)
- {
- var objCurrentPosition = this.getScrollPosition();
- var intNewPosition = objCurrentPosition.y - intWheelDelta;
- this.setScrollPosition(0,intNewPosition);
- };
- _root.mouseObj.addListener(pane);
- stop();
-