顯示具有 RIA 標籤的文章。 顯示所有文章
顯示具有 RIA 標籤的文章。 顯示所有文章

2010年4月22日 星期四

ActionScript: Tween Engine

TweenLite, TweenMax
http://www.greensock.com/

2010年3月10日 星期三

AIR Express Install Badge: AIR 線上安裝, 同時安裝 AIR runtime 及自行開發的程式

可以把 install button 放在 flash 裡,就無需請 user 先下載 AIR runtime 並安裝,較容易部署 AIR 程式。

應用例
http://www.adobe.com/products/digitaleditions/

設定方式
http://blog.csdn.net/xiang08/archive/2009/05/11/4168988.aspx
從安全性的角度來看
http://www.simplifiedchaos.com/2007/09/07/is-the-adobe-air-install-now-badge-on-web-pages-a-bad-idea/#comment-178

2010年3月2日 星期二

The easy Flash & AIR Debugger

簡易的 log class,類似 log4j
http://arthropod.stopp.se/index2.php/

2010年2月24日 星期三

Wine 小技法

想把 Flash Builder 4 for windows 裝在 Linux 下面 
How to install Flash Builder on Linux


其中提到了 winetricks
http://wiki.winehq.org/winetricks


這程式可以選擇要裝什麼 win32 元件,像是 vc runtime, .net runtime
$ wget http://www.kegel.com/wine/winetricks
$ sh winetricks
 

ZK Framework 相關

Data Binding
http://docs.zkoss.org/wiki/Data_binding#Associate_UI_Components_with_a_Collection

Using scrolling tabs on tabbox
http://www.zkoss.org/smalltalks/scrollingtabs/

ZK Calendars Doc
http://docs.zkoss.org/wiki/ZK_Calendars

ZK Layout
http://docs.zkoss.org/wiki/Layout_and_Windows


ZK 開發文件 (html, pdf)
http://docs.huihoo.com/zk/

• ZK中文開發手冊 3.5.1
• ZK Developer's Guide Version 3.0.4
• ZK Developer's Reference Version 3.0.4
• ZK Quick Start Guide Version 3.0.4
• ZK JSP Tags User Guide Version 1.2
• ZK Studio User Guide Version 0.5.2
• ZK Mobile for Android The Quick Start Guide Version 0.8.1
• ZK Mobile The Quick Start Guide Version 0.8.6

2010年1月21日 星期四

Flex : Windows Bitmap Format Encoder Decoder AS3 Flex 4 SDK

Flex 不能直接讀 BMP/TIFF,需要用非官方元件

http://code.google.com/p/windowsbitmapdencoder/

Flex 4 (Gumbo) Skinning with States and Animation

其中的 "Red Alert" 滿有趣的,剛好用得到
View the Project in Action
Explore the Source Code

全文出處:
http://www.adambergman.com/2009/06/28/flex-4-gumbo-skinning-with-states-and-animation/

Flex 4 (Flash Builder 4): 使用 state 及 transitions

與 Flex 3 有些不同,筆記一下~


http://www.artima.com/articles/flex_4_states.html

    <s:states>
        <s:State name="InitState"/>
        <s:State name="ReadyState"/>
    </s:states>   
   
    <s:transitions>
        <s:Transition fromState="*" toState="ReadyState">
            <s:Sequence duration="2500">
                <s:Parallel>
                    <mx:Blur target="{this.gios_image}" blurXFrom="10" blurXTo="0" blurYFrom="10" blurYTo="0"/>
                    <mx:Resize target="{this.gios_image}" widthFrom="1" heightFrom="1" widthTo="290" heightTo="297"/>
                    <mx:Fade target="{this.gios_image}" alphaFrom="1" alphaTo="0"/>
                </s:Parallel>
               
            </s:Sequence>
        </s:Transition>
    </s:transitions>

Adobe - Flash Player : Settings Manager - Global Security Settings Panel

http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html

2009年12月31日 星期四