首页 > 移动平台 > 详细

Flex xxx-app.xml配置

时间:2016-03-14 13:51:14      阅读:248      评论:0      收藏:0      [点我收藏+]

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

Flex xxx-app.xml配置

原文:http://www.cnblogs.com/dongyl/p/5275345.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!