近日研究Air。。对它的一些配置文件作了修改。。。好多窗体属性都是来自那个文件。。后来在网上看到一篇更详细的。作者很用心的用中文标示出来了。。。谢谢了。。。
转自http://www.skill8.com/article/Flex_html/105.htm
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/1.0">

<!-- The application identifier string, unique to this application. Required. -->
    <id>AIRTest1</id><!-- 软件ID,当安装时系统将会检测同一ID软件版本,版本高的即做更新操作 -->

<!-- Used as the filename for the application. Required. -->
    <filename>AIRTest_filename</filename><!-- 安装界面中 Application: -->

<!-- The name that is displayed in the AIR application installer. Optional. -->
    <name>AIRTest_name</name><!-- 桌面快捷方程式及窗口和系统控制面板添加程序中名称 -->

<!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
    <version>1.0</version><!-- 软件版本 -->

<!-- Description, displayed in the AIR application installer. Optional. -->
    <description>AIRTest_description</description><!-- 安装第二个界面中的 description -->

<!-- Copyright information. Optional -->
    <copyright>AIRTest_copyright</copyright>

<!-- Settings for the application's initial window. Required. -->
    <initialWindow>
        <!-- The main SWF or HTML file of the application. Required. -->
        <!-- Note: In Flex Builder, the SWF reference is set automatically. -->
        <content>[This value will be overwritten by Flex Builder in the output app.xml]</content>
        <!-- The title of the main window. Optional. -->
        <title>AIRTest_title</title><!-- 窗体标题,当此处为注释状态时取 name标签中内容 -->

<!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
        <systemChrome>none</systemChrome><!-- standard为标准窗体,none 为圆滑窗体 -->

<!-- Whether the window is transparent. Only applicable when systemChrome is false. Optional. Default false. -->
        <transparent>true</transparent><!-- 背景是否透明 -->

<!-- Whether the window is initially visible. Optional. Default false. -->
        <visible>true</visible><!-- 窗体初始化的时候是否可见 -->

<!-- Whether the user can minimize the window. Optional. Default true. -->
        <minimizable>true</minimizable><!-- 是否允许最小化 -->

<!-- Whether the user can maximize the window. Optional. Default true. -->
        <!-- <maximizable></maximizable> --><!-- 是否允许最大化 -->

<!-- Whether the user can resize the window. Optional. Default true. -->
        <!-- <resizable></resizable> --><!-- 是否允许缩放窗体 -->

<!-- The window's initial width. Optional. -->
        <!-- <width></width> --><!-- 窗体宽 -->

<!-- The window's initial height. Optional. -->
        <!-- <height></height> --><!-- 窗体高 -->

<!-- The window's initial x position. Optional. -->
        <!-- <x></x> --><!-- 窗体X位置坐标 -->

<!-- The window's initial y position. Optional. -->
        <!-- <y></y> --><!-- 窗体Y位置坐标 -->

<!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->
        <!-- <minSize></minSize> --><!-- 窗体最小化值 -->

<!-- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->
        <!-- <maxSize></maxSize> --><!-- 窗体最大化值 -->
    </initialWindow>

<!-- The subpath of the standard default installation location to use. Optional. -->
    <installFolder>AIRInstrallField/AIR</installFolder><!-- 默认安装路径 C:\Program Files\AIRInstrallField\AIR -->

<!-- The subpath of the Windows Start/Programs menu to use. Optional. -->
    <programMenuFolder>AIRTest_programMenuFolder</programMenuFolder><!-- 开始/程序 快捷方程式所在文件夹 -->

<!-- The icon the system uses for the application. For at least one resolution,
         specify the path to a PNG file included in the AIR package. Optional. -->
    <!-- 图标的大小必须和标签中标写的尺寸一致 -->
    <icon>
        <image16x16>icons/logo.png</image16x16><!-- 系统菜单中及系统控制面板添加程序中的图标 -->
        <image32x32>icons/logo_32.png</image32x32><!-- 桌面图标,窗口图标 -->
        <image48x48>icons/logo_48.png</image48x48><!-- 安装目录EXE文件图标 -->
        <image128x128>icons/logo_128.png</image128x128><!-- 未知 -->
    </icon>

<!-- Whether the application handles the update when a user double-clicks an update version
    of the AIR file (true), or the default AIR application installer handles the update (false).
    Optional. Default false. -->
    <!-- <customUpdateUI></customUpdateUI> --><!-- 是否为同一版本的时候双击直接更新 -->
    <!-- Whether the application can be launched when the user clicks a link in a web browser.
    Optional. Default false. -->
    <!-- <allowBrowserInvocation></allowBrowserInvocation> --><!-- 是否应用程序可以通过浏览器激活 -->

<!-- Listing of file types for which the application can register. Optional. -->
    <!-- <fileTypes> -->

<!-- Defines one file type. Optional. -->
        <!-- <fileType> -->

<!-- The name that the system displays for the registered file type. Required. -->
            <!-- <name></name> -->

<!-- The extension to register. Required. -->
            <!-- <extension></extension> -->
            <!-- The description of the file type. Optional. -->
            <!-- <description></description> -->
            <!-- The MIME type. Optional. -->
            <!-- <contentType></contentType> -->
            <!-- The icon to display for the file type. Optional. -->
            <!-- <icon>
                <image16x16></image16x16>
                <image32x32></image32x32>
                <image48x48></image48x48>
                <image128x128></image128x128>
            </icon> -->
        <!-- </fileType> -->
    <!-- </fileTypes> -->

</application>

转载于:https://www.cnblogs.com/qiance/archive/2009/08/03/1537638.html

AIR 配置文件(*-app.xml)说明(转)相关推荐

  1. 配置文件app.config

    无论对于客户端程序还是web应用程序,配置文件的作用不言而喻,现总结用法如下: 1. 创建配置节类 必须创建继承自ConfigurationSection的对象才能进行配置数据读写操作,Configu ...

  2. C#中怎样获取默认配置文件App.config中配置的键值对内容

    场景 在新建一个程序后,项目中会有一个默认配置文件App.config 一般会将一些配置文件信息,比如连接数据库的字符串等信息存在此配置文件中. 怎样在代码中获取自己配置的键值对信息. 注: 博客主页 ...

  3. Adobe AIR移动App的互相调用实现方式

    [转] Adobe AIR移动App的互相调用实现方式 在使用Adobe AIR进行移动应用开发的时候,我们或许会有这样的需求:假如我们开发的是两个应用(A和B),同时安装到手机上,那么能否在A中呼叫 ...

  4. GlassFish主配置文件domain.xml介绍

    刚开始接触GlassFish时,觉得它好麻烦,配置也复杂,WEB管理端内容也繁多,其实还是自己对Java相关知识不了,再熟悉了这些之后,现在回头来看看,其实GlassFish的配置文件也是挺简单的. ...

  5. C# SuperSocket 手把手教你入门 傻瓜教程---5(探索自定义AppServer、AppSession,Conmmand,用配置文件App.comfig启动服务器)

    C# SuperSocket 手把手教你入门 傻瓜教程系列教程 C# SuperSocket 手把手教你入门 傻瓜教程---1(服务器单向接收客户端发送数据) C# SuperSocket 手把手教你 ...

  6. 类项目中的配置文件app.config在打包安装后的信息获取的问题

    在一个项目中碰到这样的一个问题,做一个WORD插件,功能在类库项目中实现了,配置信息存在类库项目的配置文件app.config中,在进行打包后,获取的配置文件中的DocType节点信息时,使用以下方法 ...

  7. struts2之配置文件struts.xml详解

    struts配置文件 struts.xml配置参数详解 struts.xml中很大一部分配置默认配置就好了 但是有些还是需要做了解  以便于理解 和修改 <?xml version=" ...

  8. Tomcat(二):tomcat配置文件server.xml详解和部署简介

    1. 入门示例:虚拟主机提供web服务 该示例通过设置虚拟主机来提供web服务,因为是入门示例,所以设置极其简单,只需修改$CATALINA_HOME/conf/server.xml文件为如下内容即可 ...

  9. log4j2的配置文件log4j2.xml笔记

    一.背景 最近由于项目的需要,我们把log4j 1.x的版本全部迁移成log4j 2.x 的版本,那随之而来的slf4j整合log4j的配置(使用Slf4j集成Log4j2构建项目日志系统的完美解决方 ...

最新文章

  1. 她琴棋书画全能,还进入清华计算机系实验室,被赞智商太超群、能力过强悍...
  2. Linux安全学习总结
  3. EasyUI中Dialog对话框的简单使用
  4. python 装饰器有哪些_python装饰器有什么用
  5. python 历遍子弹_python之子弹移动
  6. c++ winpcap开发(8)
  7. llvm vs gcc 我被雷到了, 速度相差300多倍,你还用GCC吗!【转】
  8. Hibernate不能自动建表解决办法【转载】
  9. java编程对电脑配置_java编程对电脑配置有什么要求?如何选择合适电脑?
  10. 数学建模经验分享及比赛时间汇总
  11. 黑马Python笔记1
  12. 网课搜题公众号制作方法
  13. 智能防盗报警系统前端报警设备的选择
  14. 邮箱,手机号的正则表达式
  15. 智能手机选购建议(2018)
  16. python开源自动化测试平台_8款开源自动化测试框架
  17. 82055-94-5|N3-PEG-N3|Azide-PEG-Azide|叠氮PEG叠氮可修饰蛋白质
  18. mysql 查询echar 折现数据
  19. 怎样恢复安装计算机,计算机安装双系统后如何修复系统引导 修复系统引导的方法...
  20. 基本的信号——阶跃信号与阶跃序列

热门文章

  1. BZOJ4754 JSOI2016独特的树叶(哈希)
  2. 线程间通信共享变量和queue
  3. GSM —— 商业蜂窝通信系统
  4. shell part2
  5. stm32.cube介绍
  6. C++ Double Ended Queues(双向队列)
  7. windows server 2003断开远程之后自动注销用户
  8. android的 selector 背景选择器和 shape 详解(转)
  9. JPA中persistence.xml模板
  10. [Flex]Flex SDK 4(Gumbo)改善的Layout和Scroller(二)