Archive for category Uncategorized
[Flex] Printing 問題
Flex 的 printing 方面,差不多完全不能使用。
所以文中所講的 very challenging 是完全無錯的,因此,解決方法就有兩個。
1). Export as PDF.
2). Export as Image.
最好的方法,當然是export to PDF。 pdf 的printing support 是十分好的,flex 都有不少的library 可以利用. 其中,chowky 所用過的是alivepdf.
不過想簡單一點的話,就不如export as PNG 就好了,flex 很容易就可以把一個container 變做image. 你們所利用到的class 應該是 PNGEncoder. 只要想google 找一找就不難找到呢~
Source: http://www.insideria.com/2009/07/printing-with-flex.html
[Flash] Fullscreen Mode
Posted by Chowky in Flash, RIA, Uncategorized on January 7, 2010
自從flash player 9.0.28 之後,flash 就支援fullscreen~,就已經不用以前的額外javascript。
只要在flash IDE 的publish 加上allowfullscreen,IDE 就會自動加上這個attribute
當然你亦可以在swfobject 自己加上
<param name="allowFullScreen" value="true" />1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | //Don't scale the movie when the stage size changes Stage.scaleMode="noScale"; //Align the stage to the top left Stage.align = "TL"; //Function to toggle between fullscreen and normal size //the toggle fullscreen button calls this function when pressed function toggleFullScreen(){ //if normal size, go to fullscreen, else go to normal size if(Stage["displayState"]=="normal"){ Stage["displayState"]="fullScreen"; }else{ Stage["displayState"]="normal"; } } //Create a listener for each time the Stage is resized var resizeListener:Object = new Object(); //Called each time the stage is resized resizeListener.onResize = function () { //Move the button to the center of the screen toggleFullScreenButton._x=Stage.width/2; toggleFullScreenButton._y=Stage.height/2; } //Add the listener to Stage Stage.addListener(resizeListener); |
Source: http://www.bezzmedia.com/swfspot/tutorials/flash8/True_Fullscreen_Flash_Mode
Photoshop.com mobile app for Android 經已推出
Posted by Chowky in Uncategorized on November 25, 2009
先前chowky都有介紹過iphone 版的
這麼快就推出 android 版,andorid 和iphone 的版本的功能差不多,都是有一些簡單的執相效果。最後就是分享所影的相。
Google Chrome OS Screenshot
Posted by Chowky in Uncategorized on November 24, 2009
google chrome os ,大家可以先看看簡介~
chowky 覺得應該是可能的,不過還是觀望吧。簡介有點過火,causal use 就有可能,真正的使用就無可能,沒有internet 就不用computer!?@@” (雖然有好多時候都是問google)



視窗 7今開售 蘋果 4寶突襲
Posted by Chowky in Uncategorized on October 25, 2009

升級版的 iMac,是用鋁和玻璃打造,而且螢幕面積加大。
電腦軟件巨擘微軟( Microsoft),事先張揚今天(周四)隆重推出視窗 7( Windows 7)操作系統,勢要挽回推出 Vista失敗之作的面子。微軟要力證沒有中年危機之際,蘋果公司( Apple)「潮壇」前天玩突襲,失驚無神宣佈推出新 iMac、新 MacBook、新 Mac mini,還有革命性觸控式的「魔術滑鼠」,搶去微軟風頭。微軟、蘋果的明爭暗鬥,一刻都停不了。
鋁加玻璃輕薄 iMac機
iMac外形向來酷,新一代 iMac更酷。鋁加玻璃的外殼設計,冷感十足,配以 16:9LED全螢幕,有 21.5吋和 27吋芒供選擇,比現有型號的 20吋和 24吋更大更闊,看圖像更清晰。鋁加玻璃的機身更薄,更環保,安裝了 Mac最新作業系統 Snow Leopard,可插入 SD卡。
新 iMac的中央處理器( CPU)運算速度加快,除了 27吋芒,所有芒型號都內置 Intel Core 2 Duo晶片,最慢都有 3.06GHz,售價 1,199美元( 9,352港元)至 1,999美元( 15,592港元)。


多點觸控「魔術滑鼠」
[Mac] Magic Mouse
Posted by Chowky in Uncategorized on October 22, 2009
Magic Mouse 是全球第一隻multitouch 的mouse product. (哈,m$ 的lab…太慢了)
不過可惜的只是SUPPORT MAC 機ONLY….雖然chowky 都好想買….但是….window 始終是常用的…..所以….$500 多元的mouse只可以用在mac 身上。雖然十分好看呢~(struggle 中)
現在買imac 會送 wireless keyboard and Magic Mouse. (mouse 都立即upgrade?)
[Flex] Flexmania
Posted by Chowky in Uncategorized on July 4, 2009
FlexMania is a Brazilian online event organized by Igor Costa. The event is focused on the Flash Platform and has a great collection of Flash/Flex/AIR related talks.
巴西是第一次舉辦的。
What it proves? Flash Platform is being adopted by different locations.
Source: http://weblog.mrinalwadhwa.com/2009/07/04/flexmania/
Flex 4 + Flash Catalyst Sample Application By Cynergy
Posted by Chowky in Uncategorized on June 13, 2009

Cynergy 出了一個利用了flex 4 + flash catalyst 造的一個web app. Cynergy 提到只是用了二人在兩星期完成。
LookFirst can do in just a matter of a few weeks. Yes, the entire solution was built by a team of two in just two weeks
chowky 覺得應該可以再快一點,應該是design 方面花了太多時間。功能上應該不會用太多時間








Recent Comments