<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MacroViz &#187; Actionscript 3.0</title>
	<atom:link href="http://blog.macroviz.com/archives/tag/actionscript-3-0/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.macroviz.com</link>
	<description>多媒體設計、數位學習、英語學習、日語學習</description>
	<lastBuildDate>Fri, 19 Mar 2010 05:10:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>把 Flex SDK 4 整合進 Flex Builder 3 開發環境</title>
		<link>http://blog.macroviz.com/archives/539</link>
		<comments>http://blog.macroviz.com/archives/539#comments</comments>
		<pubDate>Wed, 21 Jan 2009 04:06:12 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/?p=539</guid>
		<description><![CDATA[Flex SDK 4 已經出來了，可惜還沒有 Flex Builder 4。不過沒關係，野部看到國外有些人把 Flex SDK 4 整合進去 Flex Builder 3，照樣可以視覺化開發應用程式。以下，野部就詳列操作步驟： 一、下載 Flex SDK 4：http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4Adobe Flex SDK (ZIP&#160; 82MB) 二、確認 Flash Player 的版本是 10 以上，預設的 9 是不可以搭配 Flex 4 使用的：http://www.adobe.com/products/flash/about/記下這一行 「You have version 10,0,12,36 installed」。三、安裝 Flex SDK 4：將 Flex SDK 4 解壓縮，並且根據版本序號命名為 4.0.0。將此資料夾移動到 C:\Program Files\Adobe\Flex Builder 3\sdks。此時可以看到之前已經有 2.0.1，3.2.0 兩個資料夾了。 四、設定 Flex Builder [...]]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/539/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>增加 Flex 的運作效率</title>
		<link>http://blog.macroviz.com/archives/533</link>
		<comments>http://blog.macroviz.com/archives/533#comments</comments>
		<pubDate>Sun, 28 Dec 2008 09:39:40 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/archives/533</guid>
		<description><![CDATA[當 Flex 專案變龐大，Building workspace (編譯專案) 的速度會變得極慢。不過野部也發現一些方法，可以大幅提升 Building workspace 的速度。每次 Building workspace 之後，我們可以看到 0 errors, 0 warnings, 0 infos。提升速度的竅門，在於讓這三個數字都保持 0。 errors 並不可怕，因為修正之後，errors 並不會再次出現，拖慢 Building workspace 的速度。真正可怕的是 warnings。warnings 的產生，野部歸納為下列幾種原因： 函式的宣告，並未宣告 public 或 private，就直接以 function 開頭。 函式的宣告，並未宣告類型，如 void、String、Number 等，就直接在 (&#8230;) 後接上 {&#8230;}。 變數的宣告，並未宣告 public 或 private，就直接以 var 開頭。 變數的宣告，並未宣告類型，如String、Number等，就直接以 ; 結束。 CSS 宣告的 Tag ，並未在 Application 的 MXML [...]]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/533/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flex 使用 parentApplication 的注意事項</title>
		<link>http://blog.macroviz.com/archives/417</link>
		<comments>http://blog.macroviz.com/archives/417#comments</comments>
		<pubDate>Fri, 17 Oct 2008 09:38:05 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/archives/417</guid>
		<description><![CDATA[當在專案中，運用的自訂元件越來越多層時，為了頁面的切換和導覽，有時候會需要存取上層，或同層之間的變數或物件，這個時候，Flex 的 Actionscript 3.0 提供了parentApplication作為一個解決方案。野部用一個通俗的概念來描述，parentApplication 可以視同為 flash 開發環境下的 _root，但是限制比較多，可以有下面幾種運用方式： parentApplication.componentID.objectID.property parentApplication.objectID. property parentApplication.varableName 但是當遇到兩層元件以上的時候，用下列語法會造成執行錯誤： componentID.componetID.objectID.property 此外，parentApplication還有幾個需要注意的事項： 一定是從最上層也就是 &#60;mx:Application&#62; 那一層開始算起 引入自訂元件一定要下 ID，如 &#60;local:myComp id=&#34;myComp&#34;&#62;，這點有時候會被忽略。 如上所述，元件只能一層。 parentApplication 之後的語法，Flex Builder 不會即時除錯，必須等到在瀏覽器中執行時才知道錯誤與否，因為超過運算範圍。 可是有時候為了導覽，不得不跨層存取，限制那麼多，又不能即時除錯，那該怎麼辦呢？ 其實解決方法很簡單，就是在最上層，也就是&#60;mx:Application&#62;層，宣告一個 public 變數。之後任何一層，需要存取或者判斷時，直接用parentApplication.varableName 的方式來達成就行了。 P.S. 上述的componentID, objected, property, varableName 請代換成您自己的語法就行了。 野部]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/417/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verbal Plus 0.0.5 版發布，本次有重大更新。</title>
		<link>http://blog.macroviz.com/archives/345</link>
		<comments>http://blog.macroviz.com/archives/345#comments</comments>
		<pubDate>Mon, 01 Sep 2008 15:11:43 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Verbal Plus]]></category>
		<category><![CDATA[數位學習]]></category>
		<category><![CDATA[英語學習]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/archives/345</guid>
		<description><![CDATA[花了一些時間，終於完成了 0.0.5 版了。後來才體驗到，如果瞬間透過 E4X 存取 XML 六千多次，那執行效能真的非常差。所以後來字典書的切換，用別的方式寫。效能就改善很多了。 這一次有下列幾項重大更新： 新增紅寶書，僅字庫和字序，如需要該書內容，請直接購買原書 增加 Time Magazine 的查詢 完成使用者自訂字典書功能，字典書預設路徑： C:\Program Files\Verbal Plus\books 增加字典書可以選擇字母來分類的功能 增加了CC版權的軟體圖示，下載來源：http://www.iconarchive.com/show/buuf-icons-by-mattahan/Dictionary-icon.html 其實，到了這個版本，才完成了我當初想要開發 Verbal Plus 的大部分的功能。例如自訂字典，加入紅寶，字母分組，搜尋 Time 雜誌等等。歡迎有興趣的朋友，前往下列網址下載最新版本： http://blog.macroviz.com/verbal_plus]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/345/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>請更新 Adobe AIR 套件至 1.1 版</title>
		<link>http://blog.macroviz.com/archives/301</link>
		<comments>http://blog.macroviz.com/archives/301#comments</comments>
		<pubDate>Wed, 18 Jun 2008 13:06:20 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/2008/06/18/%e8%ab%8b%e6%9b%b4%e6%96%b0-adobe-air-%e5%a5%97%e4%bb%b6%e8%87%b3-11-%e7%89%88/</guid>
		<description><![CDATA[這兩天，Adobe&#160; 推出了 AIR 套件 1.1 繁體中文版了。 這個版本最顯著的改變是，使用 WebKit 為瀏覽器核心的 HTML 元件，解決了中文亂碼的問題，所以 Verbal Plus 的&#160; Youtube 中文版可以正常瀏覽了。 http://get.adobe.com/air/?loc=tw]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/301/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verbal Plus 0.0.3 上線(說明網頁亂碼修復中)</title>
		<link>http://blog.macroviz.com/archives/299</link>
		<comments>http://blog.macroviz.com/archives/299#comments</comments>
		<pubDate>Mon, 09 Jun 2008 16:26:19 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Verbal Plus]]></category>
		<category><![CDATA[數位學習]]></category>
		<category><![CDATA[英語學習]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/2008/06/10/verbal-plus-003-%e4%b8%8a%e7%b7%9a%e8%aa%aa%e6%98%8e%e7%b6%b2%e9%a0%81%e4%ba%82%e7%a2%bc%e4%bf%ae%e5%be%a9%e4%b8%ad/</guid>
		<description><![CDATA[Verbal Plus 0.0.3 版已經內建一本字典書，可以直接點單字查網頁，算是懶中之懶了。 由此下載Verbal_Plus_0.0.3.air 比較無奈的是，剛剛不知道為什麼，寫到一半的軟體說明，忽然 crash 掉，本機又沒有存檔，唉，只能儘快修復亂碼了。Imitrex Mexican pharmacy phentermine Best herbal viagra Pharmacy phentermine affiliate Gabapentin Texas personal injury lawyers viagra Order viagra viagra online Viagra pills uk Imuran Xanax liver damage Prempro Buy viagra pill Phentermine success story Humulin Polythiazide Xanax pills Lisinopril drug interaction viagra Buprenorphine Tussionex Xanax xr Language phentermine [...]]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/299/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>運用Adobe AIR寫的背單字小軟體 Verbal Plus</title>
		<link>http://blog.macroviz.com/archives/296</link>
		<comments>http://blog.macroviz.com/archives/296#comments</comments>
		<pubDate>Sun, 08 Jun 2008 12:30:06 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Verbal Plus]]></category>
		<category><![CDATA[數位學習]]></category>
		<category><![CDATA[英語學習]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/2008/06/08/%e9%81%8b%e7%94%a8adobe-air%e5%af%ab%e7%9a%84%e8%83%8c%e5%96%ae%e5%ad%97%e5%b0%8f%e8%bb%9f%e9%ab%94-verbal-plus/</guid>
		<description><![CDATA[這是野部利用背GRE單字的空閒時間寫的，主要的功能就是可以輸入一個單字，同時查詢七個網站： Google 圖片搜索 Yahoo!奇摩字典 Merriam-Webster Dictionary (韋氏英英字典) Merriam-Webster Thesaurus (韋氏英英同義字字典) New York Times (紐約時報) Wikipedia (維基百科) Youtube 線上影片 當然，這程式主要是方便野部自己背單字用的，也順便分享給大家，共勉之。 詳細說明網頁如下：http://blog.macroviz.com/verbal_plus/ 因為一次查詢七個網站，所以電腦會變慢，請耐心等候。有任何問題可以留下訊息，功能主要是攻略單字用，所以也沒辦法包山包海，加上野部也是大忙人一個，如有怠慢，敬請見諒。]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/296/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flex 中文字型包解決技術</title>
		<link>http://blog.macroviz.com/archives/282</link>
		<comments>http://blog.macroviz.com/archives/282#comments</comments>
		<pubDate>Tue, 22 Apr 2008 10:52:32 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/2008/04/22/flex-%e4%b8%ad%e6%96%87%e5%ad%97%e5%9e%8b%e5%8c%85%e8%a7%a3%e6%b1%ba%e6%8a%80%e8%a1%93/</guid>
		<description><![CDATA[Flash 的文件針對動態文字之中文字型嵌入描述非常少，因為嵌入整個英文字體並不會大幅增加體積，但是，要嵌入整個中文字型可就是不一樣的問題。可惜老外不會體諒咱們用中文的人&#8230;Orz&#8230;. 你期望使用者會為了看幾個有柔邊的動態文字，要下載個8mb的&#34;小&#34;flash嗎?別傻了&#8230; 那怎麼辦? 仔細想想20年前 DOS時代的&#160; RPG ，中文字型怎麼解決的呢? 沒錯，就是只嵌入要的文字。 Flash 到 CS3 還是沒有好好解決這個問題，要幹ㄍㄧㄠˇ adobe 合併 mecromedia 後對 Studio 產品與 Flash CS3&#160; 的草率，網路上文章一堆，野部不必插一腳。 反正幸好&#160; Flex Builder 3 提供了一個怪異的方法，請各位參考 Help 裡的下列很重要的兩篇文章。 Embedding fonts from SWF filesUsing embedded fonts]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/282/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Flash(Flex) 3D 引擎</title>
		<link>http://blog.macroviz.com/archives/276</link>
		<comments>http://blog.macroviz.com/archives/276#comments</comments>
		<pubDate>Sun, 06 Apr 2008 17:48:19 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/2008/04/07/flashflex-3d-%e5%bc%95%e6%93%8e/</guid>
		<description><![CDATA[野部從美國回來就因為學校事務繁忙，毫無休息，也無暇提筆寫文章。今天在跟卲子大大討論當中，卲子提到關於 Flex 3D的事情，野部正在疑惑是否有這樣的東東存在，因此，睡覺之前，花了點時間找一下，沒想到大有斬獲。 原來是一位好心人Carlos Ulloa,所寫的 Papervision3d 模組，看來國內外應用的人很多，案例看來也非常有趣。 Papervision 3D (驚為天人)http://www.papervision3d.org/ http://blog.papervision3d.org/ 下載點 (放在 Google Code) http://code.google.com/p/papervision3d/downloads/list 邦邦大大的一些文章 http://mmug.com.tw/forum/viewtopic.php?t=11200 案例雜燴 http://f-site.org/articles/2007/05/11154304.html http://www.ffilmation.org/website/demos/example-1/ http://www.swf.com.tw/?p=90 http://www.rockonflash.com/demos/pv3d/macworld/demo/as3/index.html http://yudesign.f2blog.com/index.php?load=read&#38;amp;id=198 http://www.suketuvyas.com/category/flex-3d/ http://www.cornflex.org/?p=1 http://www.unitzeroone.com/blog/2006/12/12/papervision-3dflex-2-example-flex-makes-its-first-pv3d-steps/ http://forum.j2eemx.com/showthread.php?t=1023 其他工具或3D引擎 http://labs.getoutsmart.com/archives/2007/05/02/3d-engine-demo/ http://seraf.mediabox.fr/wow-engine/as3-3d-physics-engine-wow-engine/ http://www.feelingsoftware.com/content/view/16/30/ http://www.ilog.com/products/elixir/ http://visudemos.ilog.com/webdemos/radar/radar.html http://visudemos.ilog.com/webdemos/charts3d/charts3d.html]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/276/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux 執行官方Adobe Flex Builder Linux</title>
		<link>http://blog.macroviz.com/archives/122</link>
		<comments>http://blog.macroviz.com/archives/122#comments</comments>
		<pubDate>Sat, 20 Oct 2007 06:09:28 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/?p=122</guid>
		<description><![CDATA[野部在網路上看到來自 闲云孤鹤 &#8211; 清冷香中抱膝吟的feiy前輩所寫的幾篇經典文章，知道要將Flex Builder 移植到Linux真的是費了好大功夫。從feiy前輩的新文章當中： http://blog.eshangrao.com/index.php/2007/10/04/436-adobeflex-builder-linux-alpha 知道Adobe終於願意看到Linux的市場，推出了Adobe Flex Builder Linux Public Alpha： http://labs.adobe.com/technologies/flex/flexbuilder_linux/ 真是令人振奮的消息。因此野部也迫不及待地動手試試看： 確定已經安裝了Eclipse了。 下載 flexbuilder_linux_install_a1_100207.bin。 將此檔案權限設定為可執行。 在終端機裡輸入 sudo ./flexbuilder_linux_install_a1_100207.bin。 跑了一陣子後安裝完畢。 在桌面或主選單新增一個啟動圖示。 命令輸入gksudo /home/您的使用者名稱/Adobe_Flex_Builder_Linux/Adobe_Flex_builder.sh。 承第7點，執行時必須以總管理者身份執行。 大功告成，我好幾個月來的夢想終於成真。雖然只能使用文字編輯器，而不能使用所見即所得，但是也已經非常滿足與足夠了。]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/122/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex之Repeater、XML筆記</title>
		<link>http://blog.macroviz.com/archives/66</link>
		<comments>http://blog.macroviz.com/archives/66#comments</comments>
		<pubDate>Tue, 06 Mar 2007 16:02:07 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/?p=66</guid>
		<description><![CDATA[Flex Builder 2裡面HELP雖不缺乏，其實看了反而很難找到重點，就此將這兩週突破的瓶頸與關鍵性HELP章節條列出來，希望對大家有所幫助，並節省大家的開發時間。 1. Repeater 元件： 此元件非視覺化元件，特性類似程式語言裡的For迴圈，可在執行期複製其他Component，&#60;mx:Repeater&#62;的標籤要自己輸 入，而dataProvider可在&#60;mx:Script&#62;區段之中，以[Bindable]的Metadata定義之陣列作連結，如使用巢 狀Repeater元件來複製其他元件，則元件參照之維度，相當於Repeater巢狀之層數(看完下列指定之Help章節，就明白我言了)。 主要參考章節： Using a Repeater component in a custom MXML component Referencing nested Repeater components (在Flex Bulder Help 中的搜尋框，輸入上列英文字作為關鍵字，就能進入該章節了) 2. 外部XML讀取 Actionscript 3.0 的賣點之一，就是加強XML讀取的方便性，讀取外部XML是常用的前後端整合手段，而XML節點的操作，比之前AS2用DOM更直觀，可以直接運用標籤與屬性名稱訪問節點。 主要參考章節： Reading external XML documents Traversing XML structures]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/66/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>絕品!發展RIA之利器、AS3 Class Diagram海報</title>
		<link>http://blog.macroviz.com/archives/65</link>
		<comments>http://blog.macroviz.com/archives/65#comments</comments>
		<pubDate>Tue, 06 Mar 2007 15:31:55 +0000</pubDate>
		<dc:creator>野部 聖広</dc:creator>
				<category><![CDATA[Actionscript 3.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flex]]></category>

		<guid isPermaLink="false">http://blog.macroviz.com/?p=65</guid>
		<description><![CDATA[剛好在網路上遇到這張傳說中的神奇海報的PDF檔，跟JAVA那一張還頗像，送給想研究Actionscript 3.0 的人喔。 ActionScript 3 Class Diagram http://www.flex.org/download/AS3API_01.pdf 研究Flex and AS 3 的參考網站 http://www.flex.org/]]></description>
		<wfw:commentRss>http://blog.macroviz.com/archives/65/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

