Thursday, June 26, 2008

Wednesday, June 25, 2008

weakly referenced

http://www.gskinner.com/blog/archives/2006/07/as3_weakly_refe.html

Grant Skinner:"I would very strongly recommend getting in the habit of ALWAYS setting your listeners to be weakly referenced"

PS:經過Hongyi大大的開釋,在urlLoader中,用weak reference是會聽不到的
所以注意在UrlLoader中不要用

Tuesday, June 24, 2008

Some Sites

http://tha.jp/
一些中村勇吾的作品

Monday, June 23, 2008

一些3D效果的介紹

http://blog.zupko.info/

趕快阿~弄一個上次那個動物園來玩玩阿

Sunday, June 22, 2008

Flash Motion Portrait

http://windywoods.blogbus.com/logs/22073427.html

viewStack的 creationPolicy

http://www.nshen.net/blog/article.asp?id=582
ViewStack 在默认情况下,所有子对象只有在第一次显示的时候才被实例化
加一个 creationPolicy="all" ,就可以让ViewStack建立的时候把所有子对象都实例化

adobe CS 的宣傳網站

http://adobecards.com/

Thursday, June 19, 2008

M群

http://group.xiaoi.com/


M群, 大陸某公司和MSN合做開發的功能, 透過一個特定的聯絡人, 將訊息轉送給其它成員, 所以你只需在MSN中加入一個聯絡人, 就可以跟其它成員作溝通, 不用另外安裝其它軟體, 很方便

介紹:
http://tw.myblog.yahoo.com/dio-blog/article?mid=71&prev=88&next=63

Sunday, June 15, 2008

Flash and AIR Debugger

http://arthropod.stopp.se/

還沒try 特點可以對特定訊息指訂色彩
用法如下...

How to use

Import the class
import com.carlcalderon.arthropod.Debug;

Do a "log" trace by typing
Debug.log("My log message");

Start Arthropod.

Publish your Flash site / AIR application and you will see the message "My log message" in Arthropods output field!


You may also add colors to your messages to keep it more structured by adding a color value as a second argument:
Debug.log("My log message",0x00FF00);

App Engine(python) 與flex溝通

再請那個苦主研究一下吧
http://gaeswf.appspot.com/
http://pyamf.org/
http://chuiwenchiu.spaces.live.com/blog/cns!CA5D9227DF9E78E8!2056.entry

資料來源
http://rd.lanma.org/2008/06/python-on-google-app-engine.html

Firefox Mobile Concept

http://www.vimeo.com/1152218?pg=embed&sec=1152218
主要在ui互動部份的concpet (有限空間表達資訊)
兵家必爭之地

Thursday, June 12, 2008

週五看點設計跟ideas

從這開始發想...很棒的手繪動畫
http://leogogo.blogspot.com/2008/06/blog-post_3906.html

異曲同工之妙的網站:
Microsoft Office for mac的宣傳網站
http://www.simplifyyourwork2008.com/
介紹media server for HP
http://www.hp.com/united-states/psg/mediasmart/2007/index.html (MAX之前提供)
介紹nikon相機 整合產品跟手繪動畫 整個很流暢
http://imaging.nikon.com/products/imaging/technology/a_design/index.htm
很舒服的網站 讓你駕馭線條
http://www.rhythmoflines.co.uk/
日本的公司
http://con.tonc.biz/japanese/


加油吧~希望那天可以抓到類似的感覺....

Yahoo! BrowserPlus

http://browserplus.yahoo.com/demos/?s=photodrop
第一個 sample, Flash Player 10 也可以做.
Yahoo 把我想做的做出來了....

Wednesday, June 11, 2008

Free Flash CS3 component

http://www.bytearray.org/?p=137

JSON與flex

利用json交換資料
在flex中的流程
1. 取得json api 網址 
ex. http://api.flickr.com/services/feeds/photos_public.gne?format=json&tags=flower&nojsoncallback=1

2.  Load方法 用HTTPService或URLRequest取得網頁reponse即可

3. 下載裡面的lib and放入flex project中(com資料夾)
http://code.google.com/p/as3corelib/
import com.adobe.serialization.json.JSON;

4. 利用decode將回來string轉為object
var JsonObj:Object = (JSON.decode(rawData) as Object);

PS. 1. 最外層 " { "前不要有值 不然parse會過不了 如flickr的api可以加 "&nojsoncallback=1"
      2. 另可轉array或xml不過此版本有問題轉不過去

5. 以平常取obj的方式存取值
    ex: JsonObj.items[0].title
     (items跟title都是回來的json data)

Tuesday, June 10, 2008

向量式擬3d(有sdk可以抓)

很順and很強

http://five3d.mathieu-badimon.com/
http://lab.mathieu-badimon.com/

Video Browse Reference

http://www.videovistas.com/index2.html
http://www.videovistas.com/screenshot.html

Some concept to learn

JSON serialization

In case you don't know, here is AS3 corelib:
http://code.google.com/p/as3corelib/
It consists of several basic utilities for MD5 hashing, JSON serialization, advanced string and date parsing, and more.

More:
http://labs.adobe.com/wiki/index.php/ActionScript_3:resources:apis:libraries

The wrong solution is to enable background processes

常常遇到這件事嗎?
這是從 dCAT 的 blog 剪下來的, 整串是:

“The wrong solution is to enable background processes… to allow an app to continue to run even after their user thinks they quit it.” Windows Mobile, we’re looking at you.

Why’s it bad? “First, battery life, it drains power. Second, performance, it sucks up cycles and makes other things feel sluggish.”

應該不只 mobile application 適用吧..

oool 3d website

http://ecodazoo.com/

Monday, June 9, 2008

幾個視覺化的搜尋

分類然後像itune一樣選單
http://www.viewzi.com/

一樣類似itune上面還有小圖示幫忙分類
http://beta.searchme.com/


http://addictomatic.com/
EXAMPLE
http://addictomatic.com/topic/plurk

Sunday, June 8, 2008

Flex using_code_behind

update 一下
因為2個類似的module要用到大部分相同的as
但是外觀上差異很大
又不想把as copy paste,..
發現這個方法似乎可以解決我的問題

要注意一些把mxml的as搬到 class的問題
1.有用到的mxml component 要宣告為public
2.mxml有時會直接寫Click="handler()"
但在as class裡面event listener 一定要接收event,例如handleer(e:Event)
3.dataProvider 除非另外宣告一個getter setter 去設bind,
否則每次資料更新時要再設定一次
例如
getDataOK():void{
grid.dataProvider=a
}






參考看看
這樣的寫法可以把as 跟mxml抽離
as檔就可以被asDoc complie

http://www.adobe.com/devnet/flex/quickstart/building_components_using_code_behind/

資訊視覺化呈現site - Part1

Joe 給的
http://www.taggalaxy.de/

http://labs.digg.com/
推這兩個
http://labs.digg.com/stack/ (把stack表達很清楚)
http://labs.digg.com/swarm/ (Network Kind)

yahoo!長大了~懂得弄些東西了
http://tw.buzz.yahoo.com/live_key.html

Friday, June 6, 2008

Loading Imge 產生器

http://www.ajaxload.info/
種類多
可設定顏色
請自行轉swf供flex、flash用