settings.as

来自「flash 仿VISTA windows 效果 源码」· AS 代码 · 共 38 行

AS
38
字号
_global.Globals = new Object();
Globals.xmlPath = "";
Globals.soundPath = "snd/";
Globals.clipPath = "swf/";
Globals.scriptPath = "sys/";
Globals.imagePath = "img/";
Globals.screenshotPath = "img/screenshots/";
Globals.screenWidth =Stage.width;
Globals.screenHeight =Stage.height;
Globals.popupName = "PopWin";
if (!(language != undefined && language != ""))
{
    lang = substring(System.capabilities.language, 0, 2);
    language = substring(System.capabilities.language, 0, 2);
    Globals.language = substring(System.capabilities.language, 0, 2);
}
else
{
    lang = language;
    Globals.language = language;
} // end if
winList = new Array("0");
depth_icons = 10000;
depth_windows = 20000;
depth_outline = 30000;
depth_menu = 30001;
depth_taskbar = 30002;
depth_clips = 40000;
depth_volume = 50000;
depth_effects = 60000;
depth_popupControl = 70001;
depth_icondrag = 70002;
depth_tooltips = 70003;
depth_cursor = 70004;
depth_hourglass = 70005;
Globals.Cookie = sharedobject.getLocal("cookie_winFX3");
xmlFiles = ["colors.xml|COLOR SCHEMES", "menu.xml|MENU DATA", "settings.xml|SETTINGS", "languages.xml|LANGUAGES", "winoptions.xml|WINDOW OPTIONS", "taskbar.xml|TASKBAR DATA", "icons.xml|ICON DATA"];

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?