<?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>BetaDesigns( Blog ).toString( ); &#187; Japanese</title>
	<atom:link href="http://www.betadesigns.co.uk/Blog/category/personal/japanese-personal/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.betadesigns.co.uk/Blog</link>
	<description>Flex and Component Development</description>
	<lastBuildDate>Sat, 10 Jul 2010 13:38:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing Japanese, Chinese or even Korean on UK Blackberry</title>
		<link>http://www.betadesigns.co.uk/Blog/2009/12/30/installing-japanese-chinese-or-even-korean-on-uk-blackberry/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2009/12/30/installing-japanese-chinese-or-even-korean-on-uk-blackberry/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 03:48:46 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Japanese]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[chinese]]></category>
		<category><![CDATA[korean]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=129</guid>
		<description><![CDATA[Just in case anyone was having as much trouble as me installing one of the above languages onto their UK Blackberry I thought i would post this very useful link.
http://www.blackberryforums.com/general-8300-series-discussion-curve/151613-cjk-support-os-4-5-a.html
]]></description>
			<content:encoded><![CDATA[<p id="top" />Just in case anyone was having as much trouble as me installing one of the above languages onto their UK Blackberry I thought i would post this very useful link.</p>
<p>http://www.blackberryforums.com/general-8300-series-discussion-curve/151613-cjk-support-os-4-5-a.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2009/12/30/installing-japanese-chinese-or-even-korean-on-uk-blackberry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Application Version Control in AS3</title>
		<link>http://www.betadesigns.co.uk/Blog/2008/06/24/application-version-control-in-as3/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2008/06/24/application-version-control-in-as3/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 01:23:46 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Bug Fixes]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Japanese]]></category>
		<category><![CDATA[.properties files]]></category>
		<category><![CDATA[Actionscript version control]]></category>
		<category><![CDATA[application version control]]></category>
		<category><![CDATA[ContextMenuItem]]></category>
		<category><![CDATA[custom context menu]]></category>
		<category><![CDATA[flash.events.ContextMenuEvent;]]></category>
		<category><![CDATA[flash.ui.ContextMenu]]></category>
		<category><![CDATA[flash.ui.ContextMenuItem;]]></category>
		<category><![CDATA[Flex application version control]]></category>
		<category><![CDATA[mx.resources.ResourceBundle;]]></category>
		<category><![CDATA[resource bundles]]></category>
		<category><![CDATA[ResourceBundles in Flex]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=22</guid>
		<description><![CDATA[I thought that I would just write a quick note on how I know which version of an application I am looking at when it has been published to the web. It's all well and good saying its revision 87 from svn but how do you know? Well a simple way is to add it [...]]]></description>
			<content:encoded><![CDATA[<p id="top" />I thought that I would just write a quick note on how I know which version of an application I am looking at when it has been published to the web. It's all well and good saying its revision 87 from svn but how do you know? Well a simple way is to add it to the Flashplayers custom context menu. Right click to see the custom menu and to view the source
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_CCPicker_1113572083"
			class="flashmovie"
			width="200"
			height="100">
	<param name="movie" value="/Examples/VersionControl/CCPicker.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="/Examples/VersionControl/CCPicker.swf"
			name="fm_CCPicker_1113572083"
			width="200"
			height="100">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><span id="more-22"></span></p>
<p>This comprises of making just two files one of which is a singleton class that can be used for every project  you want to add version control to and the second is a VersionControl.properties file which you update before you publish a new version of your application lets take a look at that file first</p>
<pre class="flex"><span style="color: #009900; font-style: italic;">#Each item takes the same params as the ContextMenuItem class</span>
<span style="color: #009900; font-style: italic;">#and is seperated by and &amp;amp; ampersand</span>
<span style="color: #009900; font-style: italic;">#caption:String = caption Value : String,</span>
<span style="color: #009900; font-style: italic;">#separatorBefore:Boolean = false,</span>
<span style="color: #009900; font-style: italic;">#enabled:Boolean = true,</span>
<span style="color: #009900; font-style: italic;">#visible:Boolean = true</span>
<span style="color: #009900; font-style: italic;">#In addition each item supports a url variable just add</span>
<span style="color: #009900; font-style: italic;">#&amp;amp;YOUR URL GOES HERE;</span>
Version=Version <span style="color: #000000;">0.1</span>&amp;amp;false&amp;amp;false&amp;amp;true;
url=Developer:A McCormick&amp;amp;false&amp;amp;true&amp;amp;true&amp;amp;www.<span style="color: #000000;">goeshere</span>.<span style="color: #000000;">com</span>
viewSource=ViewSource&amp;amp;false&amp;amp;true&amp;amp;true&amp;amp;www.<span style="color: #000000;">goeshere</span>.<span style="color: #000000;">com</span></pre>
<p>The Second class controls what these properties do i know its a long class but its fully commented. ( right click the grey square above and choose view source to see the VersionController class ).<br />
Basically it loops through the VersionControl.properties file and builds context menu items based on the values, adding the ability to include links as well.<br />
And finally all you have to do is call getInstance( this ); in your main application file.</p>
<pre class="flex">&lt;!--<span style="color: #000000;">&#91;</span>CDATA<span style="color: #000000;">&#91;</span>
&nbsp;
			<span style="color: #5b7bff; font-weight: bold;">import</span> VersionControl.<span style="color: #000000;">VersionController</span>;
&nbsp;
		<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#93;</span>--&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2008/06/24/application-version-control-in-as3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>二百日の後、日本語の能力試験ですね！</title>
		<link>http://www.betadesigns.co.uk/Blog/2008/05/21/%e4%ba%8c%e7%99%be%e6%97%a5%e3%81%ae%e5%be%8c%e3%80%81%e6%97%a5%e6%9c%ac%e8%aa%9e%e3%81%ae%e8%83%bd%e5%8a%9b%e8%a9%a6%e9%a8%93%e3%81%a7%e3%81%99%e3%81%ad%ef%bc%81/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2008/05/21/%e4%ba%8c%e7%99%be%e6%97%a5%e3%81%ae%e5%be%8c%e3%80%81%e6%97%a5%e6%9c%ac%e8%aa%9e%e3%81%ae%e8%83%bd%e5%8a%9b%e8%a9%a6%e9%a8%93%e3%81%a7%e3%81%99%e3%81%ad%ef%bc%81/#comments</comments>
		<pubDate>Wed, 21 May 2008 15:05:46 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Japanese]]></category>
		<category><![CDATA[Japanese Language Proficiency Test]]></category>
		<category><![CDATA[日本語、JLPT]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=13</guid>
		<description><![CDATA[週末以外毎日、古い試験紙をできるつもりです！ここ点とパーセントを書いています。
]]></description>
			<content:encoded><![CDATA[<p id="top" />週末以外毎日、古い試験紙をできるつもりです！ここ点とパーセントを書いています。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2008/05/21/%e4%ba%8c%e7%99%be%e6%97%a5%e3%81%ae%e5%be%8c%e3%80%81%e6%97%a5%e6%9c%ac%e8%aa%9e%e3%81%ae%e8%83%bd%e5%8a%9b%e8%a9%a6%e9%a8%93%e3%81%a7%e3%81%99%e3%81%ad%ef%bc%81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>おはよう皆さん、</title>
		<link>http://www.betadesigns.co.uk/Blog/2008/05/19/%e3%81%8a%e3%81%af%e3%82%88%e3%81%86%e7%9a%86%e3%81%95%e3%82%93%e3%80%81/</link>
		<comments>http://www.betadesigns.co.uk/Blog/2008/05/19/%e3%81%8a%e3%81%af%e3%82%88%e3%81%86%e7%9a%86%e3%81%95%e3%82%93%e3%80%81/#comments</comments>
		<pubDate>Mon, 19 May 2008 09:16:13 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Japanese]]></category>
		<category><![CDATA[日本語、JLPT]]></category>

		<guid isPermaLink="false">http://www.betadesigns.co.uk/Blog/?p=8</guid>
		<description><![CDATA[今年、二級日本語能力試験を出来たいから、毎週、日本語でブログを書いてつもりです。僕は日本語で上手じゃないから、練習したいですね。頑張りましょう。二百一日の後、試験の日です。
]]></description>
			<content:encoded><![CDATA[<p id="top" />今年、二級日本語能力試験を出来たいから、毎週、日本語でブログを書いてつもりです。僕は日本語で上手じゃないから、練習したいですね。頑張りましょう。二百一日の後、試験の日です。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.betadesigns.co.uk/Blog/2008/05/19/%e3%81%8a%e3%81%af%e3%82%88%e3%81%86%e7%9a%86%e3%81%95%e3%82%93%e3%80%81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
