- 浏览: 467334 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (371)
- Java (44)
- Flex (25)
- Design Pattern / UML (5)
- JVM (14)
- Software Engineer (4)
- Testing (30)
- Web Backend (60)
- Linux (7)
- Database (11)
- SOA (28)
- English (6)
- FX (5)
- SAP Support (25)
- SAP Development (5)
- SAP Impl & Oprn (8)
- Articles (15)
- Music (4)
- Recipe (14)
- Multi-thread (4)
- Lucene (2)
- CS basic / Algorithm (12)
- Tour (3)
- C C++ (21)
- Others (10)
- Code Repository C++ (1)
- Code Repository Java (1)
- Code Repository Algorithm (1)
- Code Repository SQL (1)
- Web Frontend (4)
最新评论
-
xiangxm:
Java 强引用、 软引用、 弱引用、虚引用 -
nml-lyb:
123
Mule 的第一个例子 -
nml-lyb:
http://www.baidu.com
Mule 的第一个例子 -
white___ant:
...
Java 强引用、 软引用、 弱引用、虚引用 -
joeyon:
...
Java NIO介绍
package it.creativesource { import mx.resources.IResourceManager; import mx.resources.ResourceBundle; public class ResourceLanguage { public function ResourceLanguage() { } public static function setResources(resourceManager:IResourceManager):void{ var myResources:ResourceBundle=new ResourceBundle("en_US","myResources"); myResources.content['TITLE']="Adobe Flex - English Version"; myResources.content['CONTENT']="Adobe Flex is a collection of technologies " + "released by Adobe Systems for the development and deployment of cross " + "platform rich Internet applications based on the proprietary Adobe Flash " + "platform. The initial release in March 2004 by Macromedia included a software " + "development kit, an IDE, and a J2EE integration application known as Flex Data " + "Services. Since Adobe acquired Macromedia in 2005, subsequent releases of Flex " + "no longer require a license for Flex Data Services, which has become a separate " + "product rebranded as LiveCycle Data Services."; myResources.content['ICON']="assets/us.png"; resourceManager.addResourceBundle(myResources); myResources=new ResourceBundle("it_IT","myResources"); myResources.content['TITLE']="Adobe Flex - Versione Italiana"; myResources.content['CONTENT']="Adobe Flex è un insieme di tecnologie " + "rilasciato da Adobe Systems per lo sviluppo e la diffusione del" + " multi-piattaforma Rich Internet Applications basata sulla proprietà " + "di Adobe Flash piattaforma. The initial release in March 2004 by Macromedia " + "included a software development kit , an IDE , and a J2EE integration " + "application known as Flex Data Services . La release iniziale nel marzo " + "2004 da Macromedia incluso un kit di sviluppo software, un IDE, e un J2EE " + "integrazione domanda noto come Flex Data Services. Since Adobe acquired " + "Macromedia in 2005, subsequent releases of Flex no longer require a license " + "for Flex Data Services, which has become a separate product rebranded as " + "LiveCycle Data Services. Dato che Adobe ha acquisito Macromedia nel 2005, " + "le successive versioni di Flex non necessitano più di una licenza per Flex Data " + "Services, che è diventato un prodotto separato come rebranded LiveCycle Data Services."; myResources.content['ICON']="assets/it.png"; resourceManager.addResourceBundle(myResources); resourceManager.update(); } } }
<?xml version="1.0" encoding="utf-8"?> <mx:Application creationComplete="{init()}" xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" viewSourceURL="srcview/index.html"> <mx:Script> <![CDATA[ import it.creativesource.ResourceLanguage; private function init():void{ ResourceLanguage.setResources(resourceManager); } private function changeLocale(locale:String):void{ resourceManager.localeChain=[locale]; } ]]> </mx:Script> <mx:ApplicationControlBar width="400"> <mx:Image source="{resourceManager.getString('myResources','ICON')}" width="16" height="11"/> <mx:Label text="{resourceManager.getString('myResources','TITLE')}" width="100%"/> <mx:Button label="eng" click="changeLocale('en_US')" /> <mx:Button label="ita" click="changeLocale('it_IT')" /> </mx:ApplicationControlBar> <mx:Text text="{resourceManager.getString('myResources','CONTENT')}" width="400" height="240"/> </mx:Application>
发表评论
-
flex 3, flex4 连续调用 一个 httpservice时,只有第一次到达了server端
2014-04-08 01:16 384http://blog.sina.com.cn/s/blog ... -
Flex3 Panel挤压伸缩效果
2014-04-07 22:45 753http://www.cnblogs.com/dzone/a ... -
flex上传图片 server端servlet存储图片到本地
2014-04-07 04:33 735http://www.blogjava.net/you ... -
Flex项目部署到web server上。SWF文件 部署到服务器后,出现 安全沙箱问题
2013-07-04 09:21 1041参考下面的step 1,2,3 step1, m ... -
Flex 数据绑定易犯的错误:普遍的误用和错误
2013-07-02 02:21 1010http://www.cnblogs.com/kakafle ... -
html页面中嵌入flex生成的应用程序
2013-06-25 03:04 704http://blog.chinaunix.net/uid- ... -
Flex 对 文件 的操作
2013-06-12 03:59 556http://www.flashj.cn/wp/air-fi ... -
Flex的 array 和 arraycollection
2013-06-05 00:56 7211.array作为控件使用 FLEX3写法: ... -
Flex Java 类型 对应
2013-06-03 22:17 568http://www.examw.com/java/jich ... -
BlazeDS简介
2013-02-10 22:05 570http://www.cnblogs.com/xia520pi ... -
AS与JS相互通信(Flex中调用js函数)
2009-11-15 23:01 3048目前,有些基于html的网页 内嵌了swf。html与swf之 ... -
Flex 一个天气预报的例子
2009-10-16 23:07 1230http://bbs.airia.cn/FLEX/thread ... -
Flex 中嵌入 HTML 页面
2009-10-15 22:36 947http://www.flextheworld.com/fla ... -
Flex 资源
2009-08-02 22:13 1027flex技术博客,图表比较全 http://blog. ... -
Flex Date 例子
2009-07-29 23:32 2947例一 http://blog.minidx.com/2008 ... -
Flex 图 例子
2009-07-29 21:51 5806例一 最普通那种图 <?xml version ... -
Flex 播放 mp3
2009-07-09 17:06 1619以下是制作简单mp3播放器的核心代码。 <?xml v ... -
Flex Date日期类格式化
2009-07-09 16:27 8677<?xml version="1.0" ... -
Flex 正则表达式 字符串匹配 例子
2009-06-23 14:14 4685var pattern:RegExp = /\w*sh\ ... -
AutoComplete
2009-04-28 17:26 1099Quick tip: Avoid issues using A ...
相关推荐
Enterprise applications usually involve... Even if there is a fundamental change and the company installs a completely new application to handle a job, the data has to be migrated to the new application.
The 80x86 MOV Instruction 4.8 - Some Final Comments on the MOV Instructions <br>4.9 Laboratory Exercises 4.9.1 The UCR Standard Library for 80x86 Assembly Language Programmers 4.9.2 ...
标题和描述中提到的《Carbonomics-The future of energy in the age of climate change.pdf》文档,主要探讨了气候变化时代能源行业的未来走向,特别是通过技术革新和资本市场的压力重塑能源领域。文中强调了在发电...
Moreover, we discuss the control parameters which can change the behavior of the mapping, and also find that the maximum period can change with the control parameter. Furthermore, we analyze some ...
through a series of quick step-by-step tutorials, you'll learn the process of building, debugging, and deploying a complete Rich Internet Application with Flex 4. Each tutorial includes complete code...
FRM 2020 Current Issues指定阅读材料。"The Impact of Blockchain Technology on Finance: A Catalyst for Change,” International Center for Monetary and Banking Studies, 2018.
在`RadioButtonItemDataRender`类中,我们添加了一个事件监听器`this.addEventListener(Event.CHANGE, changeHandler)`,当RadioButton的选中状态改变时,`changeHandler`函数会被调用。在这个函数中,我们更新了...
"Change Language.rar"这个压缩包文件提供了一个关于C#中控件语言切换的示例,据描述,该示例已被测试并确认没有错误,是学习如何在C#应用程序中实现语言切换的良好参考资料。 首先,我们要理解在C#中进行语言切换...
As the computer industry changes from single-processor to multiprocessor architectures, this revolution requires a fundamental change in how programs are written. To leverage the performance and power...
or changes to classes and methods caused by the addition of generics (such as the collections utilities and the reflection classes)change permeates this entire fourth edition. <br>The Java ...
标题 "This will change the shape of a sample form to pre-selected" 提供的信息暗示,这是一个关于图形用户界面(GUI)设计的程序或代码示例,它能够改变一个样本表单的形状,使其符合预设的形状。这可能涉及到...
We found suitable direction-change features of the imaginary strokes in the pen-up state for on-line handwritten cursive character recognition. Our method simultaneously uses both directional features...
Because many readers are familiar with the layout of the first edition, we have tried to change it as little as possible. Here is a summary of the main changes: 1On the Web, this quote has been ...
Description The C# project started ... As the primary Microsoft representative on the ECMA committee that standardized C#, he led the implementation of the compiler and worked on the language design.
And yet, the best language models are often highly constrained and application-specific. Why is it that models trained in a specific field or domain of the language would perform better than ones ...
Viewer ActiveX SDK is a fully featured, ready to incorporate facsimile of the End User PDF-XChange Viewer, again embedded within a Window of the application, the developer is able to hide and disable ...
In this brand-new third edition of The C++ Programming Language, author Bjarne Stroustrup, the creator of C++, presents the full specification for the C++ language and standard library, a spec that ...