Adobe Air & Adobe Flex & ActionScript & Mobile Dev & HTML5 & RIA & User Experience
Adobe 的又一部Actionscript3 Social API - Actionscript3 Client Library for Facebook Platform API The new ActionScript 3.0 Client Library for Facebook Platform API, fully supported by Facebook and Adobe, makes it easy to build applications that combine the strengths of the Flash Platform and Facebook Platform. This library, a joint effort between Adobe and Facebook, allows developers to [...]
今天早上剛剛打開Tour de Flex,就發現Tour de Flex有更新啦!更新后的版本為1.2。 而且發現官方還添加了Web版本的Tour de Flex,Web版本上面不含有Air程序制作的例子。Web版本的地址為http://www.adobe.com/devnet/flex/tourdeflex/web/ 目前得到的消息是 新版本將要由Adobe Air Version 1.5以上支持。 Skin發生了一些改變。 一開始的Logo歡迎界面將會變成Help中Quick Start中類似的樣子,并在右上角增加了一個QuickStart按鈕。 有了最新的日文版本,將來會添加其他語言的版本,包括繁體和簡體。 在內容增加的基礎上,整個安裝文件將減小,得意于RSL … XD。 左邊的菜單將有些改變,原來Tree的形式包含一個下拉菜單,最新版本已經把下拉菜單移除。 目前評論與Adobe論壇同步。 對Eclipse的兼容性將繼續優化提高。 Tour de Flex is a desktop application for exploring Flex capabilities and resources, including the core Flex components, Adobe AIR, data integration, and a variety of third-party components, effects, skins, and more. Tour [...]
Flash security tools意在幫助Flash Developer查找自身開發的Flash在網絡應用方面的安全性漏洞 。 上個月,IBM 發布了一款針對 Ajax-based Application 和 Flash/Flex Application 等的安全性掃描軟件 AppScan 。昨天,HP 也發布了一款針對 Flash/Flex Application 的安全性掃描軟件 SWFScan 。 IBM Rational AppScan Standard Edition AppScan tests for common Web application vulnerabilities including Cross-Site Scripting, Buffer Overflow, and new flash/flex application and Web 2.0 exposure scans. HP SWFScan A free tool developed by HP Web Security [...]
ActionScript 3 TIFF Encoder By Kevin Hoyt. More in ActionScript 3 TIFF Encoder in his blog. JPGEncoder & PNGEncoder in as3corelib.
現在使用html標簽越來越頻繁,但是對Database的負擔也會隨之增加。 那么我們能不能自定義rules呢? 下面舉個簡單的例子 比如一個 link(<a target=”_blank” href=”http://www.yahoo.com.tw”><u>奇摩</u></a>) 我們將會把它變成 [http://www.yahoo.com.tw||奇摩] 然后再在Database進行存儲。相比而言,63個字符轉化29個字符,2:1的比例。考慮到其他的html標簽,我們至少能省掉數據庫一半的空間比例。 有些人說,這樣的做法不是加重了服務器的處理么?不不不,現在RIA普遍程度越來越大,很多以前放在后端的處理,都會直接放在前端進行處理。畢竟Server端只有一個,而Client端可以無窮。因此,我們只是在Client端做文章。 在向服務器存儲時,在Client端做standard_html到rule_html的處理。 在從服務器讀取時,在Client端做rule_html到standard_html的顯示。 下面貼出Client端做rule_html到standard_html的顯示Code: private static var headStr:String = "["; private static var footStr:String = "]"; private static var centerStr:String = "||"; /** * Replace Html Link * @param Link Format * @return htmlStr * @author Alvin */ public static function replaceHtmlLink(htmlStr:String):String{ if(htmlStr == [...]