2010年9月24日 星期五

GodFinger

Nike+ GPS



大廠拍的iphone app介紹還蠻有fu的。

FLASH 使用 UIScrollBar 組件

UIScrollBar 組件讓您能為文字欄位加上捲軸。您可以在編寫期間為文字欄位加上捲軸,或在執行階段使用 ActionScript 進行。若要使用 UIScrollBar 組件,請在「舞台」上建立文字欄位,並將 UIScrollBar 組件從「組件」面板拖曳到文字欄位範圍框的任何區域。
如果捲軸長度小於捲動箭頭的合併大小,則無法正確顯示捲軸。其中一個箭頭按鈕會變成隱藏在另一按鈕之後。Flash 不檢查這方面的錯誤。此時最好使用 ActionScript 隱藏捲軸。如果捲軸太小以致放不下捲軸方塊 (縮圖),Flash 會隱藏捲軸方塊。
UIScrollBar 組件的功能如同其它捲軸。兩端各有一個箭頭按鈕,其間又有捲動軌道和捲軸方塊 (縮圖)。此組件可附加到文字欄位的任一邊,以垂直或水平方向使用。
如需有關 TextField 的詳細資訊,請參閱 Adobe® Flash® Professional CS5 的 ActionScript® 3.0 參考中的 TextField 類別。

與 UIScrollBar 組件的使用者互動

UIScrollBar 不同於其它多數組件,此組件可接受連續的滑鼠輸入,例如使用者按住滑鼠按鈕而不需要重複點選。
UIScrollBar 組件與鍵盤之間沒有互動。

UIScrollBar 組件參數

您可以在「屬性」檢測器或「組件檢測器」中,為每個 UIScrollBar 組件實體設定下列編寫參數:direction 以及 scrollTargetName。這些參數都具有相對應的 ActionScript 同名屬性。
您可以撰寫 ActionScript,使用 UIScrollBar 實體的類別方法、屬性和事件,以設定 UIScrollBar 實體的其它選項。如需詳細資訊,請參閱 Adobe® Flash® Professional CS5 的 ActionScript® 3.0 參考中的 UIScrollBar 類別。

建立具有 UIScrollBar 組件的應用程式

下列程序說明如何在編寫時將 UIScrollBar 組件加入應用程式。
  1. 建立新的 Flash (ActionScript 3.0) 文件。
  2. 建立動態文字欄位,其高度必須要能容納一行或兩行文字,然後在「屬性」檢測器中賦予實體名稱 myText
  3. 在「屬性」檢測器中,將文字輸入欄位的「字行類型」設定為「多行」;若要想使用水平捲軸,請設定為「多行不換行」。
  4. 開啟「動作」面板,在主要「時間軸」中選取「影格 1」,然後輸入下列 ActionScript 程式碼以填入 text 屬性,讓使用者必須捲動才能檢視全部的文字:
    myText.text="When the moon is in the seventh house and Jupiter aligns with Mars, then peace will guide the planet and love will rule the stars."
    備註: 請確定「舞台」上的文字欄位小到需要捲動才看得到所有文字。否則,捲軸就不會出現,或可能只出現兩行但沒有縮圖底框 (拖曳以捲動內容的部分)。
  5. 確認已開啟物件貼齊功能 (「檢視 > 貼齊 > 貼齊物件」)。
  6. 將 UIScrollBar 實體從「組件」面板拖曳到文字輸入欄位附近要附加捲軸的位置。等到組件與文字欄位重疊時才放開滑鼠,讓組件適當地繫結至欄位。賦予組件實體名稱 mySb
    組件的 scrollTargetName 屬性會自動填入,其值等於文字欄位在「屬性」檢測器和「組件檢測器」中的實體名稱。如果此名稱未出現在「參數」索引標籤中,表示 UIScrollBar 實體可能重疊得不夠多。
  7. 選取「控制 > 測試影片」。

使用 ActionScript 建立 UIScrollBar 組件實體

您可以使用 ActionScript 建立 UIScrollBar 實體,讓捲軸與文字欄位在執行階段產生關聯。下列範例會建立水平方向的 UIScrollBar 實體,並且將它附加到名為 myTxt 的文字欄位實體下方,而該文字欄位實體則是從 URL 載入文字。此範例也設定捲軸的大小,以符合文字欄位的大小:
  1. 建立新的 Flash (ActionScript 3.0) 文件。
  2. 將 ScrollBar 組件拖曳到「元件庫」面板。
  3. 開啟「動作」面板,選取主要「時間軸」中的「影格 1」,然後輸入下列 ActionScript 程式碼:
    import flash.net.URLLoader; 
    import fl.controls.UIScrollBar; 
    import flash.events.Event; 
     
    var myTxt:TextField = new TextField(); 
    myTxt.border = true; 
    myTxt.width = 200; 
    myTxt.height = 16; 
    myTxt.x = 200; 
    myTxt.y = 150; 
     
    var mySb:UIScrollBar = new UIScrollBar(); 
    mySb.direction = "horizontal"; 
    // Size it to match the text field. 
    mySb.setSize(myTxt.width, myTxt.height);  
     
    // Move it immediately below the text field. 
    mySb.move(myTxt.x, myTxt.height + myTxt.y); 
     
    // put them on the Stage 
    addChild(myTxt); 
    addChild(mySb); 
    // load text 
    var loader:URLLoader = new URLLoader(); 
    var request:URLRequest = new URLRequest("http://www.helpexamples.com/flash/lorem.txt"); 
    loader.load(request); 
    loader.addEventListener(Event.COMPLETE, loadcomplete); 
     
    function loadcomplete(event:Event) { 
        // move loaded text to text field 
        myTxt.text = loader.data; 
        // Set myTxt as target for scroll bar. 
        mySb.scrollTarget = myTxt; 
    }
  4. 選取「控制 > 測試影片」。

Quickly And Easily To Draw The Pen Icon



Quickly And Easily To Draw The Pen Icon

Simulate Projectile Motion with ActionScript 3.0



Simulate Projectile Motion with ActionScript 3.0

Get User IP Address Using PHP and ActionScript 3



Get User IP Address Using PHP and ActionScript 3

2010年9月19日 星期日

create a glossy 3D RSS Icon



create a glossy 3D RSS Icon

Create a Semi-Realistic Cutter Illustration



Create a Semi-Realistic Cutter Illustration

Create Artistic Abstract Shapes via the Powerful Warp Tool in Photoshop



Create Artistic Abstract Shapes via the Powerful Warp Tool in Photoshop

Photoshop Tutorial: Create a Surreal Atmospheric Phone Booth Scenery



Photoshop Tutorial: Create a Surreal Atmospheric Phone Booth Scenery

How to Create a Beautiful Guitar Icon in Photoshop



How to Create a Beautiful Guitar Icon in Photoshop

Create Beauty Woman Effect in Photoshop



Create Beauty Woman Effect in Photoshop

Prince of Persia Titles Tutorial

Prince of Persia Titles Tutorial from David Cox on Vimeo.


Prince of Persia Titles Tutorial

Create a Peeling Sticker in Photoshop



Create a Peeling Sticker in Photoshop

2010年9月13日 星期一

免費下載向量圖網站

1.Vecteezy 這個網站的向量圖檔設計得很精緻,應是喜歡向量圖檔的愛好者首選。

2.Vectormadness 真譯就是向量圖瘋,分類詳細,蒐羅的圖案也很多。

3.Vectorish 蒐集向量圖案,並允許同好上傳分享。

4.Qvectors 這個向量圖檔我喜歡,有許多建築圖案在裡頭,可以用來教學用。

5.All Silhouettes 顧名思義,就是所有關於「剪影」設計的向量圖檔。

6.Vectorportal號稱所有向量圖檔的入口,內含諸如背景、横幅設計、放射線和爆炸、剪影等等,圖案真的很多。

7.Brands of the World 世界名牌的向量檔蒐集。

8.I heart vector 這是向量圖的大雜燴,沒有特別分類,但內容非常豐富,上天下地,什麼都有。

9.deviantArt 英文deviant是離經叛道、非主流的意思,但這個網站所包含的不只向量圖檔,其他格式的圖檔也很多。

10.Cool vectors 這個網站蒐集許多很酷的向量檔,也是大雜燴型的,

來源

2010年9月7日 星期二

How to Create a Fun Circus Tent Icon



How to Create a Fun Circus Tent Icon

Create a Modern Style Icon with a Professional Finish – Vector Premium Tutorial



Create a Modern Style Icon with a Professional Finish – Vector Premium Tutorial

How to Create a Dynamic 3D Puzzle Effect in Adobe Illustrator



How to Create a Dynamic 3D Puzzle Effect in Adobe Illustrator

20 Free and Useful Adobe Illustrator Scripts



20 Free and Useful Adobe Illustrator Scripts

3D House Icon in Adobe Illustrator



3D House Icon in Adobe Illustrator

Distort Linear Gradients in Envelope Distorts



Distort Linear Gradients in Envelope Distorts

Create a Polished Raised Type Treatment



Create a Polished Raised Type Treatment

Quick Tip: How to Create a Stylized Wave using Adobe Illustrator



Quick Tip: How to Create a Stylized Wave using Adobe Illustrator

Create an Artistic Scene with 3D Light Bulbs and Type



Create an Artistic Scene with 3D Light Bulbs and Type

Combine 3D Geometric Shapes and Flowing Lines for a Sleek iPhone Ad



Combine 3D Geometric Shapes and Flowing Lines for a Sleek iPhone Ad

Design a Coffee Shop Menu Layout from Scratch with Photoshop and InDesign



Design a Coffee Shop Menu Layout from Scratch with Photoshop and InDesign

How To Create The Expendables Winged Skull Poster Art



How To Create The Expendables Winged Skull Poster Art

google ad