当前位置: 首页 > news >正文

AIR应用程序中配置文件(*-app.xml)的说明

<?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> 

 

相关文章:

  • docker 初步使用
  • flex正则表达式语法
  • POJ 1981 Circle and Points (扫描线)
  • flex 自定义事件
  • spss-数据抽取-拆分与合并
  • flex metadata tag学习
  • 201521123108 《Java程序设计》第2周学习总结
  • flex子组件关闭父组件
  • Eclipse安装svn插件问题解决
  • 利用chmod获取权限
  • tomcat一闪而过解决方法
  • APP加固
  • jforum开源论坛安装
  • Vue.js之组件(component)
  • jforum架构和主要配置文件的说明
  • 【mysql】环境安装、服务启动、密码设置
  • 【译】React性能工程(下) -- 深入研究React性能调试
  • C++类的相互关联
  • docker容器内的网络抓包
  • DOM的那些事
  • input实现文字超出省略号功能
  • iOS高仿微信项目、阴影圆角渐变色效果、卡片动画、波浪动画、路由框架等源码...
  • jquery ajax学习笔记
  • Lsb图片隐写
  • Sequelize 中文文档 v4 - Getting started - 入门
  • Synchronized 关键字使用、底层原理、JDK1.6 之后的底层优化以及 和ReenTrantLock 的对比...
  • Vue2.x学习三:事件处理生命周期钩子
  • 从零开始在ubuntu上搭建node开发环境
  • 两列自适应布局方案整理
  • 删除表内多余的重复数据
  • 温故知新之javascript面向对象
  • 一份游戏开发学习路线
  • 3月7日云栖精选夜读 | RSA 2019安全大会:企业资产管理成行业新风向标,云上安全占绝对优势 ...
  • #include
  • (02)Cartographer源码无死角解析-(03) 新数据运行与地图保存、加载地图启动仅定位模式
  • (1)Android开发优化---------UI优化
  • (iPhone/iPad开发)在UIWebView中自定义菜单栏
  • (阿里巴巴 dubbo,有数据库,可执行 )dubbo zookeeper spring demo
  • (补)B+树一些思想
  • (翻译)Quartz官方教程——第一课:Quartz入门
  • (附源码)springboot高校宿舍交电费系统 毕业设计031552
  • (附源码)springboot助农电商系统 毕业设计 081919
  • (六) ES6 新特性 —— 迭代器(iterator)
  • (一)认识微服务
  • (转)linux自定义开机启动服务和chkconfig使用方法
  • ***汇编语言 实验16 编写包含多个功能子程序的中断例程
  • .java 指数平滑_转载:二次指数平滑法求预测值的Java代码
  • .NET MVC、 WebAPI、 WebService【ws】、NVVM、WCF、Remoting
  • .NET 除了用 Task 之外,如何自己写一个可以 await 的对象?
  • .NET/ASP.NETMVC 深入剖析 Model元数据、HtmlHelper、自定义模板、模板的装饰者模式(二)...
  • .NET6 开发一个检查某些状态持续多长时间的类
  • .NET导入Excel数据
  • .w文件怎么转成html文件,使用pandoc进行Word与Markdown文件转化
  • ??eclipse的安装配置问题!??
  • [].slice.call()将类数组转化为真正的数组