2010年10月31日 星期日
2010年10月30日 星期六
2010年10月29日 星期五
FXG
Flash XML Graphics (FXG) 格式
●以 FXG 格式儲存 <---Adobe Illustrator CS4說明
●Adobe CS4與Flex上的FXG圖形整合夢想 ←Anistar RIA Blog
●Illustrator CS4之fxg文件格式(MXML) Vs WPF之XAML <---大可山博客
●Illustrator 物件與屬性的 FXG 對映 <---Adobe Illustrator CS4說明
●以 FXG 格式儲存 <---Adobe Illustrator CS4說明
●Adobe CS4與Flex上的FXG圖形整合夢想 ←Anistar RIA Blog
●Illustrator CS4之fxg文件格式(MXML) Vs WPF之XAML <---大可山博客
●Illustrator 物件與屬性的 FXG 對映 <---Adobe Illustrator CS4說明
2010年10月26日 星期二
[AS3] 在目標影格,動態增加AS3語法_MovieClip的addFrameScript()方法
● 這是AS 3.0 未公開的函式之一。
●在目標影格,動態增加AS3語法※MovieClip.addFrameScript(目標影格, 函式名稱)
→於主要swf(A),載入外部swf(B),於A動態對B指定影格加入AS3 script。
→目標影格參數為0時,代表第1影格;為9時,代表第10影格。
MovieClip.addFrameScript(frame:uint,notify:Function)
●停止呼叫函式
addFrameScript(frame:uint,notify:Function,false,false);
●在目標影格,動態增加AS3語法※MovieClip.addFrameScript(目標影格, 函式名稱)
→於主要swf(A),載入外部swf(B),於A動態對B指定影格加入AS3 script。
→目標影格參數為0時,代表第1影格;為9時,代表第10影格。
MovieClip.addFrameScript(frame:uint,notify:Function)
MovieClip.addFrameScript(9, goFun); //目標影格參數為0時,代表第1影格;為9時,代表第10影格。 //此處即在第10影格動態增加goFun函式。 function goFun(){ MovieClip.gotoAndPlay(1); }
●停止呼叫函式
addFrameScript(frame:uint,notify:Function,false,false);
2010年10月25日 星期一
[AS3]偵聽者函式將偵聽廣播者所發出的事件
addEventListener ( type:String,
listener:Function,
useCapture:Boolean = false,
priority:int = 0,
useWeakReference:Boolean = false):void
2010年10月22日 星期五
2010年10月21日 星期四
[AS3] Event類別_e.target、e.currentTarget
e.target 和 e.currentTarget的差異:
e:事件物件。在事件處理函式端,接收事件發生時由觸發事件的實體所傳遞而來的資訊。此資訊以參數的形式,傳送到接收事件的函式。
e.target:觸發事件的實體參照。(target 屬性會儲存事件目標的參考。) (事件目標。)
e.currentTarget:擷取事件的實體參照,此實體參照即為事件的廣播者。(currentTarget 屬性會儲存目前正在處理事件物件之顯示清單物件的參考。) (正主動使用事件偵聽程式處理 Event 物件的物件。)
SWF預覽
第一影格AS3
FLA下載
e:事件物件。在事件處理函式端,接收事件發生時由觸發事件的實體所傳遞而來的資訊。此資訊以參數的形式,傳送到接收事件的函式。
e.target:觸發事件的實體參照。(target 屬性會儲存事件目標的參考。) (事件目標。)
e.currentTarget:擷取事件的實體參照,此實體參照即為事件的廣播者。(currentTarget 屬性會儲存目前正在處理事件物件之顯示清單物件的參考。) (正主動使用事件偵聽程式處理 Event 物件的物件。)
SWF預覽
第一影格AS3
import flash.events.Event; main_mc.addEventListener(MouseEvent.CLICK, eventFun); function eventFun(e:Event):void{ var sensor1 = e.target.name; var sensor2 = e.currentTarget.name; trace(sensor1+" "+sensor2); info1_txt.text = "target=>"+sensor1; info2_txt.text = "currentTarget=>"+sensor2; }
FLA下載
2010年10月18日 星期一
[AS3]全螢幕切換_stage.displayState屬性
stage.displayState = "fullScreen"; // 觸發全螢幕
----------------------------------------------
stage.displayState = "normal"; // 回歸正常
原始檔案包括:991015_stage.displayState_1.fla → [Ctrl+Enter測試影片] 狀態下,無法執行切換至全螢幕。
ChangeScreen.as
匯出檔案:
991015_stage.displayState_1.swf
991015_stage.displayState_1.html
發佈設定:SWF嵌入HTML於瀏覽器中執行切換全螢幕,必須在發佈設定的HTML頁籤,將[範本]下拉選單設為[僅限Flash ─ 允許全螢幕] 後匯出。即需在HTML中將 [
param
或 embed
HTML 標籤的 allowFullScreen
特質設定為 true ]。
●991015_stage.displayState_1.fla → 根時間軸上佈署一個切換按鈕,實體名稱change_btn。點擊此按鈕,切換正常和全螢幕。
●ChangeScreen.as內容如下:
package { import flash.display.MovieClip; import flash.display.SimpleButton; import flash.events.MouseEvent; public class ChangeScreen extends MovieClip { public function ChangeScreen() { init(); } private function init():void { change_btn.buttonMode = true; change_btn.addEventListener(MouseEvent.CLICK,changeScreen,false,0,true); } private function changeScreen(evt:MouseEvent):void { stage.displayState = stage.displayState == "normal" ? ("fullScreen") : ("normal"); } } }
參考資料 :
http://help.adobe.com/zh_TW/Flash/CS5/AS3LR/flash/display/Stage.html#displayState
2010年10月13日 星期三
數位時代 Beta 3.0 - Google已進行自動駕駛車輛測試數月
數位時代 Beta 3.0 - Google已進行自動駕駛車輛測試數月
Smarter Than You Think - Google Cars Drive Themselves, in Traffic - NYTimes.com
Google Has A Secret Fleet Of Automated Toyota Priuses; 140,000 Miles Logged So Far.
Google Computer-Driven Prius on Vimeo
Google Car Drives Itself on Youtube
Smarter Than You Think - Google Cars Drive Themselves, in Traffic - NYTimes.com
Google Has A Secret Fleet Of Automated Toyota Priuses; 140,000 Miles Logged So Far.
Google Computer-Driven Prius on Vimeo
Google Car Drives Itself on Youtube
2010年10月11日 星期一
2010年10月5日 星期二
互動素描標記法 v0.1
【摘錄:BobChao the Blogger__互動素描標記法 v0.1】
互動素描標記法是新興的視覺溝通工具,能呈現介面狀態及各種事件的使用者動
作。透過幾個簡單、標準化的規則,使用者所看見的(以黑白圖樣繪製)及所做
的(以紅色繪製)都一併畫在同一素描圖上。這樣結合介面外觀及使用者動作的
方式,讓設計師描述互動狀態時更具說服力。
BobChao the Blogger__互動素描標記法 v0.1
PDF 版
Interactive Sketching Notation
Download the latest
互動素描標記法是新興的視覺溝通工具,能呈現介面狀態及各種事件的使用者動
作。透過幾個簡單、標準化的規則,使用者所看見的(以黑白圖樣繪製)及所做
的(以紅色繪製)都一併畫在同一素描圖上。這樣結合介面外觀及使用者動作的
方式,讓設計師描述互動狀態時更具說服力。
BobChao the Blogger__互動素描標記法 v0.1
PDF 版
Interactive Sketching Notation
Download the latest
2010年10月4日 星期一
2010年10月3日 星期日
WebP
Google「WebP」官方網站 ......Google Code-WebP
Google 發佈 WebP,號稱比 JPEG 更好的圖片壓縮格式… ......Gea-Suan Lin's BLOG
Sample image files in JPEG and WebP ......Google Code-WebP-Gallery
WebP, a new image format for the Web ......blog.chromium.org
Introducing Google’s WebP, A Faster Web Alternative To JPEG ......makeuseof.com
Google推出JPEG的替代品 - WebP ......不食不眠不呼吸
取代JPEG:Google正式發布圖片壓縮格式WebP ......和訊網-IT頻道
Google新「WebP」影像技術 讓圖檔更小! ......聯合新聞網-數位資訊
VP8 ......维基百科
萊娜圖 .....维基百科
Downloading and Installing WebP ......Google Code-WebP
Google 發佈 WebP,號稱比 JPEG 更好的圖片壓縮格式… ......Gea-Suan Lin's BLOG
Sample image files in JPEG and WebP ......Google Code-WebP-Gallery
WebP, a new image format for the Web ......blog.chromium.org
Introducing Google’s WebP, A Faster Web Alternative To JPEG ......makeuseof.com
Google推出JPEG的替代品 - WebP ......不食不眠不呼吸
取代JPEG:Google正式發布圖片壓縮格式WebP ......和訊網-IT頻道
Google新「WebP」影像技術 讓圖檔更小! ......聯合新聞網-數位資訊
VP8 ......维基百科
萊娜圖 .....维基百科
Downloading and Installing WebP ......Google Code-WebP
相似圖像搜尋引擎
Search For Similar Images Online Using Images Rather Than Keywords
●搜尋相似圖像─通常透過上傳電腦本機端圖檔,或貼入圖檔網址,啟動搜尋網路上相似圖像功能。
●搜尋相似圖像─通常透過上傳電腦本機端圖檔,或貼入圖檔網址,啟動搜尋網路上相似圖像功能。
●以顏色為搜尋參數,則機制功能各不相同。
訂閱:
文章 (Atom)