<?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>cellfusion blog</title>
	<atom:link href="http://www.cellfusion.jp/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.cellfusion.jp/blog</link>
	<description></description>
	<lastBuildDate>Thu, 03 Mar 2011 10:04:04 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Mac の PixelBender3D Preview Release の使い方</title>
		<link>http://www.cellfusion.jp/blog/?p=36</link>
		<comments>http://www.cellfusion.jp/blog/?p=36#comments</comments>
		<pubDate>Thu, 03 Mar 2011 09:27:00 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Program]]></category>
		<category><![CDATA[PixelBender3D]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/blog/?p=36</guid>
		<description><![CDATA[FlashPlayer Incubator の公開につづいて Molehill API での shader を作成するための PixelBender3D も公開されたようです。 Adobe Pixel Bender 3D &#124; vertex and fragment shaders, molehill &#8211; Adobe Labs 下準備 さて、いざ使ってみようと起動しようとしても起動しませんね･･･。 ReadMe.pdf には command-line compilers と書いてありますが、Mac 版はなぜか App 形式の pb3dutil が入っているようで、このままでは Terminal などを使って Shader をコンパイル出来ません。ので、pb3dutil を右クリック、「パッケージの内容を表示」で必要なファイルを引っ張り出しましょう。パッケージの中は以下のような内容になっていると思います。 &#8230; <a href="http://www.cellfusion.jp/blog/?p=36">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>FlashPlayer Incubator の公開につづいて Molehill API での shader を作成するための PixelBender3D も公開されたようです。</p>
<p><a href="http://labs.adobe.com/technologies/pixelbender3d/" target="_blank">Adobe Pixel Bender 3D | vertex and fragment shaders, molehill &#8211; Adobe Labs</a></p>
<h3>下準備</h3>
<p>さて、いざ使ってみようと起動しようとしても起動しませんね･･･。<br />
ReadMe.pdf には command-line compilers と書いてありますが、Mac 版はなぜか App 形式の pb3dutil が入っているようで、このままでは Terminal などを使って Shader をコンパイル出来ません。ので、pb3dutil を右クリック、「パッケージの内容を表示」で必要なファイルを引っ張り出しましょう。パッケージの中は以下のような内容になっていると思います。</p>
<p><img src="http://www.cellfusion.jp/wp/wp-content/uploads/2011/03/pb3d_pr_package.png" alt="" title="PixelBender3D Preview Release Mac版パッケージ内容" width="313" height="395" /></p>
<p>/usr/local の中に PixelBender3D 用のディレクトリを作って Frameworks, MacOS ディレクトリをコピーしましょう。Mac OS ディレクトリは bin とリネームしておきましょう。</p>
<p>さて、次は Terminal などで pb3dutil を実行するために bash 等にパスを通す必要があります。~/.bash_profile などに下記のようにパスを記述します。</p>
<p><code>export PATH=/usr/local/PixelBender3D/bin:$PATH</code></p>
<p>パスを追加したら Terminal に設定の反映をするために .bash_profile を再読込させるために、下記のコマンドを実行します。</p>
<p><code>source ~/.bash_profile</code></p>
<p>これで、Terminal から pd3dutil が使用できるようになりました。</p>
<h3>使用方法</h3>
<h4>Vertex Shader のコンパイル</h4>
<p><code>pb3dutil VertexKernel.pbvk outputFileName</code></p>
<p>一つの pb3dasm ファイルができあがる。</p>
<h4>Fragment Shader のコンパイル</h4>
<p><code>pb3dutil FragmentKernel.pbmk materialVertexOutputFileName fragmentOutputFileName</code></p>
<p>二つの pb3dasm ファイルができあがる。</p>
<p>fragment shader は二つファイルができあがるみたい。ちなみに pb3dasm はテキストファイルだった。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=36</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Molehill のローレベル API で遊ぼう</title>
		<link>http://www.cellfusion.jp/blog/?p=32</link>
		<comments>http://www.cellfusion.jp/blog/?p=32#comments</comments>
		<pubDate>Thu, 03 Mar 2011 08:58:00 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Program]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Molehill]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/blog/?p=32</guid>
		<description><![CDATA[さて、ついに Flash にも OpenGL や DirectX のような GPU を使うためのローレベル API が使える Flash Player 11 の Beta 版が公開されました。 FDT や Flash Builder での Molehill を使いたい場合は clockmaker さんのインストール方法で使えるのでそちらを参考にしてください。 Molehill を搭載した Flash Player Incubator プレビュー版が公開 通常だと Away3D や Papervision3D, Alternative3D などのライブラリを使って弄るのですが、ここでは全くライブラリを使わずに描画していこうと思います。 とりあえず、単純に矩形にテクスチャー張って回してみました。 Molehill &#8230; <a href="http://www.cellfusion.jp/blog/?p=32">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>さて、ついに Flash にも OpenGL や DirectX のような GPU を使うためのローレベル API が使える Flash Player 11 の Beta 版が公開されました。<br />
FDT や Flash Builder での Molehill を使いたい場合は clockmaker さんのインストール方法で使えるのでそちらを参考にしてください。</p>
<p><a href="http://clockmaker.jp/blog/2011/02/incubator/" target="_blank">Molehill を搭載した Flash Player Incubator プレビュー版が公開</a></p>
<p>通常だと Away3D や Papervision3D, Alternative3D などのライブラリを使って弄るのですが、ここでは全くライブラリを使わずに描画していこうと思います。</p>
<p>とりあえず、単純に矩形にテクスチャー張って回してみました。<br />
<a href="http://www.cellfusion.jp/temp/molehill/0301a/index.html" target="_blank">Molehill Test</a>(要FlashPlayer11:incubator)</p>
<p>どうやら、OSX の Chrome だとうまく GPU で動いてくれてないみたい。Safari だと大丈夫でした。</p>
<p>OpenGL みたいな最小限のパイプラインがないっぽいので、Context3D ごとに shader を準備してあげる必要があるっぽい。<br />
shader は PixelBender3D がでるまでは AGALMiniAssember.as で作成する必要がありそう。<br />
AGALMiniAssember での書き方はドキュメントの Program3D に色々書いてありました。<br />
AGALMiniAssember はなぜか含まれていないようなので下記から取得してください。</p>
<p><a href="http://www.bytearray.org/?p=2555" target="_blank">Digging more into the Molehill APIs &#8211; ByteArray.org</a></p>
<p>記述自体は見慣れない感じですが shader 書いたことある人ならすぐに理解できそうな感じです。<br />
ローレベル API だけ使って描画するコードはこんな感じになりそうです。</p>
<p><a href="https://gist.github.com/848872" target="_blank">Molehill の最小コード — Gist</a></p>
<p>次はもうちょっとまともな描画を書こう。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git Client for Mac OSX</title>
		<link>http://www.cellfusion.jp/blog/?p=24</link>
		<comments>http://www.cellfusion.jp/blog/?p=24#comments</comments>
		<pubDate>Sat, 06 Nov 2010 03:03:52 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Program]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/wp/?p=24</guid>
		<description><![CDATA[最近、Git のクライアントでいいのが無いか探したときに見つけたものとかをメモっておこうと思う。 Terminal http://git-scm.com/ なにもいうまい。 Gitti http://www.gittiapp.com/ 未だに Beta 版だがいまのところもっとも使い易いクライアントな気がする。使用するにはサイトから登録する必要あり。 最近になってアプリを起動すると Gitti Expired とでるようになって使えなくなっている･･･。 GitX http://gitx.frim.nl/ push や pull などがなくローカルリポジトリに対しての操作しかできないがログが視覚化されて見やすいので Gitti が出てくるまで Terminal と併用して使ってました。 GitX(Custom Ver.) GitX は github にてソースコードが公開されていてそれにたいしていろんな人が fork してどんどんカスタマイズされたバージョンが存在している。 https://github.com/pieter/gitx/network push や pull などが出来るようになってたりするバージョンがあるので自分は下記の GitX を使ってます。 https://github.com/brotherbard/gitx/ &#8230; <a href="http://www.cellfusion.jp/blog/?p=24">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>最近、Git のクライアントでいいのが無いか探したときに見つけたものとかをメモっておこうと思う。</p>
<h3>Terminal</h3>
<p><a href="http://git-scm.com/" target="_blank">http://git-scm.com/</a><br />
なにもいうまい。</p>
<h3>Gitti</h3>
<p><a href="http://www.gittiapp.com/" target="_blank">http://www.gittiapp.com/</a><br />
未だに Beta 版だがいまのところもっとも使い易いクライアントな気がする。使用するにはサイトから登録する必要あり。<br />
最近になってアプリを起動すると Gitti Expired とでるようになって使えなくなっている･･･。</p>
<h3>GitX</h3>
<p><a href="http://gitx.frim.nl/" target="_blank">http://gitx.frim.nl/</a><br />
push や pull などがなくローカルリポジトリに対しての操作しかできないがログが視覚化されて見やすいので Gitti が出てくるまで Terminal と併用して使ってました。</p>
<h3>GitX(Custom Ver.)</h3>
<p>GitX は github にてソースコードが公開されていてそれにたいしていろんな人が fork してどんどんカスタマイズされたバージョンが存在している。<br />
<a href="https://github.com/pieter/gitx/network" target="_blank">https://github.com/pieter/gitx/network</a><br />
push や pull などが出来るようになってたりするバージョンがあるので自分は下記の GitX を使ってます。<br />
<a href="https://github.com/brotherbard/gitx/" target="_blank">https://github.com/brotherbard/gitx/</a></p>
<h3>Tower</h3>
<p><a href="http://www.git-tower.com/" target="_blank">http://www.git-tower.com/</a><br />
osx でつかうならとりあえず Tower をお勧めしたいくらいに良くできている。<br />
少し前に ver 1.0 が公開されました。<br />
<del datetime="2011-03-01T00:30:53+00:00">Comming this November! と言うことで、まだ使えないけど期待大なクライアント。<br />
スクリーンショットを見る感じだと Gitti に似ている感じかな。</del></p>
<h3>Gitbox</h3>
<p><a href="http://gitbox.pierlis.com/" target="_blank">http://gitbox.pierlis.com/</a><br />
シンプルな Git クライアント</p>
<h3>smartGit</h3>
<p><a href="http://www.syntevo.com/smartgit/index.html" target="_blank">http://www.syntevo.com/smartgit/index.html</a><br />
smartSVN や SmartCVS などをつくっている syntevo がつくっている Git クライアント。<br />
windows や Linux 版もある。<br />
他にもいいクライアントがあったら是非教えてくださいー。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=24</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT の CodeTemplate 作った</title>
		<link>http://www.cellfusion.jp/blog/?p=23</link>
		<comments>http://www.cellfusion.jp/blog/?p=23#comments</comments>
		<pubDate>Wed, 20 Oct 2010 15:37:47 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Program]]></category>
		<category><![CDATA[CodeTemplate]]></category>
		<category><![CDATA[FDT]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/wp/?p=23</guid>
		<description><![CDATA[Mathクラスでよくやる高速化備忘録 で書かれていた物とBitwise gems &#8211; fast integer math を混ぜて FDT の CodeTemplate 作ってみました。 fastMathCodeTemplate.zip abs : Math.abs ceil : Math.ceil floor : Math.floor round : Math.round max : Math.max min : Math.min checkeven : 偶数かチェック divide : 2の自乗の除算 multiply : 2の自乗の乗算 &#8230; <a href="http://www.cellfusion.jp/blog/?p=23">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://nulldesign.jp/blog/flash/480.html" target="_blank">Mathクラスでよくやる高速化備忘録</a> で書かれていた物と<a href="http://lab.polygonal.de/2007/05/10/bitwise-gems-fast-integer-math/" target="_blank">Bitwise gems &#8211; fast integer math</a> を混ぜて FDT の CodeTemplate 作ってみました。</p>
<p><a href="http://www.cellfusion.jp/blog/program/fdt/fastMathCodeTemplate.zip" target="_blank">fastMathCodeTemplate.zip</a></p>
<ul>
<li>abs : Math.abs</li>
<li>ceil : Math.ceil</li>
<li>floor : Math.floor</li>
<li>round : Math.round</li>
<li>max : Math.max</li>
<li>min : Math.min</li>
<li>checkeven : 偶数かチェック</li>
<li>divide : 2の自乗の除算</li>
<li>multiply : 2の自乗の乗算</li>
<li>flip : 数字の符号反転</li>
<li>modulo : 剰余</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=23</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HYPE がなんか楽しい</title>
		<link>http://www.cellfusion.jp/blog/?p=22</link>
		<comments>http://www.cellfusion.jp/blog/?p=22#comments</comments>
		<pubDate>Fri, 07 May 2010 10:23:48 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Program]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[hype]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/wp/?p=22</guid>
		<description><![CDATA[// Swarm とか BitmapCanvas とか色々用意されててもそもそしてたらいつのまにかできた。こういうのはやっぱたのしいな。 the HYPE Framework package { import flash.filters.ColorMatrixFilter; import hype.framework.core.TimeType; import flash.filters.BlurFilter; import hype.extended.rhythm.FilterCanvasRhythm; import hype.extended.behavior.FixedVibration; import hype.extended.behavior.Swarm; import hype.extended.color.ColorPool; import hype.extended.layout.ShapeLayout; import hype.framework.core.ObjectPool; import hype.framework.display.BitmapCanvas; import hype.framework.rhythm.SimpleRhythm; import flash.display.Sprite; /** * @author Mk-10:cellfusion */ public &#8230; <a href="http://www.cellfusion.jp/blog/?p=22">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript">// <![CDATA[
swfobject.embedSWF("/blog/program/drawing/hype01.swf", "hype01", "300", "120", "9.0.0");
// ]]&gt;</script></p>
<div id="hype01"><img class="alignnone" title="HYPE drawing" src="http://www.cellfusion.jp/blog/program/drawing/hype01.jpg" alt="" width="528" height="746" /></div>
<p>Swarm とか BitmapCanvas とか色々用意されててもそもそしてたらいつのまにかできた。こういうのはやっぱたのしいな。<br />
<a href="http://www.hypeframework.org/" target="_blank">the HYPE Framework</a></p>
<pre class="brush:as3">package
{
import flash.filters.ColorMatrixFilter;
import hype.framework.core.TimeType;
import flash.filters.BlurFilter;
import hype.extended.rhythm.FilterCanvasRhythm;
import hype.extended.behavior.FixedVibration;
import hype.extended.behavior.Swarm;
import hype.extended.color.ColorPool;
import hype.extended.layout.ShapeLayout;
import hype.framework.core.ObjectPool;
import hype.framework.display.BitmapCanvas;
import hype.framework.rhythm.SimpleRhythm;
import flash.display.Sprite;
/**
* @author Mk-10:cellfusion
*/
public class Sample extends Sprite
{
private var _rhythm:SimpleRhythm;
private var _pool:ObjectPool;
private var _colorPool:ColorPool;
private var _clipContainer:Sprite;
private var _layout:ShapeLayout;
private var _bc:BitmapCanvas;
private var _blur:FilterCanvasRhythm;
public function Sample()
{
var bg:Sprite = new Sprite();
bg.graphics.beginFill(0x000000);
bg.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
bg.graphics.endFill();
addChild(bg);
_layout = new ShapeLayout(bg);
_bc = new BitmapCanvas(stage.stageWidth, stage.stageHeight);
addChild(_bc);
_clipContainer = new Sprite();
_colorPool = new ColorPool();
_pool = new ObjectPool(MyCircle, 100);
_pool.onRequestObject = poolRequest;
_rhythm = new SimpleRhythm(addNextClip);
_rhythm.start();
_bc.startCapture(_clipContainer, true);
_blur = new FilterCanvasRhythm([new ColorMatrixFilter([0.99, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 0.99, 0, 0, 0, 0, 1])], _bc);
_blur.start(TimeType.TIME, 100);
}
private function poolRequest(clip:Sprite):void
{
clip.scaleX = clip.scaleY = 0.8 * Math.random() + 0.2;
clip.x = stage.stageWidth * 0.5;
clip.y = stage.stageHeight * 0.5;
_clipContainer.addChild(clip);
var swarm:Swarm = new Swarm(clip, _layout.getNextPoint(), 5, 0.09, 25);
swarm.start();
var sVib:FixedVibration = new FixedVibration(clip, "scale", 0.9, 0.1, 0.2, 1, true);
sVib.start();
}
private function addNextClip(r:SimpleRhythm):void
{
if (_pool.isFull) {
r.stop();
} else {
_pool.request();
}
}
}
}
import flash.filters.DropShadowFilter;
import flash.display.Sprite;
class MyCircle extends Sprite
{
public function MyCircle()
{
var circle:Sprite = new Sprite();
circle.graphics.beginFill(0xFFFFFF);
circle.graphics.drawCircle(0, 0, 3);
circle.graphics.endFill();
addChild(circle);
filters = [new DropShadowFilter(0, 45, 0, 1, 2, 2, 1, 1)];
}
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT について喋ってきます</title>
		<link>http://www.cellfusion.jp/blog/?p=21</link>
		<comments>http://www.cellfusion.jp/blog/?p=21#comments</comments>
		<pubDate>Thu, 29 Apr 2010 03:29:38 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Event]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/wp/?p=21</guid>
		<description><![CDATA[!/blog/event/flashoop_35/ttl_flashoop_35.jpg! Flash OOP 勉強会にて Flash の開発環境の勉強会があるので、FDT について語ってこようと思います。 FDT だけではなく FlashDevelop や Flash Builder についての環境の話も聴けるので、この勉強会で自分に合いそうな環境を探してみてはいかがでしょうか？ 第35回 Flash OOP勉強会「Flash OOP presents／Flash開発環境自慢大会！」with Adobe station5 h3. イベント詳細 日時 : 5月11日(火) 会場 : THE GALLERY 渋谷区神宮前4丁目21-8 OWビル2F(Google Map) 内容 : Flash Builder、FlashDevelop、FDTの各開発環境の紹介をし、ユーザーによる「環境自慢」トークを行ないます。 司会 : 富川 &#8230; <a href="http://www.cellfusion.jp/blog/?p=21">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>!/blog/event/flashoop_35/ttl_flashoop_35.jpg!<br />
Flash OOP 勉強会にて Flash の開発環境の勉強会があるので、FDT について語ってこようと思います。<br />
FDT だけではなく FlashDevelop や Flash Builder についての環境の話も聴けるので、この勉強会で自分に合いそうな環境を探してみてはいかがでしょうか？<br />
<a href="http://www.flashoop.jp/2010/04/oop-study-035/" target="_blank">第35回 Flash OOP勉強会「Flash OOP presents／Flash開発環境自慢大会！」with Adobe station5</a><br />
h3. イベント詳細<br />
日時 : 5月11日(火)<br />
会場 : <a href="http://www.the-gallery.jp/" target="_blank">THE GALLERY</a><br />
渋谷区神宮前4丁目21-8 OWビル2F(<a href="http://maps.google.co.jp/maps?q=35.668133,139.708229&#038;num=1&#038;sll=35.668181,139.708395&#038;sspn=0.001881,0.002097&#038;hl=ja&#038;brcurrent=3,0x60188ca3b0eee4af:0x71835bcd6e2b9cad,0&#038;ie=UTF8&#038;ll=35.668244,139.708045&#038;spn=0.001881,0.002097&#038;z=19" target="_blank">Google Map</a>)<br />
内容 : Flash Builder、FlashDevelop、FDTの各開発環境の紹介をし、ユーザーによる「環境自慢」トークを行ないます。<br />
司会 : 富川 真也 氏(Flash OOP)<br />
スピーカー : FlashDevelop <a href="http://blog.bk-zen.com/" target="_blank">佐藤 陽亮(bkzen)</a>, FDT <a href="http://www.cellfusion.jp/" target="_blank">俺(Mk-10:cellfusion)</a>, Flash Builder <a href="http://uranodai.com/" blank="_blank">浦野 大輔(uranodai)</a><br />
<a href="https://station5.jp/seminar/apply/input.php?sid=8" target="_blank">セミナー申し込みページ</a><br />
※ 既に予約受付完了しました、たくさんの申し込みありがとうございます。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=21</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progression 本執筆しました</title>
		<link>http://www.cellfusion.jp/blog/?p=20</link>
		<comments>http://www.cellfusion.jp/blog/?p=20#comments</comments>
		<pubDate>Wed, 21 Apr 2010 06:00:45 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Diary]]></category>
		<category><![CDATA[ActionScript3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Progression]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/wp/?p=20</guid>
		<description><![CDATA[!/blog/diary/progbook/ttl_progbook.jpg! FLASHer の味方 Progression 本の執筆をしました。 Progression てのはなんぞやという説明から、コンポーネントの使い方、コマンドやシーンの説明、etc&#8230; ここまで Progression について説明されてる書籍はないんじゃないかしらというくらいになかなかのボリュームだと思います。 これから Progression を使いはじめる方やすでに使っている方にもお勧めですよ。 今月末には書店に並ぶと思うのでよろしくお願いしまーす。 ProgressionによるFlashコンテンツ開発ガイドブック * 著者 : 阿部貴弘(nium), 池田泰延(clockmaker), 楢山哲弘(northprint), 俺(Mk-10:cellfusion), 山上健一(kappalab) * 税抜価格 : 2,800円 * ISBN : 978-4-8399-3179-7 * 総頁数 : 312ページ * 出版社 : 毎日コミュニケーションズ]]></description>
			<content:encoded><![CDATA[<p>!/blog/diary/progbook/ttl_progbook.jpg!<br />
FLASHer の味方 Progression 本の執筆をしました。<br />
Progression てのはなんぞやという説明から、コンポーネントの使い方、コマンドやシーンの説明、etc&#8230; ここまで Progression について説明されてる書籍はないんじゃないかしらというくらいになかなかのボリュームだと思います。<br />
これから Progression を使いはじめる方やすでに使っている方にもお勧めですよ。<br />
今月末には書店に並ぶと思うのでよろしくお願いしまーす。</p>
<div class="book">
<h3><a href="http://www.amazon.co.jp/gp/product/4839931798?ie=UTF8&#038;tag=cellfusion-22&#038;linkCode=as2&#038;camp=247&#038;creative=7399&#038;creativeASIN=4839931798" target="_blank">ProgressionによるFlashコンテンツ開発ガイドブック</a></h3>
<div class="wrapper clearfix">
<div class="image"><a href="http://www.amazon.co.jp/gp/product/4839931798?ie=UTF8&#038;tag=cellfusion-22&#038;linkCode=as2&#038;camp=247&#038;creative=7399&#038;creativeASIN=4839931798" target="_blank"><img src="/blog/diary/progbook/img_progbook.jpg" /></a></div>
<div class="description">
* 著者 : <a href="http://progression.jp/" target="_blank">阿部貴弘(nium)</a>, <a href="http://clockmaker.jp/" target="_blank">池田泰延(clockmaker)</a>, <a href="http://www.northprint.net/" target="_blank">楢山哲弘(northprint)</a>, <a href="http://www.cellfusion.jp/" target="_blank">俺(Mk-10:cellfusion)</a>, <a href="http://memo.kappa-lab.com/" target="_blank">山上健一(kappalab)</a><br />
* 税抜価格 : 2,800円<br />
* ISBN : 978-4-8399-3179-7<br />
* 総頁数 : 312ページ<br />
* 出版社 : <a href="http://progression.jp/" target="_blank">毎日コミュニケーションズ</a>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT スペシャルキャンペーン</title>
		<link>http://www.cellfusion.jp/blog/?p=19</link>
		<comments>http://www.cellfusion.jp/blog/?p=19#comments</comments>
		<pubDate>Fri, 19 Mar 2010 03:15:07 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Program]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/wp/?p=19</guid>
		<description><![CDATA[Twitter でも告知したけど、FDT Pro &#038; Enterprise がめっちゃくちゃお得に買えるキャンペーンやってます！ Powerflasher Solutions -&#160;Promotions 翻訳してもらいました！ アップグレードの価格より安いのでこの機会に是非体験してみてくださいー。 &#8211; 新年度に向けた FDT のスペシャルキャンペーン実施中！ いまお使いのFlash用開発ツールから FDT Pro もしくは Enterprise へのアップグレードをご検討中の方に、３月末までを限定に特別価格でご提供させて頂きます（Pro: $299 Enterprise $399）。 アップグレードにはお使いの Flash ツール購入時の領収書など、ライセンスの証明が必要です。詳しくは upgrade2FDT[at]powerflasher.com まで（日本語可）。 &#8211; twitter でも @cellfusion か @keisukes にリプライするといいかも。]]></description>
			<content:encoded><![CDATA[<p>Twitter でも告知したけど、FDT Pro &#038; Enterprise がめっちゃくちゃお得に買えるキャンペーンやってます！<br />
<a href="http://www.fdt.powerflasher.com/developer-tools/fdt-3/buy-now/promotions/" target="_blank">Powerflasher Solutions -&nbsp;Promotions</a><br />
翻訳してもらいました！<br />
アップグレードの価格より安いのでこの機会に是非体験してみてくださいー。<br />
&#8211;<br />
新年度に向けた FDT のスペシャルキャンペーン実施中！<br />
いまお使いのFlash用開発ツールから FDT Pro もしくは Enterprise へのアップグレードをご検討中の方に、３月末までを限定に特別価格でご提供させて頂きます（Pro: $299 Enterprise $399）。<br />
アップグレードにはお使いの Flash ツール購入時の領収書など、ライセンスの証明が必要です。詳しくは upgrade2FDT[at]powerflasher.com まで（日本語可）。<br />
&#8211;<br />
twitter でも <a href="http://twitter.com/cellfusion" target="_blank">@cellfusion</a> か <a href="http://twitter.com/keisukes" target="_blank">@keisukes</a> にリプライするといいかも。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=19</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fdt.jp を作りましたー</title>
		<link>http://www.cellfusion.jp/blog/?p=14</link>
		<comments>http://www.cellfusion.jp/blog/?p=14#comments</comments>
		<pubDate>Sun, 27 Dec 2009 21:11:15 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Program]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/wp/?p=14</guid>
		<description><![CDATA[この blog にいろいろ情報を書いていましたが、専用のサイト作った方がいいなと思ったので、 fdt.jp を作成しました。 http://www.fdt.jp/ インストール方法などから各種カスタマイズなどいろいろな tips やチュートリアルなどを掲載予定です。]]></description>
			<content:encoded><![CDATA[<p>この blog にいろいろ情報を書いていましたが、専用のサイト作った方がいいなと思ったので、 fdt.jp を作成しました。<br />
<a href="http://www.fdt.jp/" target="_blank">http://www.fdt.jp/</a><br />
インストール方法などから各種カスタマイズなどいろいろな tips やチュートリアルなどを掲載予定です。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FDT Library Tips</title>
		<link>http://www.cellfusion.jp/blog/?p=12</link>
		<comments>http://www.cellfusion.jp/blog/?p=12#comments</comments>
		<pubDate>Mon, 07 Dec 2009 04:42:07 +0000</pubDate>
		<dc:creator>cellfusion</dc:creator>
				<category><![CDATA[Program]]></category>
		<category><![CDATA[FDT]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[Linked Library]]></category>
		<category><![CDATA[Source Folder]]></category>

		<guid isPermaLink="false">http://www.cellfusion.jp/wp/?p=12</guid>
		<description><![CDATA[FDT でのライブラリの使い方は大きく分けて二種類あります。一つは Linked Library を使ってプロジェクト外のライブラリを指定する方法。もう一つは Source Folder を作成してその中にライブラリのファイルを入れる方法です。今回は二つの指定方法と違いを説明します（おまけで swc のライブラリを指定する方法も書いておきました） h3. Linked Library を使った指定方法 Linked Library はプロジェクト外のライブラリを使いたいときに使用します。 右クリック > New > Linked Libraries Add で Linked Libraries の一覧が出てくるのでここで必要なライブラリを指定します。 もし、必要なライブラリが無い場合は New をクリックして追加します。 Linked Library はデフォルトの状態ではソースコードの表示は可能ですが、編集ができないようになっています。もし、編集したい場合は Preference > FDT > Misc の &#8230; <a href="http://www.cellfusion.jp/blog/?p=12">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>FDT でのライブラリの使い方は大きく分けて二種類あります。一つは Linked Library を使ってプロジェクト外のライブラリを指定する方法。もう一つは Source Folder を作成してその中にライブラリのファイルを入れる方法です。今回は二つの指定方法と違いを説明します（おまけで swc のライブラリを指定する方法も書いておきました）<br />
h3. Linked Library を使った指定方法<br />
Linked Library はプロジェクト外のライブラリを使いたいときに使用します。<br />
<img src="/blog/program/fdt/library/dialog01.gif" alt="" /><br />
右クリック > New > Linked Libraries<br />
<img src="/blog/program/fdt/library/dialog02.gif" alt="" /><br />
Add で Linked Libraries の一覧が出てくるのでここで必要なライブラリを指定します。<br />
もし、必要なライブラリが無い場合は New をクリックして追加します。<br />
<img src="/blog/program/fdt/library/dialog03.gif" alt="" /><br />
Linked Library はデフォルトの状態ではソースコードの表示は可能ですが、編集ができないようになっています。もし、編集したい場合は Preference > FDT > Misc の Enable working in linked libraries をチェックすることで編集が可能になります。<br />
h4. Linked Library を追加<br />
<img src="/blog/program/fdt/library/dialog04.gif" alt="" /><br />
Name には識別名と Location にはそのライブラリのパスを指定します。<br />
通常のソースコードのライブラリの場合は Folder を指定すればそのフォルダより下をライブラリと認識します。swc の場合には file をクリックして swc のパスを直接指定します。<br />
Linked Libraries は Core Library でも使用しているので、ちょっとごちゃごちゃになりやすいので分かりやすい命名をしておくと見分けやすくなります。<br />
h3. Source Folder を使った指定方法<br />
ソースコードやプロジェクト内にライブラリを置いて使う場合には Source Folder を使います。<br />
<img src="/blog/program/fdt/library/dialog05.gif" alt="" /><br />
右クリック > New > Source Folder で追加するとフォルダを追加すると同時にそのフォルダを Source Folder にします。<br />
<img src="/blog/program/fdt/library/dialog06.gif" alt="" /><br />
また、指定したいフォルダが既に存在する場合はそのフォルダを右クリック > Source Folder > Add to Classpath でそのフォルダを Source Folder にできます。<br />
h3. プロジェクト内の swc を使用する場合<br />
Project 内で swc を使用する場合には Source Folder に入れるのではなく、swc を右クリック > Source Folder > Add to Classpath で指定します。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cellfusion.jp/blog/?feed=rss2&#038;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

