<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Heavenenn's Weblog</title>
	<atom:link href="http://heavenenn.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://heavenenn.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 22 Jan 2008 07:27:28 +0000</lastBuildDate>
	<language>zh-tw</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='heavenenn.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Heavenenn's Weblog</title>
		<link>http://heavenenn.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://heavenenn.wordpress.com/osd.xml" title="Heavenenn&#039;s Weblog" />
	<atom:link rel='hub' href='http://heavenenn.wordpress.com/?pushpress=hub'/>
		<item>
		<title>JSTL(fn)</title>
		<link>http://heavenenn.wordpress.com/2008/01/22/jstlfn/</link>
		<comments>http://heavenenn.wordpress.com/2008/01/22/jstlfn/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 07:27:28 +0000</pubDate>
		<dc:creator>heavenenn</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://heavenenn.wordpress.com/2008/01/22/jstlfn/</guid>
		<description><![CDATA[fn:contains(string, substring) 如果參數string中包含參數substring，返回true fn:containsIgnoreCase(string, substring) 如果參數string中包含參數substring(忽略大小寫)，返回true fn:endsWith(string, suffix) 如果參數 string 以參數suffix結尾，返回true fn:escapeXml(string) 將有意義的XML (和HTML)轉換為對應的XML character entity code，並返回 fn:indexOf(string, substring) 返回參數substring在參數string中第一次出現的位置 fn:join(array, separator) 將array陣列項目用一給定的separator字串串在一起，組成新字串並返回。 fn:length(item) 返回item元素長度。 fn:replace(string, before, after) 用參數after字串去替換string中所有出現參數before的字串，並返回其結果 fn:split(string, separator) 以參數separator 分割string，返回一陣列 fn:startsWith(string, prefix) 如果參數string以參數prefix開頭，返回true fn:substring(string, begin, end) 返回參數stringy部分的字串，從參數begin開始到參數end，包括end位置的字串 fn:substringAfter(string, substring) 返回參數substring在參數string中~後面的字串 fn:substringBefore(string, substring) 返回參數substring在參數string中前面的那一部份的字串 fn:toLowerCase(string) 將參數string所有字元轉換驗小寫，並返回其字串 fn:toUpperCase(string) 將參數string所有字元轉換驗大寫，並返回其字串 fn:trim(string) 去除參數string 首尾的空白，並返回其字串<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heavenenn.wordpress.com&amp;blog=2532013&amp;post=4&amp;subd=heavenenn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:contains(<font color="#008000">string</font><font color="#0000ff">,</font> <font color="#008000">substring</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>如果參數string中包含參數substring，返回true<br />
</strong><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:containsIgnoreCase(<font color="#008000">string</font>, <font color="#008000">substring</font>)</font><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>如果參數string中包含參數substring(忽略大小寫)，返回true<br />
</strong><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:endsWith(<font color="#008000">string</font>, <font color="#008000">suffix</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>如果參數 string 以參數suffix結尾，返回true</strong><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:escapeXml(<font color="#008000">string</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>將有意義的XML (和HTML)轉換為對應的XML character entity code，並返回</strong><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:indexOf(<font color="#008000">string</font>, <font color="#008000">substring</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>返回參數substring在參數string中第一次出現的位置<br />
</strong><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:join(<font color="#008000">array</font>, <font color="#008000">separator</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>將array陣列項目用一給定的separator字串串在一起，組成新字串並返回。</strong><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:length(<font color="#008000">item</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>返回item元素長度。</strong><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:replace(<font color="#008000">string</font>, <font color="#008000">before</font>, <font color="#008000">after</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>用參數after字串去替換string中所有出現參數before的字串，並返回其結果<br />
</strong><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff"><span class="hilite1">fn:split</span>(<font color="#008000">string</font>, <font color="#008000">separator</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>以參數separator 分割string，返回一陣列</strong><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:startsWith(<font color="#008000">string</font>, <font color="#008000">prefix</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>如果參數string以參數prefix開頭，返回true<br />
</strong><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:substring(<font color="#008000">string</font>, <font color="#008000">begin</font>, <font color="#008000">end</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>返回參數stringy部分的字串，從參數begin開始到參數end，包括end位置的字串</strong><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:substringAfter(<font color="#008000">string</font>, <font color="#008000">substring</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>返回參數substring在參數string中~後面的字串</strong><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:substringBefore(<font color="#008000">string</font>, <font color="#008000">substring</font>)</font><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>返回參數substring在參數string中前面的那一部份的字串<br />
</strong><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:toLowerCase(<font color="#008000">string</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>將參數string所有字元轉換驗小寫，並返回其字串<br />
</strong><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:toUpperCase(<font color="#008000">string</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>將參數string所有字元轉換驗大寫，並返回其字串<br />
</strong><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><br />
<img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><font color="#0000ff">fn:trim(<font color="#008000">string</font>)<br />
</font><img align="top" src="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" /><strong>去除參數string 首尾的空白，並返回其字串</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/heavenenn.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/heavenenn.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heavenenn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heavenenn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heavenenn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heavenenn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heavenenn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heavenenn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heavenenn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heavenenn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heavenenn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heavenenn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heavenenn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heavenenn.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heavenenn.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heavenenn.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heavenenn.wordpress.com&amp;blog=2532013&amp;post=4&amp;subd=heavenenn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heavenenn.wordpress.com/2008/01/22/jstlfn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/705a2762b994c832916badb81853e7d0?s=96&#38;d=identicon" medium="image">
			<media:title type="html">heavenenn</media:title>
		</media:content>

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />

		<media:content url="http://images.csdn.net/syntaxhighlighting/OutliningIndicators/None.gif" medium="image" />
	</item>
		<item>
		<title>Jacob&#8211;&gt;於PowerPoint中放置一張圖</title>
		<link>http://heavenenn.wordpress.com/2008/01/17/jacob-%e6%96%bcpowerpoint%e4%b8%ad%e6%94%be%e7%bd%ae%e4%b8%80%e5%bc%b5%e5%9c%96/</link>
		<comments>http://heavenenn.wordpress.com/2008/01/17/jacob-%e6%96%bcpowerpoint%e4%b8%ad%e6%94%be%e7%bd%ae%e4%b8%80%e5%bc%b5%e5%9c%96/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 02:40:48 +0000</pubDate>
		<dc:creator>heavenenn</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://heavenenn.wordpress.com/2008/01/17/jacob-%e6%96%bcpowerpoint%e4%b8%ad%e6%94%be%e7%bd%ae%e4%b8%80%e5%bc%b5%e5%9c%96/</guid>
		<description><![CDATA[ActiveXComponent axc = new ActiveXComponent(『PowerPoint.Application』); // 以下process是否可見 axc.setProperty(『Visible』, new Variant(true)); Dispatch presentations = axc.getProperty(『Presentations』).toDispatch(); Dispatch presentation = Dispatch.call(presentations, 『Add』,                                                                     new Variant(true)).toDispatch(); //  取用一個Template file Dispatch.call(presentation, 『ApplyTemplate』, 『Template filePathName『); Dispatch slides = Dispatch.get(presentation, 『Slides』).toDispatch(); Dispatch slide = Dispatch.call(slides, 『Add』, 『1&#8243;, 『11&#8243;).toDispatch(); Dispatch shapes = Dispatch.call(slide, 『Shapes』).toDispatch(); Variant shape1 = Dispatch.callN(shapes, 『AddPicture』,                                              new Variant[] {new Variant(『圖檔pathfile』),  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heavenenn.wordpress.com&amp;blog=2532013&amp;post=3&amp;subd=heavenenn&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>ActiveXComponent axc = new ActiveXComponent(『PowerPoint.Application』);<br />
<font color="#339966">// 以下process是否可見</font><br />
axc.setProperty(『Visible』, new Variant(true));<br />
Dispatch presentations = axc.getProperty(『Presentations』).toDispatch();<br />
Dispatch presentation = Dispatch.call(presentations, 『Add』, <br />
                                                                   new Variant(true)).toDispatch();</p>
<p><font color="#339966">//  取用一個Template file</font><br />
Dispatch.call(presentation, 『ApplyTemplate』, 『<font color="#000000">Template filePathName</font>『);<br />
Dispatch slides = Dispatch.get(presentation, 『Slides』).toDispatch();<br />
Dispatch slide = Dispatch.call(slides, 『Add』, 『1&#8243;, 『11&#8243;).toDispatch();<br />
Dispatch shapes = Dispatch.call(slide, 『Shapes』).toDispatch();<br />
Variant shape1 = Dispatch.callN(shapes, 『AddPicture』, <br />
                                            new Variant[] {new Variant(『圖檔pathfile』), <br />
                                            new Variant(false), new Variant(是否以連結方式使用該檔),<br />
                                            new Variant(Left座標), new Variant(Top座標), <br />
                                            new Variant(寛度), new Variant(高度) });</p>
<p>Dispatch documentWindow  = axc.getProperty(『ActiveWindow』).toDispatch();<br />
Dispatch view = documentWindow.call(documentWindow,』View』).toDispatch();<br />
view.put(view,』Zoom』,new Variant(83));</p>
<p>Dispatch shape = Dispatch.call(slide, 『Shapes』, new Variant(1)).toDispatch();<br />
String shapeName1 = Dispatch.get(shape,』Name』).toString();<br />
        <br />
Dispatch shape2 = Dispatch.call(slide, 『Shapes』, new Variant(2)).toDispatch();<br />
String shapeName2 = Dispatch.get(shape2,』Name』).toString();<br />
String type = Dispatch.get(shape2, 『Type』).toString();</p>
<p>Dispatch.callN(shape2, 『ScaleHeight』, new Variant[] {<br />
                                                                                               new Variant(1), <br />
                                                                                               new Variant(true), <br />
                                                                                               new Variant(0)});<br />
       <br />
Dispatch.callN(shape2, 『ScaleWidth』, new Variant[] {<br />
                                                                                               new Variant(1), <br />
                                                                                               new Variant(true), <br />
                                                                                               new Variant(0)});</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/heavenenn.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/heavenenn.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heavenenn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heavenenn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heavenenn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heavenenn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heavenenn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heavenenn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heavenenn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heavenenn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heavenenn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heavenenn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heavenenn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heavenenn.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heavenenn.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heavenenn.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heavenenn.wordpress.com&amp;blog=2532013&amp;post=3&amp;subd=heavenenn&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heavenenn.wordpress.com/2008/01/17/jacob-%e6%96%bcpowerpoint%e4%b8%ad%e6%94%be%e7%bd%ae%e4%b8%80%e5%bc%b5%e5%9c%96/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/705a2762b994c832916badb81853e7d0?s=96&#38;d=identicon" medium="image">
			<media:title type="html">heavenenn</media:title>
		</media:content>
	</item>
	</channel>
</rss>
