Install Subversion for Eclipse Indigo3.7/Helios3.6/Galileo3.5 Eclipse安装Subversion插件

Categories: FlexJava; Tagged with: ; @ March 17th, 2012 16:02

Subversive installation instructions

http://www.eclipse.org/subversive/documentation/gettingStarted/aboutSubversive/install.php

Update sites:

Indigo 3.7

Update Site is a part of Indigo Update Site. Look at Help > Install New Software… > select Indigo – http://download.eclipse.org/releases/indigo > Collaboration Tools

Helios 3.6

Update Site is a part of Helios Update Site. Look at Help > Install New Software… > select Helios – http://download.eclipse.org/releases/helios > Collaboration Tools

Galileo 3.5

Try: http://download.eclipse.org/releases/galileo> Collaboration Tools

Or: http://subclipse.tigris.org/update_1.6.x

 

more info: http://www.eclipse.org/subversive/downloads.php

一点关于Flex的牢骚

Categories: Flex; Tagged with: ; @ March 9th, 2012 23:16

2月份Adobe有发布3个flash平台下的白皮书: http://www.adobe.com/devnet/flashplatform/whitepapers.html

image

之前有看到微博上转来转去的flash runtime白皮书. 我没有太多兴趣参与他们的讨论, 也只是今天才有空扫了两眼”Adobe’s view of Flex and its commitments to Flex in the future”

07年底开始接触使用Flex, 08年开始做项目, 掐指一算, 四五年过去了. 记得最开始看的一本书是打印出来的<< Programming Flex 2: The Comprehensive Guide to Creating Rich Internet Applications with Adobe Flex>> 光阴似箭, 由2及3, 直到如今的4.6;

上个月公司采购了一批FlashBuilder4.6的授权, 相比4.0, 4.6需要更高的配置, 无奈之下, 我们纷纷转回4.0.  其实从4.0开始, 我就一直不断的抱怨, 甚至有很多次对着电脑骂娘, 但是这都无济于事, 骂娘也得继续用它.

Flex的build效率也不敢恭维, 平日工作里, 我们需要暂定若干个一分钟来等待一个小module的编译.

大多时候, 我觉得Flex是个不错的框架, 不论对于企业级应用还是面向消费者的软件都是不错的选择. 虽然Flex有很多不足之处, 但并不能掩盖其在RIA领域的地位. Flex贡献给Apache后, 有很多人开始摇摆不定, 但我并不觉得HTML5能在企业应用领域盖得过Flex.

我对Flex的社区, 尤其是中文社区, 从来都没有丝毫的归属感.  太多的游戏, flash, 很少很少看到有人讨论企业级应用. 多数的活动都与我无关. 微博上的帖子也是flash, 3D, gaming. 似乎Flex正在远去, 大家更喜欢用flash这个词语. 很多猎头向我抱怨, 为什么懂Flex的人这么难找? 于此对应的是, 去年有一个国内AS大站的’运营’联系我, 要给我介绍一个Flex的工作: 公司是一家房地产公司. 可能是做3D效果.对于这样的机会, 我只能一笑而过.

春天正在北上, 我继续一笑而过.

Flex: 选用XML or Class表述数据?

Categories: Flex March 3rd, 2012 0:06

由于路线不同,可能某些flex项目会完全抛弃Class而仅使用xml描述数据。突然间, 没有了对象, 满眼所见的都是XML.

轻快吗? 流畅吗? 清晰易懂吗? 我抱着试试看的态度开始接纳不太熟悉的世界.

1. 完全没有代码提示, 代码基本靠手;

2. 不论怎么写, 在编译时都不会有问题, 漫长的编译之后发现细小的笔误才, 蛋疼的感觉滚滚而来.

3. 如果一个method接受一个XML的参数, 该如何写注释? 你不把xml范例写上, 别人知道你要干球??

4. 没有Class, 我要重写下toString()该怎么写? 我要写个只读method该写到哪?

5. 重构呢? search + 替换?

xml的易错性 + Flex编译耗时久…

Using XML filter in ActionScript – Flex中过滤XML

Categories: Flex; Tagged with: ; @ March 1st, 2012 22:44

我一直不喜欢在AS中频繁的操作XML, 但没办法, 最近所有的data都是来自于XML, 没有任何ValueObject, 清一色的XML.

把把都得翻书找手册 🙁  弱到爆

 

image

Trace到的结果:

image

ActionScript: conversion to Boolean

Categories: Flex; Tagged with: ; @ February 27th, 2012 19:46

The following table summarizes the results of casting to the Boolean data type from other data types:

Data type or value Result of conversion to Boolean
String false if the value is null or the empty string ( “” ); true otherwise.
null false
Number, int or uint false if the value is NaN or 0; true otherwise.
Object false if the instance is null ; true otherwise.

ref:http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7f87.html

Note: when you convert a string to boolean, remeber to trim the string first.

and this is a capture from <<Essential ActionScript 3.0>>:

image

Newer Posts <-> Older Posts



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.