<?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>JActionScripters &#187; Download</title>
	<atom:link href="http://blog.jactionscripters.com/tag/download/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jactionscripters.com</link>
	<description>More than 20 Japanese flash coders share the blog/ You will be junkie for this crazy Japanese Flash news</description>
	<lastBuildDate>Sun, 20 Jun 2010 10:03:26 +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>Jikkyo Generator and Youtube API</title>
		<link>http://blog.jactionscripters.com/2009/06/25/jikkyo-generator-and-youtube-api/</link>
		<comments>http://blog.jactionscripters.com/2009/06/25/jikkyo-generator-and-youtube-api/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 07:33:19 +0000</pubDate>
		<dc:creator>bA</dc:creator>
				<category><![CDATA[Showcase]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Download]]></category>

		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=741</guid>
		<description><![CDATA[
Hi, my name is Yasuhiko Nishimura and I am an interactive designer at Business Architects.
The Jikkyo Generator 2010 website build by us went live in May. 
The previous  version Jikkyo Generator 2008 was integrated with eyeVio for the videos but to enable more users to enjoy the website the new release features integration with [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/06/capture.png" alt="Jikkyo Generator 2010" title="Jikkyo Generator 2010" width="640" height="396" class="alignnone size-full wp-image-742" /></p>
<p>Hi, my name is <a href="http://twitter.com/yasnis">Yasuhiko Nishimura</a> and I am an interactive designer at <a href="http://www.b-architects.com/">Business Architects</a>.<br />
The <a href="http://www.projectblue.sony.jp/jikkyo/">Jikkyo Generator 2010</a> website build by us went live in May. </p>
<p>The previous  version Jikkyo Generator 2008 was integrated with <a href="http://eyevio.jp/">eyeVio</a> for the videos but to enable more users to enjoy the website the new release features integration with <a href="http:///www.youtube.com/">YouTube</a>. </p>
<p>In this entry I will explain a bit more about the integration with the YouTube API.<br />
(This entry will be about AS2)</p>
<p><span id="more-741"></span></p>
<p><strong>0.Prepare to use the YouTube API.</strong></p>
<p>YouTube allows the use of the Data API or the Player API, however for a full Flash based site like this one you need to use the <a href="http://code.google.com/intl/en/apis/youtube/flash_api_reference.html">chromeless player</a> which allows you to create your own player. Also you need to have developer key to use the YouTube API.<br />
To get your developer key register at the following url: <a href="http://code.google.com/apis/youtube/dashboard/">http://code.google.com/apis/youtube/dashboard/</a></p>
<p><strong>1.Classes to use</strong></p>
<p>Source Code: <a href="http://www.b-architects.com/lab/YTPlayer_sample.zip">download from here</a>.<br />
(The sources comments are written in Japanese language)</p>
<p>The following 3 classes are used.</p>
<dl style="padding-left:2em;">
<dt><span style="font-family:monospace;color:#000;">com.b_architects.lab.youtube.YTPlayer</span></dt>
<dd style="text-indent:2em;">This class load the chromeless player.</dd>
<dt><span style="font-family:monospace;color:#000;">com.b_architects.lab.youtube.YTData</span></dt>
<dd style="text-indent:2em;">This class receives and manages the information abou the video from the Data API</dd>
<dt><span style="font-family:monospace;color:#000;">com.b_architects.lab.youtube.YTConstant</span></dt>
<dd style="text-indent:2em;">This contants class holds the developer key and other YouTube related  parameters.</dd>
</dl>
<p></p>
<p>Inside the <span style="font-family:monospace;color:#000;">YTConstant.as</span> the following need to be registered<br />
<span style="font-family:monospace;color:#000;">PRODUCT_NAME,CLIENT_ID,DEVELOPER_KEY</span><br />
(You can also initialize these at execution time without rewriting the sourcecode)</p>
<p><strong>2.Create and initialize the player</strong></p>
<p>To create a player execute the following command:</p>
<p><code-style>
<pre name="code" class="as3">
    YTPlayer.getPlayer(target:MovieClip);
</pre>
<p></code-style></p>
<p><span style="font-family:monospace;color:#000;">target</span> here is the <span style="font-family:monospace;color:#000;">MovieClip</span> instance which creates the player. First create an empty <span style="font-family:monospace;color:#000;">MovieClip</span> instance and the replace the <span style="font-family:monospace;color:#000;">__proto__</span> property with <span style="font-family:monospace;color:#000;">YTPlayer.prototype</span>. By doing so, you create an instance of the <span style="font-family:monospace;color:#000;">YTPlayer</span> from script without having to create linkage from the library. (You can also do this by setting up a linkage to the <span style="font-family:monospace;color:#000;">MovieClip</span> symbol from the library) </p>
<p>The <span style="font-family:monospace;color:#000;">YTPlayer</span> is embedding the chromeless player from the YouTube servers and might take some time to load.<br />
Once the player is loaded and ready to be used the <span style="font-family:monospace;color:#000;">YTPlayer.EVENT_PLAYER_READY</span> event is issued.</p>
<p>the actual code look like:</p>
<p><code-style>
<pre name="code" class="as3">
    import com.b_architects.lab.youtube.YTPlayer;
    var player:YTPlayer = YTPlayer.getPlayer(this);
    player.addEventListener(YTPlayer.EVENT_PLAYER_READY,onPlayerReady);
    function onPlayerReady(e:Object) {
        //The process for once the initialization is finished
    }
</pre>
<p></code-style></p>
<p>and the player is ready.</p>
<p><strong>3. Control and playback the video</strong></p>
<p>To playback the video execute the following code:</p>
<p><code-style>
<pre name="code" class="as3">
    player.loadVideoById("2L0nGWDPt6A");
</pre>
<p></code-style><br />
this exectution load the video based on the ID passed on the the <span style="font-family:monospace;color:#000;">loadVideoById</span>.</p>
<p>For other video controls reference the following url: <a href="http://code.google.com/intl/en/apis/youtube/flash_api_reference.html#Operations">http://code.google.com/intl/en/apis/youtube/flash_api_reference.html#Operations</a></p>
<p>The <span style="font-family:monospace;color:#000;">YTPlayer</span> implements the chromeless player's methods under the same method name.</p>
<p><strong>4. Load Youtube data</strong></p>
<p>By using the <span style="font-family:monospace;color:#000;">YTData</span> class you can check wether the video for that ID exists, if you can use the API or not, thumbnail path and other usefull information for creating the site. When passing the ID with the String to the constructor the data gets initialized. Once the initialization is done the <span style="font-family:monospace;color:#000;">YTData.VIDEO_CHECK</span> event is issued.</p>
<p>The basic usage is:<br />
<code-style>
<pre name="code" class="as3">
    import com.b_architects.lab.youtube.YTData;
    var data:YTData = new YTData("http://www.youtube.com/watch?v=2L0nGWDPt6A");
    data.addEventListener(YTData.VIDEO_CHECK,onChecked);
    function onChecked(e:Object):Void {
        trace(e.target.id);
    }
</pre>
<p></code-style></p>
<p><strong>5. Conclusion</strong></p>
<p>As stated above this is a general overview on how to use the YouTube API.<br />
The Jikkyo Generator website uses the concepts stated above as its core and has additional features such as playback control, adding narations and other playback functions. The YouTube API has been altered over the years and it can easily change again soon.<br />
When that change occures hopefully changes required on the website will be minimal because the API part stands alone from the website. </p>
<p>Although creating what we have created is not difficult it can be cumbersome and I hope by sharing this information it might benefit others.<br />
If you have a chance, try this out.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jactionscripters.com/2009/06/25/jikkyo-generator-and-youtube-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fractal Study02</title>
		<link>http://blog.jactionscripters.com/2009/05/19/fractal-study02/</link>
		<comments>http://blog.jactionscripters.com/2009/05/19/fractal-study02/#comments</comments>
		<pubDate>Tue, 19 May 2009 10:16:35 +0000</pubDate>
		<dc:creator>Takayuki Fukatsu</dc:creator>
				<category><![CDATA[VisualSketch]]></category>
		<category><![CDATA[Download]]></category>

		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=436</guid>
		<description><![CDATA[
Another fractal visual sketches. Now I&#8217;m cleaning up the code.
May upload moving demo later.
Soucr Code: fladdict_fractalrectangle2.zip






]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect2-0.png" alt="fractalrect2-0" title="fractalrect2-0" width="640" height="480" class="alignnone size-full wp-image-437" /></p>
<p>Another fractal visual sketches. Now I&#8217;m cleaning up the code.<br />
May upload moving demo later.</p>
<p>Soucr Code: <a href='http://blog.jactionscripters.com/wp-content/uploads/2009/05/fladdict_fractalrectangle2.zip'>fladdict_fractalrectangle2.zip</a></p>
<p><span id="more-436"></span></p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect2-1.png" alt="fractalrect2-1" title="fractalrect2-1" width="640" height="480" class="alignnone size-full wp-image-440" /></p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect2-2.png" alt="fractalrect2-2" title="fractalrect2-2" width="640" height="480" class="alignnone size-full wp-image-443" /></p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect2-3.png" alt="fractalrect2-3" title="fractalrect2-3" width="640" height="480" class="alignnone size-full wp-image-444" /></p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect2-5.png" alt="fractalrect2-5" title="fractalrect2-5" width="640" height="480" class="alignnone size-full wp-image-447" /></p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect2-6.png" alt="fractalrect2-6" title="fractalrect2-6" width="640" height="480" class="alignnone size-full wp-image-448" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jactionscripters.com/2009/05/19/fractal-study02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Study &#8211; Recreating LCD Panels / Trinitron Like Matrices</title>
		<link>http://blog.jactionscripters.com/2009/05/18/study-recreating-lcd-panels-trinitron-like-matrices/</link>
		<comments>http://blog.jactionscripters.com/2009/05/18/study-recreating-lcd-panels-trinitron-like-matrices/#comments</comments>
		<pubDate>Mon, 18 May 2009 14:57:10 +0000</pubDate>
		<dc:creator>Jin Saburi</dc:creator>
				<category><![CDATA[VisualSketch]]></category>
		<category><![CDATA[Download]]></category>

		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=220</guid>
		<description><![CDATA[For a while, I have been coding a study to recreate a real-time movie player that will show the video in a more retro-tech experience.

This is my Cinema Display enlarged &#8230; see the RGB pixels all lined up ?
Here is what I mean.
(You can click on the movie to make it fullscreen)

No source video in [...]]]></description>
			<content:encoded><![CDATA[<p>For a while, I have been coding a study to recreate a real-time movie player that will show the video in a more retro-tech experience.</p>
<p><img src="http://jactionscripters.com/files/saburicom/rgb_player/rgb_player.jpg" alt="Close-up image of a Cinema Display" /><br />
This is my Cinema Display enlarged &#8230; see the RGB pixels all lined up ?</p>
<p><a href="http://jactionscripters.com/files/saburicom/rgb_player/flv_player/" target="_blank">Here is what I mean.</a><br />
(You can click on the movie to make it fullscreen)<br />
<span id="more-220"></span><br />
<a href="http://jactionscripters.com/files/saburicom/rgb_player/flv_player/nopip.html" target="_blank">No source video in center version</a></p>
<p><a href="http://jactionscripters.com/files/saburicom/rgb_player/cam_test/" target="_blank">Your camera (such as iSight) as a video source</a></p>
<p><a href="http://jactionscripters.com/files/saburicom/rgb_player/mc_test/" target="_blank">An interactive MovieClip as a source</a><br />
(Scrub the movie with your mouse from left to right, vice versa)</p>
<p>You can click on the movie in any sample to make it fullscreen.</p>
<p><img src="http://jactionscripters.com/files/saburicom/rgb_player/rgb_matrix.jpg" alt="How to line up your RGBs" /><br />
The fun part is always research.<br />
I found out that there are lots of ways to line up the RGB components, and all of them had their pros and cons. My display uses the left, straight line-up, but I used the right, shifted version to make the videos look better at this type of low-rez visualization. Of course, the text is horrible.</p>
<p>The problem was, I started my experiments with Flash CS3 and AS2.0, and the best I could do was 4 seconds to setup the RGB version of the pixels, and another 4 to color them &#8211; per frame !!<br />
This is just out of the question. This was for a image that was 400&#215;300 pixels in size.</p>
<p>So, I revised my project to AS3.0/FP9, and though I had to make the movie size smaller to a minimal 80&#215;60 pixels, the AS3.0 version is running smoothly on a MacBook Air 1.6GHz (the first MBA), and I&#8217;m happy ;D</p>
<p>Now, with AS3.0/FP10 on Flash CS4, with the same code, same hardware, the movie is working with a final output of 800&#215;600px@30FPS, with the master movie at 160&#215;120. </p>
<p>It should be much more faster with Pixel Bender shading, or a more bitmap approach, but the present status is very <i>usable</i> for a project.</p>
<p>Forgive me, as the .as file is not coded as a class, but this is just a study, and I am not that fluent as a programmer.</p>
<p>How to use :<br />
Within SaburiRGBPlayer.as, the 19th line -<br />
<code-style>
<pre name="code" class="as3">
var myMode:int=0;//0:cam 1:flv 2:mc
var setPinP:Boolean=false;
</pre>
<p></code-style><br />
You can set <i>myMode</i> to set the source of the RGB video to your Camera, FLVs, or a MovieClip.<br />
The download defaults to a camera.<i>setPinP</i> shows the source video in the center.<br />
If you choose FLV mode, set the array in line 30 to the filenames, and set the array in line 31 to change the volume of audio.<br />
<code-style>
<pre name="code" class="as3">
var myFilenameArray:Array=["ipod.flv","ipod2.flv","ipod3.flv","ipod4.flv","ipod5.flv","ipod_nano.flv","ipod_nano_laser.flv"];
var myVolumeArray:Array=[1,0.3,1,1,1,1,1];
</pre>
<p></code-style></p>
<p>Here are the files : <a href="http://jactionscripters.com/files/saburicom/rgb_player/SaburiRGBPlayer.zip">SaburiRGBPlayer.zip (24KB)</a></p>
<p>iPod ADs always rock. Just love them all.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jactionscripters.com/2009/05/18/study-recreating-lcd-panels-trinitron-like-matrices/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>TiltShift Generator &#8211; AIR app</title>
		<link>http://blog.jactionscripters.com/2009/05/18/tiltshift-generator-air-app/</link>
		<comments>http://blog.jactionscripters.com/2009/05/18/tiltshift-generator-air-app/#comments</comments>
		<pubDate>Mon, 18 May 2009 06:00:23 +0000</pubDate>
		<dc:creator>Takayuki Fukatsu</dc:creator>
				<category><![CDATA[Showcase]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=189</guid>
		<description><![CDATA[
Recently I launched a free web service / AIR application that&#8217;s called TiltShift Generator.This is a simple image manipulation app. Using this app, you can add miniature or vintage like effect to your photo on the fly.
Basically I made this application for a study of my next iPhone camera application that follows my app called [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.artandmobile.com/tiltshift/"><img class="alignnone size-full wp-image-191" title="tiltshift-generator" src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/tiltshift-generator.jpg" alt="tiltshift-generator" width="640" height="360" /></a></p>
<p>Recently I launched a free web service / AIR application that&#8217;s called <a href="http://labs.artandmobile.com/tiltshift/">TiltShift Generator</a>.This is a simple image manipulation app. Using this app, you can add miniature or vintage like effect to your photo on the fly.</p>
<p>Basically I made this application for a study of my next iPhone camera application that follows my app called ToyCamera, and QuadCamera.</p>
<p>Some people already introduced it, and thanks for an unbelievable more than <a href="http://delicious.com/url/66f63e9bf1972ae6b42fee8f2b3ec447">700 del.icio.us bookmarks</a>! If people want, I might make an iPhone version as well, so catch me on the twitter if you have any ideas.</p>
<p><span id="more-189"></span><br />
<img class="alignnone size-full wp-image-195" title="tiltshift-generator2" src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/tiltshift-generator2.jpg" alt="tiltshift-generator2" width="640" height="851" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jactionscripters.com/2009/05/18/tiltshift-generator-air-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WP-Al-SWFObject was launched.</title>
		<link>http://blog.jactionscripters.com/2009/05/18/wp-al-swfobject-was-launched/</link>
		<comments>http://blog.jactionscripters.com/2009/05/18/wp-al-swfobject-was-launched/#comments</comments>
		<pubDate>Sun, 17 May 2009 18:16:26 +0000</pubDate>
		<dc:creator>Yukiya Okuda</dc:creator>
				<category><![CDATA[Library]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[Spark]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=333</guid>
		<description><![CDATA[For Flash users all over the world, I made a powerful plug-in for embedding swf on WordPress. If this plug-in is installed, swf with more detailed parameters can be displayed more easily.
- Download
WP-Al-SWFObject v2.0
- How to use
Describe the following codes at the position in which you want to embed swf.
[embedSWF]swf, width, height, align, version, expressInstall, [...]]]></description>
			<content:encoded><![CDATA[<p>For Flash users all over the world, I made a powerful plug-in for embedding swf on WordPress. If this plug-in is installed, swf with more detailed parameters can be displayed more easily.</p>
<p><strong>- Download</strong><br />
<a href="http://www.libspark.org/svn/wordpress/WP-Al-SWFObject/tags/v2.0/wp-al-swfobject_en.zip">WP-Al-SWFObject v2.0</a></p>
<p><strong>- How to use</strong><br />
Describe the following codes at the position in which you want to embed swf.</p>
<p><code>[embedSWF]swf, width, height, align, version, expressInstall, flashvars, params, attributes[ /embedSWF]</code></p>
<p>Some parameters can be omitted. For example,</p>
<p><code>[embedSWF]hoge.swf[/embedSWF]</code><br />
<code>[embedSWF]hoge.swf, 200, 100[/embedSWF]</code><br />
<code>[embedSWF]hoge.swf, 200, 100, right,,,{aaa:"10"}[/embedSWF]</code><br />
<code>[embedSWF]hoge.swf, 200, 100,,,,{},{},{id:"sample", name:"sample"}[/embedSWF]</code><br />
<code>[embedSWF]hoge.swf, 400, 360, center, 9.0.0, http://hogehoge.jp/alt.swf, {aaa:"10"}, {menu:"false", allowScriptAccess:"always"}, {id:"sample", name:"sample"}[/embedSWF]</code></p>
<p><strong>- Control panel</strong><br />
In addition, the default value of each parameter can be set from the plug-in Control panel easily.<br />
The default value is applied to all swf embedded by WP-Al-SWFObject.</p>
<p><strong>- More Information</strong><br />
<a href="http://blog.alumican.net/2009/05/18_005204">http://blog.alumican.net/2009/05/18_005204</a></p>
<p>This plug-in has been updated on <a href="http://www.libspark.org/wiki/alumican/WP-Al-SWFObject">Spark Project</a>.</p>
<p>Thanks. <img src='http://blog.jactionscripters.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jactionscripters.com/2009/05/18/wp-al-swfobject-was-launched/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fractal Study01</title>
		<link>http://blog.jactionscripters.com/2009/05/17/fractal-study01/</link>
		<comments>http://blog.jactionscripters.com/2009/05/17/fractal-study01/#comments</comments>
		<pubDate>Sun, 17 May 2009 14:04:24 +0000</pubDate>
		<dc:creator>Takayuki Fukatsu</dc:creator>
				<category><![CDATA[VisualSketch]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Fractal]]></category>

		<guid isPermaLink="false">http://blog.jactionscripters.com/?p=243</guid>
		<description><![CDATA[
Visual sketch for fractal tessellation.
This is a start point for my fractal study.
SouceCode: fladdict_fractalrectangle.zip


With random fill color and border line.

Without border line.

I think this no margin version is too dirty.

Now rect size affects brightness of the border.

Now rect size affect margin of the region.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fladdict_fractalrect1.jpg" alt="fladdict_fractalrect1" title="fladdict_fractalrect1" width="640" height="480" class="alignnone size-full wp-image-244" /></p>
<p>Visual sketch for fractal tessellation.<br />
This is a start point for my fractal study.</p>
<p>SouceCode: <a href='http://blog.jactionscripters.com/wp-content/uploads/2009/05/fladdict_fractalrectangle.zip'>fladdict_fractalrectangle.zip</a></p>
<p><span id="more-243"></span></p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect1-1.jpg" alt="fractalrect1-1" title="fractalrect1-1" width="640" height="480" class="alignnone size-full wp-image-259" /><br />
With random fill color and border line.</p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect1-2.jpg" alt="fractalrect1-2" title="fractalrect1-2" width="640" height="480" class="alignnone size-full wp-image-262" /><br />
Without border line.</p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect1-3.jpg" alt="fractalrect1-3" title="fractalrect1-3" width="640" height="480" class="alignnone size-full wp-image-265" /><br />
I think this no margin version is too dirty.</p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect1-4.jpg" alt="fractalrect1-4" title="fractalrect1-4" width="640" height="480" class="alignnone size-full wp-image-268" /><br />
Now rect size affects brightness of the border.</p>
<p><img src="http://blog.jactionscripters.com/wp-content/uploads/2009/05/fractalrect1-5.png" alt="fractalrect1-5" title="fractalrect1-5" width="640" height="480" class="alignnone size-full wp-image-271" /><br />
Now rect size affect margin of the region.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jactionscripters.com/2009/05/17/fractal-study01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
