<?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>Bloggy! Boggy's Blog &#187; flash</title>
	<atom:link href="http://www.boggy.idv.tw/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.boggy.idv.tw</link>
	<description>Hi! I'm Boggy and this is my blog. I write something about works, life, music or funny things here.</description>
	<lastBuildDate>Thu, 10 Sep 2009 03:52:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>在Flash中使用POST或GET方法</title>
		<link>http://www.boggy.idv.tw/2006/07/16/post_get_method_in_flash/</link>
		<comments>http://www.boggy.idv.tw/2006/07/16/post_get_method_in_flash/#comments</comments>
		<pubDate>Sun, 16 Jul 2006 15:24:08 +0000</pubDate>
		<dc:creator>Boggy</dc:creator>
				<category><![CDATA[一些網頁技巧分享]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[getURL()
這是Global Function 就是說你不管在哪個地方都能執行這函式
它的作用是連到一個網址
如果要用POST、GET METHOD
須將VARIABLES寫在MC裡面
MC中：
var VarName1 = &#8220;xxx&#8221;;
var VarName1 = &#8220;xxx&#8221;;
getURL(&#8221;xxx.php&#8221;,&#8221;newWin&#8221;,&#8221;POST&#8221;);
若使用POST METHOD，需要上傳SERVER才能正常的運作，否則在測試時，會將POST視為GET方法
 
LoadVars 類別
基本上如果要用POST、GET METHOD
還是用 LoadVars 最標準
以下僅先介紹 send 方法
它就像是網頁上的表單
只是你送出的同時要讓程式將所需欄位都放進去
var myLoadVars:LoadVars = new LoadVars
myLoadVars.send(&#8221;xxx.php&#8221;,&#8221;newWin&#8221;,&#8221;POST&#8221;)
&#8220;xxx.php&#8221; 想必就是要POST的URL
&#8220;newWin&#8221; 為視窗名稱 你可以用 &#8220;_self&#8221;,&#8221;_blank&#8221; 之類的，都能被接受
&#8220;POST&#8221; 就是HTML中的Method，有&#8221;POST&#8221;跟&#8221;GET&#8221;兩種值
]]></description>
		<wfw:commentRss>http://www.boggy.idv.tw/2006/07/16/post_get_method_in_flash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
