- 浏览: 293416 次
- 性别:
- 来自: 济南
文章分类
- 全部博客 (197)
- 知识梳理 (37)
- 企业架构 (7)
- java (37)
- linux (20)
- oracle (7)
- mysql (15)
- ide使用 (18)
- spring (9)
- nginx (1)
- MyBatis (2)
- 计划 (2)
- javamail+james (1)
- activiti (1)
- 杂谈 (8)
- flex (17)
- android总结 (5)
- android小技巧 (6)
- 术语 (2)
- ant (3)
- window (10)
- svn (5)
- UML (2)
- DOS (2)
- log (5)
- netty (1)
- maven (3)
- zip (1)
- rar (1)
- hibernate (1)
- redis (1)
- JS (3)
- junit (1)
- git (3)
- resin (1)
- 设计模式 (1)
- 读书笔记 (1)
- 分布式 (1)
最新评论
-
aerfaguihua:
请问楼主 netty编写的客户端能否同步监听接收服务器传来的数 ...
Netty 简单样例分析 -
wanggang0321:
...
logback使用 -
lijunwyf41:
写的太好了
Rational Rose四个视图的含义、区别、用途 -
fengyie007:
如果已经修改了,直接更新了再提交就行了啊。
svn: is out of date -
liguangge285:
http://www.blogjava.net/wangfun ...
我的activiti学习笔记
<?
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
>
发表评论
-
单例遇到的问题
2013-03-20 19:22 693今天一个单例的程序出了问题,分析一下。代码如下: ... -
解析Flex与服务器端的通信的几种方式
2013-01-14 17:23 701在学习Flex的过程中你 ... -
Sprite对象如何添加到flex中
2013-01-09 11:42 1090第一步 当然要创建sprite 类了。 package ... -
flex使用样式控制button的icon(图片)切换
2012-12-27 17:27 11861.定义button <s:Button styleN ... -
flex使用as创建的组件,样式定义
2012-12-27 15:01 1805使用as创建一个组件,如 var label:Label=n ... -
自定义皮肤示例
2012-12-24 19:15 760MyButtonSkin3.mxml <?xm ... -
Flex4皮肤
2012-12-24 18:25 726http://blog.minidx.com/ -
s:line使用
2012-12-12 14:24 770<s:HGroup verticalAl ... -
flex自定义事件使用
2012-11-29 19:08 8121.创建事件 public class TestEvent ... -
ActionScript3.0学习之路(2)——奇怪的变量作用域
2012-11-24 16:54 756转自:http://blog.csdn.net/tassdar ... -
asdoc使用
2012-11-21 23:21 1016今天使用flash builder 的asdoc生成工具,网上 ... -
利用flexunit进行单元测试二(异步测试)
2012-11-20 19:41 953flex和后台打交道几乎都是异步方式的,我最近就在team里面 ... -
Flex的Array和ArrayCollection
2012-11-17 10:36 8401.array作为控件使用 FL ... -
flex 中embed 的用法
2012-11-16 10:32 1075Flex 软件中经常需要使用一些外部的资源,如图片、声音、 ... -
Flex中[Bindable]的使用心得
2012-11-15 10:34 117013.2.1 声明可绑定数据源--[Bindable]解析 ... -
flex学习笔记
2012-11-12 22:33 1271最近公司使用flex,所以开始进行学习。 flex初识 ...
相关推荐
在Flex开发环境中,`flex-config.xml`文件是一个至关重要的配置文件,它允许开发者自定义Adobe Flex编译器的行为。这个文件通常位于项目的根目录下,或者在全局的Flex SDK安装路径中,对于命令行编译尤其重要。通过...
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版本的源代码压缩包,遵循GNU General Public License (GPL)发布。在Linux和类Unix系统中,这种.tar.gz格式常用于存储和分发软件源代码,因为它可以高效地压缩大量文件。 ...
1. **配置**:使用JSCam提供的XML配置文件(通常为jscam-config.xml),设置摄像头参数,如分辨率、帧率等。这些参数会直接影响生成的SWF文件的性能和质量。 2. **编译**:将配置文件与JSCam源代码一起编译成SWF。...
在Spring Flex 1.5.0.M2中,核心组件`spring-flex-1.5.0.M2.jar`扮演了关键角色,它是Spring和Flex集成的核心库,提供了诸如消息代理、配置支持和Spring服务代理等功能。这个库使得Flex客户端可以轻松地调用Spring...
openwrt xz-5.2.1.tar.bz2+xz-5.2.1.tar.bz2
flex-messaging-core-4.7.3.jar 最新版,下载了好长时间才下载下来,亲测可用!
`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版本的源码压缩包,适用于Unix/Linux类操作系统。在Linux环境中,我们通常会用tar命令来解压这种格式的文件,例如:“tar -zxvf flex-2.6.0.tar.gz”。 Flex的...
离线安装包,亲测可用
在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
flex-messaging-proxy.jarflex-messaging-proxy.jarflex-messaging-proxy.jarflex-messaging-proxy.jar
flex-messaging-opt.jarflex-messaging-opt.jarflex-messaging-opt.jarflex-messaging-opt.jar
flex-2.6.4
在Flex 4.5中,AIR(Adobe Integrated Runtime)应用程序的配置文件`app.xml`是整个应用的核心组成部分,它定义了应用的元数据、界面属性、资源文件、权限需求等关键信息。这个XML文件的结构和属性直接影响着AIR应用...
flex-messaging-common.jar