<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>「~No Magic，Just Basic ~」的迴響</title>
	<atom:link href="http://cloudfly.org.ru/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://cloudfly.org.ru</link>
	<description>RIA、Flash、Flex、心得討論與分享</description>
	<pubDate>Wed, 08 Sep 2010 03:10:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>由 NiauWu 發表的 [AS3]控制上層影片片段的語法 迴響</title>
		<link>http://cloudfly.org.ru/?p=755&#038;cpage=1#comment-333</link>
		<dc:creator>NiauWu</dc:creator>
		<pubDate>Thu, 12 Aug 2010 01:28:42 +0000</pubDate>
		<guid isPermaLink="false">http://cloudfly.org.ru/?p=755#comment-333</guid>
		<description>謝謝你
不過我用第一個方法會出現
TypeError: Error #1034: 強制轉型失敗： 無法將 flash.display::Stage@965d1e9 轉換成 flash.display.MovieClip。at _fla::MainTimeline/sceneStopHandler()
第二個方法會出現
TypeError: Error #1009: 無法存取 Null 物件參考的屬性或方法。
	at _fla::MainTimeline/scenePlayHandler()
但是用this.stop();就可以了
後來發現原來第一個方法的MovieClip(this.parent).stop();中的this換成影片片段的命名就可以了</description>
		<content:encoded><![CDATA[<p>謝謝你<br />
不過我用第一個方法會出現<br />
TypeError: Error #1034: 強制轉型失敗： 無法將 flash.display::Stage@965d1e9 轉換成 flash.display.MovieClip。at _fla::MainTimeline/sceneStopHandler()<br />
第二個方法會出現<br />
TypeError: Error #1009: 無法存取 Null 物件參考的屬性或方法。<br />
	at _fla::MainTimeline/scenePlayHandler()<br />
但是用this.stop();就可以了<br />
後來發現原來第一個方法的MovieClip(this.parent).stop();中的this換成影片片段的命名就可以了</p>
]]></content:encoded>
	</item>
	<item>
		<title>由 jj 發表的 [Flex]小型video player 迴響</title>
		<link>http://cloudfly.org.ru/?p=374&#038;cpage=1#comment-320</link>
		<dc:creator>jj</dc:creator>
		<pubDate>Sun, 25 Jul 2010 01:20:40 +0000</pubDate>
		<guid isPermaLink="false">http://cloudfly.org.ru/?p=374#comment-320</guid>
		<description>&lt;a href="#comment-309" rel="nofollow"&gt;@cloudfly &lt;/a&gt; 

THANKS
這我知道

沒關西我做出來了!!!</description>
		<content:encoded><![CDATA[<p><a href="#comment-309" rel="nofollow">@cloudfly </a> </p>
<p>THANKS<br />
這我知道</p>
<p>沒關西我做出來了!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>由 cloudfly 發表的 [Flex]小型video player 迴響</title>
		<link>http://cloudfly.org.ru/?p=374&#038;cpage=1#comment-309</link>
		<dc:creator>cloudfly</dc:creator>
		<pubDate>Sun, 18 Jul 2010 04:29:31 +0000</pubDate>
		<guid isPermaLink="false">http://cloudfly.org.ru/?p=374#comment-309</guid>
		<description>&lt;a href="#comment-306" rel="nofollow"&gt;@cloudfly&lt;/a&gt;
程式碼大概像這樣
 

&lt;pre lang="Actionscript" line="1" colla="+"&gt;
&lt;mx:VBox name="CustomItemRenderer"
        xmlns:mx="http://www.adobe.com/2006/mxml"
        horizontalAlign="center"
        verticalAlign="middle"&gt;
 
    &lt;mx:Image source="{data.thumbnailImage}" /&gt;
 
    &lt;mx:Label text="{data.label}" /&gt;
 
&lt;/mx:VBox&gt;
&lt;/pre&gt;


 
    
 
    
 

</description>
		<content:encoded><![CDATA[<p><a href="#comment-306" rel="nofollow">@cloudfly</a><br />
程式碼大概像這樣</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p755code1'); return false;">View Code</a> ACTIONSCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p7551"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code" id="p755code1"><pre class="actionscript" style="font-family:monospace;"><span style="color: #66cc66;">&lt;</span>mx:VBox <span style="color: #0066CC;">name</span>=<span style="color: #ff0000;">&quot;CustomItemRenderer&quot;</span>
        xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span>
        horizontalAlign=<span style="color: #ff0000;">&quot;center&quot;</span>
        verticalAlign=<span style="color: #ff0000;">&quot;middle&quot;</span><span style="color: #66cc66;">&gt;</span>
&nbsp;
    <span style="color: #66cc66;">&lt;</span>mx:Image source=<span style="color: #ff0000;">&quot;{data.thumbnailImage}&quot;</span> <span style="color: #66cc66;">/&gt;</span>
&nbsp;
    <span style="color: #66cc66;">&lt;</span>mx:Label <span style="color: #0066CC;">text</span>=<span style="color: #ff0000;">&quot;{data.label}&quot;</span> <span style="color: #66cc66;">/&gt;</span>
&nbsp;
<span style="color: #66cc66;">&lt;/</span>mx:VBox<span style="color: #66cc66;">&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
	</item>
	<item>
		<title>由 cloudfly 發表的 [Flex]小型video player 迴響</title>
		<link>http://cloudfly.org.ru/?p=374&#038;cpage=1#comment-306</link>
		<dc:creator>cloudfly</dc:creator>
		<pubDate>Sun, 18 Jul 2010 04:24:40 +0000</pubDate>
		<guid isPermaLink="false">http://cloudfly.org.ru/?p=374#comment-306</guid>
		<description>&lt;a href="#comment-305" rel="nofollow"&gt;@jj&lt;/a&gt; 
要用itemRenderer的元件
譬如你先定義好圖片的位置

        


在List屬性中要用到itemRenderer
&lt;mx:List id="horizontalList"
                    labelField="label"
                    iconField="thumbnailImage"
                    dataProvider="{arr}"
                    itemRenderer="CustomItemRenderer"


CustomItemRenderer則是自己實作的component
這裡可以用VBox將Image元件包起來

 
    
 
    
 


如此就可以在List中使用圖片的icon了 :razz:</description>
		<content:encoded><![CDATA[<p><a href="#comment-305" rel="nofollow">@jj</a><br />
要用itemRenderer的元件<br />
譬如你先定義好圖片的位置</p>
<p>在List屬性中要用到itemRenderer<br />
&lt;mx:List id=&#8221;horizontalList&#8221;<br />
                    labelField=&#8221;label&#8221;<br />
                    iconField=&#8221;thumbnailImage&#8221;<br />
                    dataProvider=&#8221;{arr}&#8221;<br />
                    itemRenderer=&#8221;CustomItemRenderer&#8221;</p>
<p>CustomItemRenderer則是自己實作的component<br />
這裡可以用VBox將Image元件包起來</p>
<p>如此就可以在List中使用圖片的icon了 <img src='http://cloudfly.org.ru/wp-includes/images/smilies/icon_razz.gif' alt=':razz:' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>由 jj 發表的 [Flex]小型video player 迴響</title>
		<link>http://cloudfly.org.ru/?p=374&#038;cpage=1#comment-305</link>
		<dc:creator>jj</dc:creator>
		<pubDate>Sat, 17 Jul 2010 15:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://cloudfly.org.ru/?p=374#comment-305</guid>
		<description>&lt;a href="#comment-304" rel="nofollow"&gt;@cloudfly &lt;/a&gt; 
把List中的字換成圖片
 :razz: 

我改過
list裡面不能放image

 :shock:</description>
		<content:encoded><![CDATA[<p><a href="#comment-304" rel="nofollow">@cloudfly </a><br />
把List中的字換成圖片<br />
 <img src='http://cloudfly.org.ru/wp-includes/images/smilies/icon_razz.gif' alt=':razz:' class='wp-smiley' /> </p>
<p>我改過<br />
list裡面不能放image</p>
<p> <img src='http://cloudfly.org.ru/wp-includes/images/smilies/icon_eek.gif' alt=':shock:' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>由 cloudfly 發表的 [Flex]小型video player 迴響</title>
		<link>http://cloudfly.org.ru/?p=374&#038;cpage=1#comment-304</link>
		<dc:creator>cloudfly</dc:creator>
		<pubDate>Sat, 17 Jul 2010 12:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://cloudfly.org.ru/?p=374#comment-304</guid>
		<description>&lt;a href="#comment-303" rel="nofollow"&gt;@jj&lt;/a&gt; 
能否在明確說一下你的需求...是要像幻燈片那種sildeshow呢

還是把List中的字換成圖片，左方點選圖片後，右邊會播放該影片??</description>
		<content:encoded><![CDATA[<p><a href="#comment-303" rel="nofollow">@jj</a><br />
能否在明確說一下你的需求&#8230;是要像幻燈片那種sildeshow呢</p>
<p>還是把List中的字換成圖片，左方點選圖片後，右邊會播放該影片??</p>
]]></content:encoded>
	</item>
	<item>
		<title>由 jj 發表的 [Flex]小型video player 迴響</title>
		<link>http://cloudfly.org.ru/?p=374&#038;cpage=1#comment-303</link>
		<dc:creator>jj</dc:creator>
		<pubDate>Sat, 17 Jul 2010 09:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://cloudfly.org.ru/?p=374#comment-303</guid>
		<description>&lt;a href="#comment-302" rel="nofollow"&gt;@cloudfly &lt;/a&gt; 
借問一下!!
像你這程式碼
如果不用list...data...

我要用上面放照片
點圖片播影片這樣

我打算抓圖片的Index
做不太出來 :sad: 

你有沒有臉書還是msn可以交流一下
 :cool:</description>
		<content:encoded><![CDATA[<p><a href="#comment-302" rel="nofollow">@cloudfly </a><br />
借問一下!!<br />
像你這程式碼<br />
如果不用list&#8230;data&#8230;</p>
<p>我要用上面放照片<br />
點圖片播影片這樣</p>
<p>我打算抓圖片的Index<br />
做不太出來 <img src='http://cloudfly.org.ru/wp-includes/images/smilies/icon_sad.gif' alt=':sad:' class='wp-smiley' /> </p>
<p>你有沒有臉書還是msn可以交流一下<br />
 <img src='http://cloudfly.org.ru/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>由 cloudfly 發表的 [Flex]小型video player 迴響</title>
		<link>http://cloudfly.org.ru/?p=374&#038;cpage=1#comment-302</link>
		<dc:creator>cloudfly</dc:creator>
		<pubDate>Sat, 17 Jul 2010 04:28:58 +0000</pubDate>
		<guid isPermaLink="false">http://cloudfly.org.ru/?p=374#comment-302</guid>
		<description>&lt;a href="#comment-301" rel="nofollow"&gt;@佳佳&lt;/a&gt; 
 :lol: 謝謝指教....歡迎加入Flex的行列...^__^</description>
		<content:encoded><![CDATA[<p><a href="#comment-301" rel="nofollow">@佳佳</a><br />
 <img src='http://cloudfly.org.ru/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> 謝謝指教&#8230;.歡迎加入Flex的行列&#8230;^__^</p>
]]></content:encoded>
	</item>
</channel>
</rss>
