<?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>neatFilm.com &#187; General</title>
	<atom:link href="http://www.neatfilm.com/category/other/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neatfilm.com</link>
	<description></description>
	<lastBuildDate>Sun, 16 Oct 2011 05:21:01 +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>Apollo New Explanation</title>
		<link>http://www.neatfilm.com/2006/07/18/apollo-new-explanation/</link>
		<comments>http://www.neatfilm.com/2006/07/18/apollo-new-explanation/#comments</comments>
		<pubDate>Tue, 18 Jul 2006 10:37:32 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=32</guid>
		<description><![CDATA[Mike Chambers posted a new release of Apollo FAQ in labs.Apollo API: We will be releasing a set of command line tools for Apollo that will make it easy for developers to do Apollo application packaging and development via their favorite IDE or editor. You may need to write additional code to take advantage of [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">Mike Chambers posted a new release of <a href="http://labs.adobe.com/wiki/index.php/Apollo:developerfaq">Apollo FAQ</a> in labs.<strong>Apollo API</strong>:
<ul>
    <li>We will be releasing a set of command line tools for Apollo that will make it easy for developers to do Apollo application packaging and development via their favorite IDE or editor.
You may need to write additional code to take advantage of Apollo specific APIs.
File I/O, Online / Offline, Windowing, Clipboard, System Drag and Drop, Full Network API support, Local Storage / Settings</li>
</ul>
<ul></ul>
<ul></ul>
<blockquote></blockquote>
<div></div>
<ul>
    <li>The Apollo APIs are only exposed to Flash content via ActionScript 3 / AVM2, and thus Flash 8 / AVM1 SWFs will be able to run, but they will not have direct access to the Apollo APIs.</li>
</ul>
<blockquote>
<div></div>
</blockquote>
Iâ€™m happy to know Apollo will have its own API, thus it wouldnâ€™t be a simple yet-another-browser I thought before.

<strong>Security model</strong>:
<ul>
    <li>Provide a more standardized and consistent security model for Apollo applications and users.</li>
</ul>
<strong>Inter-Apollo protocol</strong>:
<ul>
    <li>We will be implementing an Inter-Application Communication (IAC) protocol to make it easy for Apollo applications to communicate with each other.</li>
</ul>
Distribution:
<ul>
    <li>Download from the Adobe website</li>
    <li>Distributed with Apollo applications (in case the user does not have Apollo installed).</li>
</ul>
Database connection:
<ul>
    <li>It will be possible to write Database drivers in ActionScript (leveraging binary or XML sockets), which would allow Apollo applications to communicate directly with a database (both local and remote).</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2006/07/18/apollo-new-explanation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jeff Vroom: Interview about Adobe Flex Data Server</title>
		<link>http://www.neatfilm.com/2006/06/21/jeff-vroom-interview-about-adobe-flex-data-server/</link>
		<comments>http://www.neatfilm.com/2006/06/21/jeff-vroom-interview-about-adobe-flex-data-server/#comments</comments>
		<pubDate>Wed, 21 Jun 2006 10:25:56 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=30</guid>
		<description><![CDATA[Jeff Vroom is the Principal Scientist in Flex Data Services Team. The interview presentation is here. The other thing that Flex Data Services provide is the data management facility, which is a declarative persistence framework that lets you serialize graphs of objects to the client and then it detects changes automatically as you modify those [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">Jeff Vroom is the Principal Scientist in Flex Data Services Team. The interview presentation is <a target="_blank" href="http://event.on24.com/eventRegistration/EventLobbyServlet?target=lobby.jsp&#038;eventid=24434&#038;sessionid=1&#038;partnerref=atssc_sitepost_06_21_06&#038;key=8D74DE16839185556BA37C196F873F4C&#038;eventuserid=6960889">here</a>.
<blockquote>The other thing that Flex Data Services provide is the data management facility, which is a declarative persistence framework that lets you serialize graphs of objects to the client and then it detects changes automatically as you modify those objects, builds up a set of change lists and when you commit your changes, those changes are sent to the server where we do conflict detection. If there are no conflicts and the server can accept the changes and it pushes the data out to the other clients, which are looking at the same data sets. So, this kind of eliminates a lot of glue code that you need when building kind of thick client-based applications.

<strong>In Flex we actually support two protocols. There is HTTP and RTMP</strong>. The HTTP of course now is a one-way protocol where the client always initiates the call so for that we do use a polling mechanism. With RTMP, itâ€™s a protocol that has been used by the Flash Player for quite a while to do audio, video and data synchronization and it provides a persistent socket that the client keeps open with the server, to analyze the server it just naturally push messages to the client in real time. Flex Data Services provides an abstraction layer, so the client does not really need to know, which protocol is he using and it actually fails over from one to the other, so that technique actually makes it easy <strong>to build applications that support push even when the user might be applying a firewall and canâ€™t use RTMP</strong>.

Flex does support <strong>clustering</strong> technology very well and when you are starting to deal with client-to-client connectivity, the issues involved include being able to have one client connected to one cluster server be able to push messages to clients that are connected to other servers. So we have technology so that last cluster remembers to exchange messages and push them out to the peers. With the data management services there are also challenges in being able to detect what clients are asked first. Caching certain versions of the data is when one client changes the data, the other clients that are connected to other servers also see those changes and we also support that well. So, the Flex technology should scale pretty well even for the the largest enterprise applications.</blockquote>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2006/06/21/jeff-vroom-interview-about-adobe-flex-data-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo! Map plus GPS</title>
		<link>http://www.neatfilm.com/2006/06/12/yahoo-map-plus-gps/</link>
		<comments>http://www.neatfilm.com/2006/06/12/yahoo-map-plus-gps/#comments</comments>
		<pubDate>Mon, 12 Jun 2006 10:21:40 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=29</guid>
		<description><![CDATA[A full size version of Yahoo! Map plus GPS (Trip review map for tourist) now available. Have a look:map.igps.ca Usage: 1. GPS &#8211; example &#8211; apply 2. Track, the real track of GPS receiver records 3. Altitude, altitude chart of records 4. Position, you could check latitude/longitude of all points in the world. 5. Your [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">A full size version of Yahoo! Map plus GPS (Trip review map for tourist) now available. Have a look:<a href="http://map.igps.ca/">map.igps.ca</a>

Usage:
<blockquote>1. GPS &#8211; example &#8211; apply
2. Track, the real track of GPS receiver records
3. Altitude, altitude chart of records
4. Position, you could check latitude/longitude of all points in the world.
5. Your own GPS receiver? Get your track out, then copy &#038; paste.</blockquote>
The example data is the original track which I recorded in April 15, 2006, with a Garmin eTrex Vista. To test your own GPS data, simply copy &#038; paste and submit to see what happen.

<img src="http://www.neatfilm.com/post_images/06Jun/yahoomap.jpg" />
There&#8217;s three points in altitude data this example are invalid number so they&#8217;re shown in Altitude chart the same number as closet point.

If you have any questions, leave your message here.

Update: unfortunately Yahoo! changed their policy to limit GPS usage in most of case. So I wouldnâ€™t think I will digg it more until necessary.

Now time for me on Flex 2!</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2006/06/12/yahoo-map-plus-gps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Player 9 coming this summer</title>
		<link>http://www.neatfilm.com/2006/04/21/flash-player-9-coming-this-summer/</link>
		<comments>http://www.neatfilm.com/2006/04/21/flash-player-9-coming-this-summer/#comments</comments>
		<pubDate>Fri, 21 Apr 2006 10:18:21 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=28</guid>
		<description><![CDATA[Adobe Flash Player product manager Emmy Huang announced today itâ€™s now Flash player 9! The features of this release include the ECMAScript Edition 4-based ActionScript 3.0 language and a new ActionScript Virtual Machine (AVM2), which dramatically exceeds the performance of previous players. Flash Player 9 is expected to ship with the Flex 2.0 launch this [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">Adobe Flash Player product manager <a target="_blank" href="http://weblogs.macromedia.com/emmy/archives/2006/04/flash_player_85_1.cfm">Emmy Huang</a> announced today itâ€™s now Flash player 9!
<blockquote>The features of this release include the ECMAScript Edition 4-based ActionScript 3.0 language and a new ActionScript Virtual Machine (AVM2), which dramatically exceeds the performance of previous players.
Flash Player 9 is expected to ship with the Flex 2.0 launch this summer.
We expect to release an ActionScript 3.0 preview release (public alpha) of the next release of the Flash authoring tool, <strong>code-named â€œBLAZEâ€, on Adobe Labs around the time of the Flash Player 9 launch</strong>.</blockquote>
Itâ€™s clear the <strong>Flash 9 authoring tool alpha 1 will be released also this summer</strong>. By the way, in fact Flash player 8.5 when first time it released (alpha-1), it SWF file inside was named as Flash 9 format already.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2006/04/21/flash-player-9-coming-this-summer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Adobe-owned Macromedia Flash</title>
		<link>http://www.neatfilm.com/2005/12/05/the-adobe-owned-macromedia-flash/</link>
		<comments>http://www.neatfilm.com/2005/12/05/the-adobe-owned-macromedia-flash/#comments</comments>
		<pubDate>Mon, 05 Dec 2005 10:00:54 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=21</guid>
		<description><![CDATA[Macromedia and Adobe are now one. Itâ€™s definitely a big news for community of Macromedia. So what happen then? The Macromedia corporate brand immediately retired. Adobeâ€™s six business The Creative Solutions Business Unit Adobe PhotoshopÂ®, Adobe InDesignÂ®, Macromedia DreamweaverÂ®, Macromedia FlashÂ®, Adobe PremiereÂ® Pro, and Adobe After EffectsÂ® The Enterprise and Developer Solutions Business Unit [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">Macromedia and Adobe are now one. Itâ€™s definitely a big news for community of Macromedia. So what happen then?

The Macromedia corporate brand immediately retired.

<strong>Adobeâ€™s six business</strong>
<ul>
    <li><strong>The Creative Solutions Business Unit </strong>
Adobe PhotoshopÂ®, Adobe InDesignÂ®, Macromedia DreamweaverÂ®, Macromedia FlashÂ®, Adobe PremiereÂ® Pro, and Adobe After EffectsÂ®</li>
    <li><strong>The Enterprise and Developer Solutions Business Unit</strong>
Adobe LiveCycleâ„¢ and the Macromedia Flexâ„¢ .
David Mendels (former MM executive VP/GM)</li>
    <li><strong>The Knowledge Worker Solutions Business Unit</strong>
Adobe AcrobatÂ® and Macromedia BreezeÂ®
Tom Hale (former MM SVP/GM)</li>
    <li><strong>The Mobile and Device Solutions Business Unit </strong>
Macromedia Flash Liteâ„¢ and Macromedia FlashCastâ„¢.
Al Ramadan (former MM EVP/GM of mobile and devices)</li>
    <li><strong>The Platform Business Unit</strong>
Adobeâ€™s PDF and Flash-based technology platforms as standards to any desktop or device.
Kevin Lynch (formerMM EVP and chief software architect)</li>
    <li><strong>The Print and Classic Publishing Solutions Business Unit</strong>
Adobe FrameMakerÂ®, Adobe PageMakerÂ®, Macromedia Contributeâ„¢, and Macromedia Captivateâ„¢.</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2005/12/05/the-adobe-owned-macromedia-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shared object</title>
		<link>http://www.neatfilm.com/2005/09/29/shared-object/</link>
		<comments>http://www.neatfilm.com/2005/09/29/shared-object/#comments</comments>
		<pubDate>Thu, 29 Sep 2005 08:59:02 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=9</guid>
		<description><![CDATA[Working on some more complex shared objects these days. Sep28-29 night. I found when create a new SOâ€™s data have to initial with empty [] first. If not, no attributes could be assigned values. Sep 29. The default SO file is in binary but can read easily with binary editor, as if ascii text. Let [...]]]></description>
			<content:encoded><![CDATA[<p>Working on some more complex shared objects these days.</p>

<p>Sep28-29 night.
I found when create a new SOâ€™s <strong>data</strong> have to initial with empty <strong>[]</strong> first. If not, no attributes could be assigned values.</p>

<p>Sep 29.
The default SO file is in binary but can read easily with binary editor, as if ascii text. Let me try secure mode SO.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2005/09/29/shared-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disk storage size limitation.</title>
		<link>http://www.neatfilm.com/2005/09/27/disk-storage-size-limitation/</link>
		<comments>http://www.neatfilm.com/2005/09/27/disk-storage-size-limitation/#comments</comments>
		<pubDate>Tue, 27 Sep 2005 09:06:26 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=10</guid>
		<description><![CDATA[Disk space is conserved through limits automatically set by Flash Player (the default is 100K of disk space for each domain). Capabilities exist for the author to include the ability for the Flash application to prompt the user for more, or Flash Player automatically prompts the user if an attempt is made to store data [...]]]></description>
			<content:encoded><![CDATA[<p>Disk space is conserved through limits automatically set by Flash Player (the default is 100K of disk space for each domain). Capabilities exist for the author to include the ability for the Flash application to prompt the user for more, or Flash Player automatically prompts the user if an attempt is made to store data that exceeds the limit. In either case, the disk space limit is enforced by Flash Player until the user gives explicit permission for an increased allotment for that domain.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2005/09/27/disk-storage-size-limitation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MD5 Code</title>
		<link>http://www.neatfilm.com/2005/09/15/md5-code/</link>
		<comments>http://www.neatfilm.com/2005/09/15/md5-code/#comments</comments>
		<pubDate>Thu, 15 Sep 2005 09:15:22 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=12</guid>
		<description><![CDATA[ActionScript class: http://www.secureplay.com/product-docs/MD5-Message-Digest.htm Java Script: http://pajhome.org.uk/crypt/md5/md5src.html More: http://userpages.umbc.edu/~mabzug1/cs/md5/md5.html RSA: http://www.rsasecurity.com/rsalabs/node.asp?id=2253]]></description>
			<content:encoded><![CDATA[<div class="entry">ActionScript class:
<a href="http://www.secureplay.com/product-docs/MD5-Message-Digest.htm">http://www.secureplay.com/product-docs/MD5-Message-Digest.htm</a>

Java Script:
<a href="http://pajhome.org.uk/crypt/md5/md5src.html">http://pajhome.org.uk/crypt/md5/md5src.html</a>

More:
<a href="http://userpages.umbc.edu/%7Emabzug1/cs/md5/md5.html">http://userpages.umbc.edu/~mabzug1/cs/md5/md5.html</a>

RSA:
<a href="http://www.rsasecurity.com/rsalabs/node.asp?id=2253">http://www.rsasecurity.com/rsalabs/node.asp?id=2253</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2005/09/15/md5-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Critical change of security: Local or network?</title>
		<link>http://www.neatfilm.com/2005/09/15/critical-change-of-security-local-or-network/</link>
		<comments>http://www.neatfilm.com/2005/09/15/critical-change-of-security-local-or-network/#comments</comments>
		<pubDate>Thu, 15 Sep 2005 09:07:45 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=11</guid>
		<description><![CDATA[Thereâ€™s some developer began angry with MM for they changes the rule of security, limit local access or network access only as default. But in fact, you have the options.The issue is to forbid a â€˜localâ€™ swf file when running in your system(not downloaded from the website) to send data outside. Sure itâ€™s a right [...]]]></description>
			<content:encoded><![CDATA[<p>Thereâ€™s some developer began angry with MM for they changes the rule of security, limit local access or network access only as default. But in fact, you have the options.The issue is to forbid a â€˜localâ€™ swf file when running in your system(not downloaded from the website) to send data outside. Sure itâ€™s a right policy, flash files could be developed by anyone including hackers.So what will this policy effect?</p>

<blockquote>â€ NOTE:  The restrictions that are discussed in this section do not affect SWF files that are on the Internet.â€</blockquote>

<p>Yes, it will mostly effect developerâ€™s feeling but not end user I think. Developers have to test in local, it seems not so convenience to shut the door inside and outside.</p>

<p>One thing that some helps, but not too much on this, â€ If you create the file in the Flash authoring environment (for example, when you select Control > Test Movie), your file is trusted because it is in a test environment. â€ Though if itâ€™s some big project, it almost useless.</p>

<p>So the question is, could developers access both local(inside of your OS file system) and network(outside)?</p>

<p>Fortunately but one more step, it could.</p>

<blockquote>â€œThis level of permission can be granted by the user or Flash developer in the following ways:</blockquote>

<blockquote>* Using the Global Security Settings panel in the Settings Manager.</blockquote>

<blockquote>* Using a global configuration file. â€</blockquote>

<p>The first one is not our selection, so latter â€œ<em>A configuration file can be installed with the SWF file, created by a Flash developer, or added by an administrator (for all users or the current user) or any Flash developer (for the current user)</em>.â€</p>

<p>Oooops, here it is.</p>

<p>The FlashAuthor.cfg file is located in the following approximate directories(work only during test movie with Flash 8 professional):</p>

<blockquote>Windows  boot disk / Documents and Settings / Application / Data / Macromedia Flash Player/ #Security</blockquote>

<blockquote>
</blockquote>

<blockquote>
<pre>LocalSecurityPrompt=Author</pre>
</blockquote>

<p>In the #Security directory on your hard disk, you can create a FlashPlayerTrust directory where you can store unique configuration files. Inside these files, you can specify directories or applications to trust on your hard disk. This directory does not require administrative access, so users without administrative permissions can set permissions for SWF files and test applications.</p>

<p>If you create applications that install on an end userâ€™s hard disk, you might need to create a configuration file in FlashPlayerTrust to specify a trusted directory for your application. You can create configuration files inside the FlashPlayerTrust directory that specify the location of the trusted application.</p>

<blockquote>Windows  boot disk / Documents and Settings / Application</blockquote>

<blockquote>Data / Macromedia Flash Player/#SecurityFlashPlayerTrust</blockquote>

<p><pre></pre></p>

<blockquote>I create a configuration file such as: myDevelopDir.cfg</blockquote>

<blockquote>Just add directories you want, for example:</blockquote>

<blockquote>e:flashmyflashdevelop</blockquote>

<blockquote>If you use e:flash, all swf files including sub-directories under it will be &#8216;localTrusted&#8217;.</blockquote>

<p><pre></pre></p>

<blockquote>To test SWFs communicate both with local and Internet, set publish as &#8216;network only&#8217;. Then everything ok!</blockquote>

<p>TIP: If you do not want to use configuration files, you could publish your Flash applications to a separate, testing server instead of providing clients or other developers SWF files to run on their local hard disks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2005/09/15/critical-change-of-security-local-or-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Dropshadow/Blur Filter</title>
		<link>http://www.neatfilm.com/2005/09/13/new-dropshadowblur-filter/</link>
		<comments>http://www.neatfilm.com/2005/09/13/new-dropshadowblur-filter/#comments</comments>
		<pubDate>Tue, 13 Sep 2005 09:17:51 +0000</pubDate>
		<dc:creator>george</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.neatfilm.com/?p=13</guid>
		<description><![CDATA[I tried a ball movie clip from library and add drop shadow filterwith as: this.attachMovie("ball","ball_mc",1); var myDropFilter = new flash.filters.DropShadowFilter(); var myFilters:Array = ball_mc.filters; myFilters.push(myDropFilter); ball_mc.filters = myFilters; ball_mc._x = 150; ball_mc._y =150; Then Blur Filter: this.attachMovie("ball","ball_mc",1); var blurX:Number = 30; var blurY:Number = 30; var quality:Number = 3; var myBlurFilter = new flash.filters.BlurFilter(blurX, blurY, [...]]]></description>
			<content:encoded><![CDATA[<p>I tried a ball movie clip from library and add <strong>drop shadow filter</strong>with as:
<pre>this.attachMovie("ball","ball_mc",1);
var myDropFilter = new flash.filters.DropShadowFilter();
var myFilters:Array = ball_mc.filters;
myFilters.push(myDropFilter);
ball_mc.filters = myFilters;
ball_mc._x = 150;
ball_mc._y =150;</pre>
Then <strong>Blur Filter</strong>:
<pre>this.attachMovie("ball","ball_mc",1);
var blurX:Number = 30;
var blurY:Number = 30;
var quality:Number = 3;
var myBlurFilter = new flash.filters.BlurFilter(blurX, blurY, quality);
var myFilters:Array = ball_mc.filters;
myFilters.push(myBlurFilter);
ball_mc.filters = myFilters;
ball_mc._x = 150;
ball_mc._y =150;</pre></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neatfilm.com/2005/09/13/new-dropshadowblur-filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

