<?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>maxfactory &#124; Flash lite(携帯Flash)、Flex、widgetなどの技術メモ &#187; Flash Lite</title>
	<atom:link href="http://maxfactory.biz/blog/tag/flash-lite/feed/" rel="self" type="application/rss+xml" />
	<link>http://maxfactory.biz/blog</link>
	<description>Flash lite(携帯Flash)、Flex、widgetなどの技術メモ</description>
	<lastBuildDate>Thu, 29 Jul 2010 09:00:55 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>[flash lite]スクリプトによる動的生成（テキストのみ）</title>
		<link>http://maxfactory.biz/blog/2010/03/22/flash-lite%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88%e3%81%ab%e3%82%88%e3%82%8b%e5%8b%95%e7%9a%84%e7%94%9f%e6%88%90%ef%bc%88%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e3%81%bf%ef%bc%89/</link>
		<comments>http://maxfactory.biz/blog/2010/03/22/flash-lite%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88%e3%81%ab%e3%82%88%e3%82%8b%e5%8b%95%e7%9a%84%e7%94%9f%e6%88%90%ef%bc%88%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e3%81%bf%ef%bc%89/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 14:54:47 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[動的生成]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=445</guid>
		<description><![CDATA[
			
				
			
		
今回はサーバスクリプトのみで携帯flashを動的生成する方法です。
※動的に出力できるのはテキストのみです。
下記にある動的生成クラスを利用すれば、簡単に動的生成することが可能です。
サ [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2010%2F03%2F22%2Fflash-lite%25e3%2582%25b9%25e3%2582%25af%25e3%2583%25aa%25e3%2583%2597%25e3%2583%2588%25e3%2581%25ab%25e3%2582%2588%25e3%2582%258b%25e5%258b%2595%25e7%259a%2584%25e7%2594%259f%25e6%2588%2590%25ef%25bc%2588%25e3%2583%2586%25e3%2582%25ad%25e3%2582%25b9%25e3%2583%2588%25e3%2581%25ae%25e3%2581%25bf%25ef%25bc%2589%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2010%2F03%2F22%2Fflash-lite%25e3%2582%25b9%25e3%2582%25af%25e3%2583%25aa%25e3%2583%2597%25e3%2583%2588%25e3%2581%25ab%25e3%2582%2588%25e3%2582%258b%25e5%258b%2595%25e7%259a%2584%25e7%2594%259f%25e6%2588%2590%25ef%25bc%2588%25e3%2583%2586%25e3%2582%25ad%25e3%2582%25b9%25e3%2583%2588%25e3%2581%25ae%25e3%2581%25bf%25ef%25bc%2589%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>今回はサーバスクリプトのみで携帯flashを動的生成する方法です。<br />
※動的に出力できるのはテキストのみです。</p>
<p>下記にある動的生成クラスを利用すれば、簡単に動的生成することが可能です。<br />
サーバスクリプトのみなので、特別なアプリケーションのインストールが不要（phpは必要）です。</p>
<p>■利用ファイル<br />
・SwfGen.php　動的生成クラス<br />
・sample01.php　動的出力テキスト設定・実行ファイル<br />
・sample01.swf　テンプレートflash</p>
<p>■各ファイルソース</p>
<p>◯動的生成クラス　言語：php5<br />
ファイル名：SwfGen.php</p>
<pre name="code" class="xml">&lt;?php

class SwfGen
{
public static function execute($swf, $datas = array())
{
$doactiontag = SwfGen::_maketag($datas);

//road
$fr = fopen($swf,"rb");

$headtmp = fread($fr,9);
$rb = ord(substr($headtmp,8,1))&gt;&gt;3; // rectbit
$headlen = ceil(((( 8 - (($rb*4+5)&amp;7) )&amp;7)+ $rb*4 + 5 )/8) + 12 + 5;
$head = $headtmp.fread($fr,$headlen-9);

//change header
$oldsize = filesize($swf);
$newsize = $oldsize+strlen($doactiontag);
$newhead = substr($head,0,4).SwfGen::_h32($newsize).substr($head,8);

$tail = fread($fr, $oldsize-$headlen);
fclose($fr);

//output
header("Content-Type: application/x-shockwave-flash");
print $newhead.$doactiontag.$tail;
}

private static function _h32($sizeint)
{
return pack("V",$sizeint);
}

private static function _h16($sizeint)
{
return pack("v",$sizeint);
}

private static function _calctaglen($dataarray)
{
$ret = 0;
foreach($dataarray as $key =&gt; $value){
$ret += strlen($key)+strlen($value) + 11;

}
return $ret+1;
}

private static function _maketag($dataarray)
{
$tag = "¥x3f¥x03";
$taglen = SWfGen::_calctaglen($dataarray);
$tag .= SwfGen::_h32($taglen);

foreach($dataarray as $key =&gt; $value){
$tag .= "¥x96".SwfGen::_h16(strlen($key)+2)."¥x00".$key."¥x00";
$value = mb_convert_encoding($value, "SJIS", "EUC-JP");
$tag .= "¥x96".SwfGen::_h16(strlen($value)+2)."¥x00".$value."¥x00";
$tag .= "¥x1d";
}
$tag .= "¥x00";
return $tag;
}
}
</pre>
<p>◯サーバ側　言語：php<br />
ファイル名：sample01.php</p>
<pre name="code" class="xml">&lt;?php

require_once "SwfGen.php";

//関数 execute
//第１引数　swfファイルパス
//第２引数　連想配列　key：変数名　value：値
//sample01.swf内にtest変数にhogehogeをセット
SwfGen::execute("sample01.swf", array("test"=&gt;"hogehoge"));
</pre>
<p>◯flash側<br />
・ファイル名：sample01.swf<br />
・ダイナミックテキスト変数名：debug</p>
<pre name="code" class="xml">
//test変数の値をダイナミックテキストdebugに代入
debug = test;
</pre>
<p>■デモ（上記の実行結果）<br />
<a href="http://maxfactory.biz/flash/sample/cms/sample01.php">http://maxfactory.biz/flash/sample/cms/sample01.php</a></p>
<p>■ソース一式ダウンロード　phpは５系、flashはCS4<br />
<a href="http://bit.ly/bhm9p4">http://maxfactory.biz/flash/sample/cms/sample01.tar.gz</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2010/03/22/flash-lite%e3%82%b9%e3%82%af%e3%83%aa%e3%83%97%e3%83%88%e3%81%ab%e3%82%88%e3%82%8b%e5%8b%95%e7%9a%84%e7%94%9f%e6%88%90%ef%bc%88%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%81%ae%e3%81%bf%ef%bc%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[flashLite]動的生成利用時は、ブラウザキャッシュ回避を忘れずに</title>
		<link>http://maxfactory.biz/blog/2010/01/22/22/</link>
		<comments>http://maxfactory.biz/blog/2010/01/22/22/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:55:48 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[キャッシュ回避]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=402</guid>
		<description><![CDATA[
			
				
			
		
動的生成Flash利用時は、ブラウザキャッシュ回避を忘れずにしなければ、
動的に表示を変えてもキャッシュで以前の画面が表示されますので。
・キャッシュ回避は下記のヘッダーを出力しておく
 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2010%2F01%2F22%2F22%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2010%2F01%2F22%2F22%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>動的生成Flash利用時は、ブラウザキャッシュ回避を忘れずにしなければ、<br />
動的に表示を変えてもキャッシュで以前の画面が表示されますので。</p>
<p>・キャッシュ回避は下記のヘッダーを出力しておく</p>
<pre name="code" class="xml">
header('Expires: Thu, 01 Jan 1970 00:00:00 GMT, -1');
header('Cache-Control: no-cache, no-store, must-revalidate');
header('Pragma: no-cache');
</pre>
<p>○「ケータイFlashのブラウザキャッシュを回避するには」<br />
<a href="http://www.plusmb.jp/2009/06/26/3935.html">http://www.plusmb.jp/2009/06/26/3935.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2010/01/22/22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[flashlite]リクエストパラメータサイズの軽減</title>
		<link>http://maxfactory.biz/blog/2010/01/14/14/</link>
		<comments>http://maxfactory.biz/blog/2010/01/14/14/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 01:58:44 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[getURL]]></category>
		<category><![CDATA[loadVariables]]></category>
		<category><![CDATA[リクエストパラメータ]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=363</guid>
		<description><![CDATA[
			
				
			
		
以前の記事でリクエストパラメータサイズの軽減について書きましたが、
より軽減できる方法。
普通データ送信は、ボタンのイベントアクションに、
loadVariables(&#8220;sa [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2010%2F01%2F14%2F14%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2010%2F01%2F14%2F14%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://maxfactory.biz/blog/2009/03/flashliteloadvariables-url%E3%83%91%E3%83%A9%E3%83%A1%E3%83%BC%E3%82%BF%E3%82%B5%E3%82%A4%E3%82%BA/" target="_blank">以前の記事</a>でリクエストパラメータサイズの軽減について書きましたが、<br />
より軽減できる方法。</p>
<p>普通データ送信は、ボタンのイベントアクションに、<br />
loadVariables(&#8220;save.php&#8221;, &#8220;/&#8221;, &#8220;GET&#8221;);<br />
のような記述をすると思います。<br />
この場合、アプリケーション内で利用した全ての変数が送信され、<br />
リクエストパラメータサイズが大きくなります。</p>
<p>本来は必要なデータだけ送信すればよいし、そうしたい。</p>
<p>その必要なデータだけ送信する方法が下記になります。<br />
【概要】データ送信用のムービークリップ（空ムービークリップでよい）を準備して、<br />
そのムービークリップ内に必要なデータだけ変数にセットして、そのムービークリップ内で、<br />
データ送信の関数を記述する。</p>
<p>（例）<br />
1．データ送信用のムービークリップを準備（インスタンス名は、vars）<br />
2．データ送信用のムービークリップ内の変数に値をセット<br />
○rootにある変数uid、typeをmc(vars)内の変数にセットする</p>
<pre name="code" class="xml">
/vars/:type = type;
/vars/:uid = uid;
</pre>
<p>3．データ送信用のムービークリップ内でデータ送信<br />
○mc(vars)内でデータ送信する</p>
<pre name="code" class="xml">
tellTarget("/vars/"){
loadVariables("save.php", "/", "GET");
}
</pre>
<p>これでrootに他の変数があっても、送信されるデータは、typeとuidのみになります。</p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2010/01/14/14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[FlashLite]かんたん携帯　文字サイズ</title>
		<link>http://maxfactory.biz/blog/2010/01/12/12/</link>
		<comments>http://maxfactory.biz/blog/2010/01/12/12/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 11:25:18 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[文字サイズ]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=375</guid>
		<description><![CDATA[
			
				
			
		
flashLiteで小文字を設定する場合は、12pｔで設定すると思いますが、
かんたん携帯（※821Tと832Tで検証）では、小文字になりません。中文字になります。
そのため、12ptを [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2010%2F01%2F12%2F12%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2010%2F01%2F12%2F12%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>flashLiteで小文字を設定する場合は、12pｔで設定すると思いますが、<br />
かんたん携帯（※<a href="http://mb.softbank.jp/mb/product/3G/821t/">821T</a>と<a href="http://mb.softbank.jp/mb/product/3G/832t/">832T</a>で検証）では、小文字になりません。中文字になります。</p>
<p>そのため、12ptを想定で高さ(16px)を設定していると、<br />
かんたん携帯では文字が少し切れてしまいます。<br />
文字が切れないようにするためには、テキストフィールドを中文字の高さ(20px)にしておく必要があります。</p>
<p>かんたん携帯が対応端末に入っている場合は、この辺気にする必要があります。<br />
ちなみにdocomoらくらくホン、au簡単ケータイは数機種検証し問題ありませんでした。</p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2010/01/12/12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[flashlite]モバイルデザインアーカイブ</title>
		<link>http://maxfactory.biz/blog/2009/12/05/5-2/</link>
		<comments>http://maxfactory.biz/blog/2009/12/05/5-2/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 14:41:23 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[flash秀逸サイト]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=321</guid>
		<description><![CDATA[
			
				
			
		
携帯サイトデザインのまとめサイト
http://mobiledesignarchive.jp/
登録数もとても多いです。携帯Flashのアーカイブも多数あります。
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F12%2F05%2F5-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F12%2F05%2F5-2%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>携帯サイトデザインのまとめサイト<br />
<a href="http://mobiledesignarchive.jp/">http://mobiledesignarchive.jp/</a></p>
<p>登録数もとても多いです。携帯Flashのアーカイブも多数あります。</p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2009/12/05/5-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[FlashLite]端末の対応状況</title>
		<link>http://maxfactory.biz/blog/2009/10/08/08/</link>
		<comments>http://maxfactory.biz/blog/2009/10/08/08/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 16:59:40 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[topic]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash player]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=267</guid>
		<description><![CDATA[
			
				
			
		
2009年3月でFlashLite1.1以降搭載されている端末のアクセスシェアが98.9%とのこと。
そういえば、もう一個Flash+モバイル系のTopic。
○アドビシステムズ、モバイ [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F10%2F08%2F08%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F10%2F08%2F08%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>2009年3月でFlashLite1.1以降搭載されている端末のアクセスシェアが98.9%とのこと。</p>
<p>そういえば、もう一個Flash+モバイル系のTopic。<br />
○アドビシステムズ、モバイル機器とパソコンに対応した初のFlash Playerを発表<br />
<a href="http://gihyo.jp/news/nr/2009/10/0601">http://gihyo.jp/news/nr/2009/10/0601</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2009/10/08/08/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Flash Lite]画面サイズ</title>
		<link>http://maxfactory.biz/blog/2009/09/07/flash-litedocumentsize/</link>
		<comments>http://maxfactory.biz/blog/2009/09/07/flash-litedocumentsize/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 10:06:47 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[画面サイズ]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=236</guid>
		<description><![CDATA[
			
				
			
		
携帯Flash作成で、動的に出力してサイズを調整しない場合、
画面サイズは選びは悩み所だと思います。
下記の記事は、画面サイズを決定する上で非常に参考になると思います。
http://w [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F09%2F07%2Fflash-litedocumentsize%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F09%2F07%2Fflash-litedocumentsize%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>携帯Flash作成で、動的に出力してサイズを調整しない場合、<br />
画面サイズは選びは悩み所だと思います。</p>
<p>下記の記事は、画面サイズを決定する上で非常に参考になると思います。<br />
<a href="http://www.adobe.com/jp/devnet/devices/articles/environment_flashlite.html">http://www.adobe.com/jp/devnet/devices/articles/environment_flashlite.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2009/09/07/flash-litedocumentsize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[flash lite][mobile]GPS取得　補足</title>
		<link>http://maxfactory.biz/blog/2009/08/20/flash-litegps%e5%8f%96%e5%be%97%e3%80%80%e8%a3%9c%e8%b6%b3/</link>
		<comments>http://maxfactory.biz/blog/2009/08/20/flash-litegps%e5%8f%96%e5%be%97%e3%80%80%e8%a3%9c%e8%b6%b3/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 13:36:59 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[gps]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=207</guid>
		<description><![CDATA[
			
				
			
		
以前flash LiteでGPS取得(au)の記事を書きましたが、その補足です。
gps取得時にいくつかパラメータを付与していましたが、
このパラメータの値を変更することでgps取得形式 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F08%2F20%2Fflash-litegps%25e5%258f%2596%25e5%25be%2597%25e3%2580%2580%25e8%25a3%259c%25e8%25b6%25b3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F08%2F20%2Fflash-litegps%25e5%258f%2596%25e5%25be%2597%25e3%2580%2580%25e8%25a3%259c%25e8%25b6%25b3%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>以前flash Liteで<a href="http://maxfactory.biz/blog/2009/02/flash-liteau-gps%E5%8F%96%E5%BE%97/">GPS取得(au)の記事</a>を書きましたが、その補足です。</p>
<p>gps取得時にいくつかパラメータを付与していましたが、<br />
このパラメータの値を変更することでgps取得形式を変更することができます。</p>
<p>前回記事のパラメータ<br />
<code>device:gpsone?url=(CGIのURL)&#038;ver=1&#038;datum=1&#038;unit=1</code></p>
<p>○パラメータの説明<br />
ver:GPSバージョン　1<br />
datum:測地系の種類　0:WGS84系　1:日本測地系<br />
unit:	経度緯度の表記方法　0:dd.mm.ss.sssの度分秒表記　1:dd.dddの度表記</p>
<p>前回記事では、日本測地系をdd.dddの度表記で取得していました。</p>
<p>○参考記事<br />
<a href="http://www.yaskey.cside.tv/mapserver/note/gps.html">http://www.yaskey.cside.tv/mapserver/note/gps.html</a><br />
<a href="http://symple.jp/16.html">http://symple.jp/16.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2009/08/20/flash-litegps%e5%8f%96%e5%be%97%e3%80%80%e8%a3%9c%e8%b6%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[flash lite]携帯サイトをつくろう</title>
		<link>http://maxfactory.biz/blog/2009/07/15/flash-lite%e6%90%ba%e5%b8%af%e3%82%b5%e3%82%a4%e3%83%88%e3%82%92%e3%81%a4%e3%81%8f%e3%82%8d%e3%81%86/</link>
		<comments>http://maxfactory.biz/blog/2009/07/15/flash-lite%e6%90%ba%e5%b8%af%e3%82%b5%e3%82%a4%e3%83%88%e3%82%92%e3%81%a4%e3%81%8f%e3%82%8d%e3%81%86/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 06:33:51 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/blog/?p=199</guid>
		<description><![CDATA[
			
				
			
		
携帯サイト製作してる方は、一度は見たことがあるかもしれないですが。
こちらのブログ、ケータイＦｌａｓｈの記事も多いのですが、
内容が見やすいしわかりやすいし、やっていることが面白いです。 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F07%2F15%2Fflash-lite%25e6%2590%25ba%25e5%25b8%25af%25e3%2582%25b5%25e3%2582%25a4%25e3%2583%2588%25e3%2582%2592%25e3%2581%25a4%25e3%2581%258f%25e3%2582%258d%25e3%2581%2586%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F07%2F15%2Fflash-lite%25e6%2590%25ba%25e5%25b8%25af%25e3%2582%25b5%25e3%2582%25a4%25e3%2583%2588%25e3%2582%2592%25e3%2581%25a4%25e3%2581%258f%25e3%2582%258d%25e3%2581%2586%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>携帯サイト製作してる方は、一度は見たことがあるかもしれないですが。<br />
こちらのブログ、ケータイＦｌａｓｈの記事も多いのですが、<br />
内容が見やすいしわかりやすいし、やっていることが面白いです。</p>
<p>○携帯サイトをつくろう<br />
<a href="http://www.plusmb.jp/howto/flash-howto" target="_blank">http://www.plusmb.jp/howto/flash-howto</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2009/07/15/flash-lite%e6%90%ba%e5%b8%af%e3%82%b5%e3%82%a4%e3%83%88%e3%82%92%e3%81%a4%e3%81%8f%e3%82%8d%e3%81%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[flash lite1.×]変数のパス</title>
		<link>http://maxfactory.biz/blog/2009/05/26/flash-lite1%c3%97%e5%a4%89%e6%95%b0%e3%81%ae%e3%83%91%e3%82%b9/</link>
		<comments>http://maxfactory.biz/blog/2009/05/26/flash-lite1%c3%97%e5%a4%89%e6%95%b0%e3%81%ae%e3%83%91%e3%82%b9/#comments</comments>
		<pubDate>Mon, 25 May 2009 15:36:58 +0000</pubDate>
		<dc:creator>max</dc:creator>
				<category><![CDATA[Flash Lite]]></category>
		<category><![CDATA[変数]]></category>

		<guid isPermaLink="false">http://maxfactory.biz/wp/?p=94</guid>
		<description><![CDATA[
			
				
			
		
lite1.xまでの変数のパスは、「ムービークリップのパス」＋「：」＋「変数名」になります。
例）rootにインスタンス名「ball」のＭＣ配置x位置：/ball/:_xy位置：/bal [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F05%2F26%2Fflash-lite1%25c3%2597%25e5%25a4%2589%25e6%2595%25b0%25e3%2581%25ae%25e3%2583%2591%25e3%2582%25b9%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmaxfactory.biz%2Fblog%2F2009%2F05%2F26%2Fflash-lite1%25c3%2597%25e5%25a4%2589%25e6%2595%25b0%25e3%2581%25ae%25e3%2583%2591%25e3%2582%25b9%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>lite1.xまでの変数のパスは、<br /><b>「ムービークリップのパス」＋「：」＋「変数名」</b><br />になります。</p>
<p>例）<br />rootにインスタンス名「ball」のＭＣ配置<br />x位置：/ball/:_x<br />y位置：/ball/:_y</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://maxfactory.biz/blog/2009/05/26/flash-lite1%c3%97%e5%a4%89%e6%95%b0%e3%81%ae%e3%83%91%e3%82%b9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
