home *** CD-ROM | disk | FTP | other *** search
- _global.graphicsOptSet = [false,true,true,true,true,true];
- graphicsOptName = ["Smooth Edges","Parallax BG","","Hill Shading","Dust","Ground Covering"];
- this.onEnterFrame = function()
- {
- n = 0;
- i = 0;
- while(i < graphicsOptName.length)
- {
- if(graphicsOptName[i] != "")
- {
- _global.graphicsOptSet[i] = this["opt" + n].optCB.checked;
- n++;
- }
- i++;
- }
- };
- n = 0;
- i = 0;
- while(i < graphicsOptName.length)
- {
- if(graphicsOptName[i] != "")
- {
- if(n > 0)
- {
- opt0.duplicateMovieClip("opt" + n,n + 1);
- this["opt" + n]._y = opt0._y + n * 36;
- }
- this["opt" + n].n = n;
- this["opt" + n].optText.text = graphicsOptName[i];
- this["opt" + n].optCB.checked = _global.graphicsOptSet[i];
- n++;
- }
- i++;
- }
-