`

Flex xxx-app.xml配置

    博客分类:
  • flex
 
阅读更多

<? 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 > <!-- 程序名称,用于安装文件夹及exe程序名 -->
  
    
<!--  The name that is displayed in the AIR application installer. Optional.  -->   
    
< name > AIRTest_name </ name > <!-- air程序安装名称 -->
  
    
<!--  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 > <!-- air程序安装时说明 -->
  
    
<!--  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中采用Flex-config.xml进行命令行的编译

    在Flex开发环境中,`flex-config.xml`文件是一个至关重要的配置文件,它允许开发者自定义Adobe Flex编译器的行为。这个文件通常位于项目的根目录下,或者在全局的Flex SDK安装路径中,对于命令行编译尤其重要。通过...

    org.springframework.flex-1.0.3.RELEASE.jar.zip

    org.springframework.flex-1.0.3.RELEASE.jar.zip用于JAR包,org.springframework.flex-1.0.3.RELEASE.jar.zip用于JAR包org.springframework.flex-1.0.3.RELEASE.jar.zip用于JAR包org.springframework.flex-1.0.3....

    flex-2.6.4.tar.gz

    这个"flex-2.6.4.tar.gz"文件是Flex 2.6.4版本的源代码压缩包,遵循GNU General Public License (GPL)发布。在Linux和类Unix系统中,这种.tar.gz格式常用于存储和分发软件源代码,因为它可以高效地压缩大量文件。 ...

    jscam-source.xml.zip

    1. **配置**:使用JSCam提供的XML配置文件(通常为jscam-config.xml),设置摄像头参数,如分辨率、帧率等。这些参数会直接影响生成的SWF文件的性能和质量。 2. **编译**:将配置文件与JSCam源代码一起编译成SWF。...

    spring-flex-1.5.0.M2-dist.zip

    在Spring Flex 1.5.0.M2中,核心组件`spring-flex-1.5.0.M2.jar`扮演了关键角色,它是Spring和Flex集成的核心库,提供了诸如消息代理、配置支持和Spring服务代理等功能。这个库使得Flex客户端可以轻松地调用Spring...

    flex-2.6.1.tar.xz+xz-5.2.1.tar.bz2

    openwrt xz-5.2.1.tar.bz2+xz-5.2.1.tar.bz2

    flex-messaging-core-4.7.3.jar

    flex-messaging-core-4.7.3.jar 最新版,下载了好长时间才下载下来,亲测可用!

    flex-2.5.37.tar.gz

    `flex-2.5.37.tar.gz` 是这个工具的一个版本,用tar.gz格式打包,这是一种在Unix/Linux环境中常用的压缩方式。下面将详细介绍Flex及其在软件开发中的应用。 Flex全称为“Fast Lexical Analyzer Constructor”,它是...

    flex-2.6.0.tar.gz

    这个“flex-2.6.0.tar.gz”文件是一个针对Flex 2.6.0版本的源码压缩包,适用于Unix/Linux类操作系统。在Linux环境中,我们通常会用tar命令来解压这种格式的文件,例如:“tar -zxvf flex-2.6.0.tar.gz”。 Flex的...

    flex-2.5.37-6.el7.x86_64.rpm

    离线安装包,亲测可用

    flex-messaging-core.jar

    在flex-messaging-core.jar中,包含了一些关键组件和接口,例如: 1. **MessageBroker**: 这是Flex消息传递系统的中心,它管理消息的路由,调度和处理。MessageBroker实例化并配置了各种服务,如HTTP、HTTPS、RTMP...

    spring-flex-1.5.0.RELEASE

    spring-flex-1.5.0.RELEASE spring-flex-1.5.0.RELEASE spring-flex-1.5.0.RELEASE spring-flex-1.5.0.RELEASE

    flex-messaging-proxy.jar

    flex-messaging-proxy.jarflex-messaging-proxy.jarflex-messaging-proxy.jarflex-messaging-proxy.jar

    flex-messaging-opt.jar

    flex-messaging-opt.jarflex-messaging-opt.jarflex-messaging-opt.jarflex-messaging-opt.jar

    flex-2.6.4.tar

    flex-2.6.4

    Flex4.5中air桌面应用 app.xml 配置文件中文注释

    在Flex 4.5中,AIR(Adobe Integrated Runtime)应用程序的配置文件`app.xml`是整个应用的核心组成部分,它定义了应用的元数据、界面属性、资源文件、权限需求等关键信息。这个XML文件的结构和属性直接影响着AIR应用...

    flex-messaging-common.jar

    flex-messaging-common.jar

Global site tag (gtag.js) - Google Analytics