<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>bonashen &#187; Flex</title>
	<atom:link href="http://www.bonashen.com/archives/tag/flex/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bonashen.com</link>
	<description>关注造船行业信息化</description>
	<lastBuildDate>Thu, 20 Oct 2011 14:05:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>FWD: Creating an Executable Apache Pivot App using Maven</title>
		<link>http://www.bonashen.com/archives/1023</link>
		<comments>http://www.bonashen.com/archives/1023#comments</comments>
		<pubDate>Sun, 29 May 2011 10:32:28 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[Apache Pivot]]></category>
		<category><![CDATA[RIA专题]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.bonashen.com/?p=1023</guid>
		<description><![CDATA[old archive url :http://michaelbushe.wordpress.com/2009/12/22/creating-an-executable-apache-pivot-app-using-maven/ Apache Pivot is a very interesting new RIA platform.  You can think of it as a competitor to flex, Silverlight, and JavaFX.  Unlike all three of those languages, it uses Java and XML – two generally &#8230; <a href="http://www.bonashen.com/archives/1023">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/1023/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>如何获取Flex对象实例的Class</title>
		<link>http://www.bonashen.com/archives/342</link>
		<comments>http://www.bonashen.com/archives/342#comments</comments>
		<pubDate>Sat, 08 May 2010 13:22:38 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[技巧]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=342</guid>
		<description><![CDATA[flex应用中有时会反向映射运行中的对象实例的类，比如有一个方法传递的参数为Object，但在方法中要判断该对象是否为要处理的类，有些采用instanceof关键字，还可以采用类型比较的方法： dynamic class A {} trace(A.prototype.constructor); // class A trace(A.prototype.constructor == A); // true var myA:A = new A(); trace(myA.constructor == A); // true &#169;2012 bonashen. All Rights Reserved..下面文章或许你还感兴趣 Tags: Flex, 技巧]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/342/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT3.5正式版已经发布</title>
		<link>http://www.bonashen.com/archives/313</link>
		<comments>http://www.bonashen.com/archives/313#comments</comments>
		<pubDate>Tue, 26 Jan 2010 21:18:10 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[fdt]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=313</guid>
		<description><![CDATA[今天下午还在用MyEclipse8中安装FDT 3.5 Beta2，晚上回家再重新安装时，发现FDT3.5已经releases. &#160; With version 3.5 of FDT we are introducing great new features for both MXML and ActionScript editor. While we are focused on bringing you the best MXML editor for flex development at this time, we are &#8230; <a href="http://www.bonashen.com/archives/313">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/313/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Robotlegs IOC 接口实例化</title>
		<link>http://www.bonashen.com/archives/312</link>
		<comments>http://www.bonashen.com/archives/312#comments</comments>
		<pubDate>Thu, 21 Jan 2010 20:59:10 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[ioc]]></category>
		<category><![CDATA[robotlegs]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=312</guid>
		<description><![CDATA[目前在开发程序时要实例化某一接口，而不知道接口是哪一个类实现，如果用Robotlegs来做是很好的。 我尝试用 injector.instantiate(IRobot); 但是程序始终报错，后来才发现接口是不能直接用instantiate方法来做。如果要用Injector来做，可以采用如下方法： injector.getMapping(IRobot).getResponse() as IRobot; 平时一般向类中注入接口代码如下： AS CODE： public&#160;class&#160;Robot&#160;implements&#160;IRobot&#160;{&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;private&#160;var&#160;_leftLeg&#160;:&#160;ILeg;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;private&#160;var&#160;_rightLeg&#160;:&#160;ILeg;&#160;&#160; &#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;public&#160;function&#160;get&#160;leftLeg()&#160;:&#160;ILeg&#160;{&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;return&#160;_leftLeg;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[Inject(name=&#34;leftLeg&#34;)]&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;public&#160;function&#160;set&#160;leftLeg(leg&#160;:&#160;ILeg)&#160;:&#160;void&#160;{&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;_leftLeg&#160;=&#160;leg;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;public&#160;function&#160;get&#160;rightLeg()&#160;:&#160;ILeg&#160;{&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;return&#160;_rightLeg;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;[Inject(name=&#34;rightLeg&#34;)]&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;public&#160;function&#160;set&#160;rightLeg(leg&#160;:&#160;ILeg)&#160;:&#160;void&#160;{&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;_rightLeg&#160;=&#160;leg;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}&#160;&#160; &#160;&#160;&#160;&#160;}&#160;&#160; 上面代码中ILeg就是在Robot类实例化时注入，将会由Injector类自动调用injector.getMapping(ILeg).getResponse() as ILeg; 另外还有一个收获，如下代码，先映射Robot,IRobot为单例： AS CODE: private&#160;function&#160;init(e:Event):void{&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;injector&#160;=&#160;new&#160;Injector();&#160;&#160; &#8230; <a href="http://www.bonashen.com/archives/312">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/312/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xViewer for flex</title>
		<link>http://www.bonashen.com/archives/311</link>
		<comments>http://www.bonashen.com/archives/311#comments</comments>
		<pubDate>Sat, 16 Jan 2010 13:43:51 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[xviewer]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=311</guid>
		<description><![CDATA[xViewer uses .jrpxml format for rendering JasperReports. If you do not want to use JasperServer you can disable it and view .jrpxmls received from somewh&#101;re. Also, you can use classic Viewer&#8217;s toolbar. Localization is supported Download samples &#169;2012 bonashen. All &#8230; <a href="http://www.bonashen.com/archives/311">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/311/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>收藏-Flex Builder 3 on Eclipse 3.5</title>
		<link>http://www.bonashen.com/archives/306</link>
		<comments>http://www.bonashen.com/archives/306#comments</comments>
		<pubDate>Wed, 06 Jan 2010 23:16:21 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=306</guid>
		<description><![CDATA[当我在机器上安装了flexbuilder3和STS(SpringSource Tool Suite )2.3后，将flexbuilder以插件的方式加入到STS，编译源文件和样式文件会出现编译出错，一开始是以为是上次编译产生的垃圾文件产生的问 题，采用项目文件清除后再编译，问题还是在。 ConfigurationProblem logging info java.lang.IllegalArgumentException: &#34;The attribute value type is com.adobe.flexbuilder.project.compiler.internal.ProblemManager and expected is one of java.lang.String, Boolean, Integer&#34; at o&#114;g.eclipse.core.internal.resources.MarkerInfo.checkValidAttribute(MarkerInfo.java:84) at o&#114;g.eclipse.core.internal.resources.MarkerInfo.setAttributes(MarkerInfo.java:172) at o&#114;g.eclipse.core.internal.resources.Marker.setAttributes(Marker.java:304) at com.adobe.flexbuilder.project.compiler.internal.ProblemManager.cr&#101;ateMarker(Unknown Source) at com.adobe.flexbuilder.project.compiler.internal.ProblemManager.cr&#101;ateMarker(Unknown Source) at com.adobe.flexbuilder.project.compiler.internal.ProblemManager.logProblem(Unknown Source) at com.adobe.flexbuilder.project.compiler.internal.ProblemManager.logInternalProblem(Unknown &#8230; <a href="http://www.bonashen.com/archives/306">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/306/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex 3 Style Explorer</title>
		<link>http://www.bonashen.com/archives/305</link>
		<comments>http://www.bonashen.com/archives/305#comments</comments>
		<pubDate>Thu, 31 Dec 2009 09:20:42 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=305</guid>
		<description><![CDATA[我们在开发flex和air应用时，时刻需要对容器、组件等显示样式进行定义，以达到美观的目的 ，flex bulider自己本身也支持 所见即所得的开发方式，但是支持力度不够。对容器、组件的样式定义，我们常用的就是Flex3 Style Explorer。 嵌入不太理想，直接点击 这里查看. &#160; &#169;2012 bonashen. All Rights Reserved..下面文章或许你还感兴趣Today on history:2008:&#160;&#160;基于项目管理的造船企业的计划管理(1)2008:&#160;&#160;记录-中柏京鲁600T龙门吊倒塌(1) Tags: Flex]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/305/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flexmojos Using ASDoc</title>
		<link>http://www.bonashen.com/archives/302</link>
		<comments>http://www.bonashen.com/archives/302#comments</comments>
		<pubDate>Sat, 26 Dec 2009 21:27:43 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[asdoc]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[flexmojos]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=302</guid>
		<description><![CDATA[在flexmojos插件中，如何为Maven flexmojos构建的Flex项目自动生成帮助文档？ 可以有如下两种办法： 1.通过命令来生成，在构建的项目根目录中执行如下命令： $ mvn org.sonatype.flexmojos:flexmojos-maven-plugin:asdoc 会在target/asdoc目录中生成HTML文件。 2.在项目pom.xml文件中进行配置，加入如下配置： XML/HTML代码 &#60;build&#62; &#60;plugins&#62; &#60;plugin&#62; &#60;groupid&#62;org.sonatype.flexmojos&#60;/groupid&#62; &#60;artifactid&#62;flexmojos-maven-plugin&#60;/artifactid&#62; &#60;executions&#62; &#60;execution&#62; &#60;phase&#62;install&#60;/phase&#62; &#60;goals&#62; &#60;goal&#62;asdoc&#60;/goal&#62; &#60;/goals&#62; &#60;/execution&#62; &#60;/executions&#62; &#60;/plugin&#62; &#60;/plugins&#62; &#60;/build&#62; 当执行$mvn compile等命令时就会自动产生文档。 http://www.bonashen.com/attachments/month_0912/q20091226212711.JPG &#169;2012 bonashen. All Rights Reserved..下面文章或许你还感兴趣 Tags: asdoc, Flex, flexmojos, maven]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/302/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>收藏Flexmojos Adding libraries to compilation</title>
		<link>http://www.bonashen.com/archives/301</link>
		<comments>http://www.bonashen.com/archives/301#comments</comments>
		<pubDate>Sat, 26 Dec 2009 14:57:28 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=301</guid>
		<description><![CDATA[When developing with flex, it is very common to need 3rd party libraries to build more elaborate applications. For example: if an application uses charts, the project will require datavisualization.swc.&#160; If an application needs an SHA1 algorithm, it will require &#8230; <a href="http://www.bonashen.com/archives/301">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/301/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flexmojos 创建flex项目常用构建命令</title>
		<link>http://www.bonashen.com/archives/300</link>
		<comments>http://www.bonashen.com/archives/300#comments</comments>
		<pubDate>Sat, 26 Dec 2009 09:10:26 +0000</pubDate>
		<dc:creator>bona</dc:creator>
				<category><![CDATA[FLEX专题]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[flexmojos]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://192.168.30.35/wordpress/?p=300</guid>
		<description><![CDATA[flexmojos has its own archetypes for flex application, so here they are: Cr&#101;ate library: $ mvn archetype:generate -DarchetypeRepository=http://repository.sonatype.org/content/groups/flexgroup -DarchetypeGroupId=org.sonatype.flexmojos -DarchetypeArtifactId=flexmojos-archetypes-library -DarchetypeVersion=[flexmojos targeted version] Cr&#101;ate application: $ mvn archetype:generate -DarchetypeRepository=http://repository.sonatype.com/content/groups/flexgroup -DarchetypeGroupId=org.sonatype.flexmojos -DarchetypeArtifactId=flexmojos-archetypes-application -DarchetypeVersion=[flexmojos targeted version] Cr&#101;ate modular application: $ mvn archetype:generate &#8230; <a href="http://www.bonashen.com/archives/300">继续阅读 <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://www.bonashen.com/archives/300/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

