<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>LogField</title>
	<atom:link href="http://logfield.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://logfield.wordpress.com</link>
	<description>Helen, Shadow &#38; Yan 's FYP</description>
	<lastBuildDate>Thu, 16 Apr 2009 05:19:42 +0000</lastBuildDate>
	<language>zh-hk</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='logfield.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>LogField</title>
		<link>http://logfield.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://logfield.wordpress.com/osd.xml" title="LogField" />
	<atom:link rel='hub' href='http://logfield.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Edit Profile</title>
		<link>http://logfield.wordpress.com/2009/04/16/edit-profile/</link>
		<comments>http://logfield.wordpress.com/2009/04/16/edit-profile/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 05:02:36 +0000</pubDate>
		<dc:creator>shadow</dc:creator>
				<category><![CDATA[shadow]]></category>
		<category><![CDATA[edit profile]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=163</guid>
		<description><![CDATA[&#8220;Edit Profile&#8221; Design After login, users can edit their profile. It will change their password, email and personal icon.  When the user select a image, it will display the preview immediately. The size of icon is fixed as a square. If the user uploaded a non-square image. The preview will maintain aspect ratio as the above [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=163&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-164" title="200090415_1" src="http://logfield.files.wordpress.com/2009/04/200090415_1.jpg?w=490&#038;h=306" alt="200090415_1" width="490" height="306" /></p>
<p>&#8220;Edit Profile&#8221; Design</p>
<p>After login, users can edit their profile. It will change their password, email and personal icon. </p>
<p><img class="alignnone size-full wp-image-165" title="200090415_2" src="http://logfield.files.wordpress.com/2009/04/200090415_2.jpg?w=490&#038;h=306" alt="200090415_2" width="490" height="306" /></p>
<p>When the user select a image, it will display the preview immediately. The size of icon is fixed as a square. If the user uploaded a non-square image. The preview will maintain aspect ratio as the above picture. Otherview, it will distort the image if do not maintain aspect ratio. </p>
<p><img class="alignnone size-full wp-image-166" title="200090415_3" src="http://logfield.files.wordpress.com/2009/04/200090415_3.jpg?w=490&#038;h=306" alt="200090415_3" width="490" height="306" /></p>
<p style="text-align:justify;">In order to avoid users making an additional step to crop the image size. We provided a online imagecopper - <a title="Permanent Link: Flex Image Cropping Component" rel="bookmark" href="http://blog.mediablur.com/2008/02/20/flex-image-cropping-component/">Flex Image Cropping Component</a><span style="color:#ff0000;">1 </span>.It can maintain cropper ratio and resize and move the crop area. </p>
<p style="text-align:justify;">The preview of icon is similar to <a title="Permanent Link to Image memo" rel="bookmark" href="http://logfield.wordpress.com/2009/01/10/image-memo/">Image memo</a>. Mainly, FileReference is used to select/browse/preivew/upload the file in the memoImage<span style="color:#ff0000;">2-3</span>. FileReference can offer One-stop service. The data type of FileReference is ByteArray. However, the imagecopper just accepts BitmapData or url string which indicated to an external file as the image source. I found that this component used &#8220;Loader&#8221; to load images and I modified the library of imagecopper to load the bytes data of FileReference. Besides, the cropped images is not the original data of FileReference. The data of FileReference is just for read. The cropped image can not be uploaded by the FileReference. Base on the upload principle of FileReference, it will upload the image data to a URLRequest (php). URLRequest<span style="color:#ff0000;">4</span> can use three types of data source which are</p>
<ol>
<li><span style="color:#99cc00;">ByteArray Object</span><span style="color:#99cc00;"><br />
</span></li>
<li><span style="color:#99cc00;">URLVariables</span><span style="color:#99cc00;"><br />
</span></li>
<li><span style="color:#99cc00;">String </span></li>
</ol>
<p style="text-align:justify;"><strong>The steps of upload images:</strong><span style="color:#ff0000;">5,6</span></p>
<ul>
<li>Get the bitmap data from the preview image by <strong>BitmapData </strong>variable</li>
<li>bitmapdata -&gt; Byte Array by <strong>JPEGEncoder</strong>
<ul>
<li><span style="color:#00ccff;"><strong>mx.graphics.codec.JPEGEncoder</strong></span><span style="color:#ff0000;">7</span></li>
<li><a href="http://code.google.com/p/as3corelib/" target="_blank">Adobe corelib PNGEncoder/JPGEncoder class</a><span style="color:#ff0000;">6</span></li>
</ul>
</li>
<li>Byte Array -&gt; Base64 string by <strong>Base64Encoder </strong>
<ul>
<li><a href="http://dynamicflash.com/goodies/base64/" target="_blank">Base64 encoder/decoder class</a><span style="color:#ff0000;">8,9</span></li>
<li><span style="color:#00ccff;"><strong>mx.utils.Base64Encoder</strong></span></li>
</ul>
</li>
<li>Pass the string to the PHP file<span style="color:#ff0000;">8</span> and then save on the server by <strong>URLVariables </strong>&amp; <strong>URLRequest</strong></li>
</ul>
<p>Basically, the above encoders are more or less the same respectively. In order to facilitate the combination with other part of our project, i chose the encoders which are already provided by Flex Builder.</p>
<td> <strong>Reference:</strong></td>
<p><span style="color:#ff0000;">1</span> <a title="Permanent Link: Flex Image Cropping Component" rel="bookmark" href="http://blog.mediablur.com/2008/02/20/flex-image-cropping-component/">Flex Image Cropping Component</a></p>
<p><span style="color:#ff0000;">2</span> <a href="http://hybridhacking.com/tutorials/uploading-files-with-flex-using-php" target="_blank">Uploading Files from Flex using PHP</a></p>
<p><span style="color:#ff0000;">3</span> <a title="Permanent Link to &quot;Uploading files in Flex using the FileReference class&quot;" rel="bookmark" href="http://blog.flexexamples.com/2007/09/21/uploading-files-in-flex-using-the-filereference-class/">Uploading files in Flex using the FileReference class</a></p>
<p><span style="color:#ff0000;">4</span> <a href="http://livedocs.adobe.com/flex/3/langref/flash/net/URLRequest.html#data" target="_blank">Adobe Flex 3 language Reference &#8211; URLRequest #data</a></p>
<p><span style="color:#ff0000;">5</span> <a href="http://www.djangoandflex.org.uk/2007/06/sending_images_from_flex_to_a_1.html" target="_blank">Sending Images From Flex to a Server</a></p>
<p><span style="color:#ff0000;">6</span> <a title="Permanent Link to &quot;Drawing game for future world @ Goonhilly&quot;" rel="bookmark" href="http://www.tezzutezzu.com/blog/actionscript-3/drawing-game-for-future-world-goonhilly">Drawing game for future world @ Goonhilly</a></p>
<p><span style="color:#ff0000;">7</span> <a title="Permanent Link: ImageSnapshot class in Flex 3 SDK" rel="bookmark" href="http://dougmccune.com/blog/2007/06/11/imagesnapshot-class-in-flex-3-sdk/">ImageSnapshot class in Flex 3 SDK</a></p>
<p><span style="color:#ff0000;">8</span> <a href="http://tinkerlog.com/2007/11/03/webcam-snapshots-with-flex3/" target="_blank">Webcam snapshots with Flex3</a></p>
<p><span style="color:#ff0000;">9</span> <a href="http://dynamicflash.com/goodies/base64/" target="_blank">Base64 encoder/decoder class</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=163&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/04/16/edit-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c28569432001052f0e7595cb68d64146?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shadowstop</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/200090415_1.jpg" medium="image">
			<media:title type="html">200090415_1</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/200090415_2.jpg" medium="image">
			<media:title type="html">200090415_2</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/200090415_3.jpg" medium="image">
			<media:title type="html">200090415_3</media:title>
		</media:content>
	</item>
		<item>
		<title>MemoMusic</title>
		<link>http://logfield.wordpress.com/2009/04/14/memomusic/</link>
		<comments>http://logfield.wordpress.com/2009/04/14/memomusic/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 17:51:55 +0000</pubDate>
		<dc:creator>shadow</dc:creator>
				<category><![CDATA[shadow]]></category>
		<category><![CDATA[memo]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=149</guid>
		<description><![CDATA[Create music log panel design I found that a few music player components. Mainly, they can divide into AS, AS+XML, music file management. Base on our project, user will upload the audio file (mp3) and play it. One memo plays one audio. And the music player has some controls. I think mini music player1 is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=149&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-152" title="20090410_1" src="http://logfield.files.wordpress.com/2009/04/20090410_1.jpg?w=490&#038;h=306" alt="20090410_1" width="490" height="306" /></p>
<p>Create music log panel design</p>
<p><img class="alignnone size-full wp-image-156" title="20090410_21" src="http://logfield.files.wordpress.com/2009/04/20090410_21.jpg?w=490&#038;h=306" alt="20090410_21" width="490" height="306" /></p>
<p>I found that a few music player components. Mainly, they can divide into AS, AS+XML, music file management. Base on our project, user will upload the audio file (mp3) and play it. One memo plays one audio. And the music player has some controls. I think mini music player<span style="color:#00ccff;">1</span> is too mini and too simple. It just has play/stop and volume control. Besides AS+XML<span style="color:#00ccff;">2</span> and music manager3 are not suitable for LogField. The player will direct get the url from the database. Creating a new XML file is meaningless and static after retrieving the information from database. Just for music player, music management has a lot function (such as show all the music and arrangement) but i think it is too complicated and unnecessary. On the other hand, <a href="http://tarasnovak.com/blog/" target="_blank">tarasnovak.com</a> &#8216;s music player is very suitable for our project. It provides two music components which are Simple Flex Music Player<span style="color:#ff6600;">1</span> and Flex Music Player<span style="color:#ff6600;">2</span> . Mainly, these players can divide into audio playback control and Visualization. However, these two players used two different playback programs. Simple Flex Music Player used <a title="MP3Player" href="http://labs.flexcoders.nl/samples/MP3Player/version003/srcview/index.html" target="_blank">nl.fxc.controls.MP3Player.as</a> class from <a href="http://labs.flexcoders.nl/" target="_blank">labs.flexcoders.nl</a> . Flex Music Player used <a rel="nofollow" href="http://playr.nocreativity.com/" target="_blank">Playr</a> class.</p>
<p><span style="text-decoration:underline;">Simple Flex Music Player</span></p>
<ul>
<li>Play/Pause/Stop</li>
<li>Looping</li>
<li>Volume control and Mute</li>
<li><span style="color:#99cc00;">Getting the information of audio to be the song and album names automatically</span></li>
<li>Show the timeline <span style="color:#ff99cc;">(just show, cannot modify)</span></li>
<li><span style="color:#ff99cc;">After Mute the audio, drag &amp; drog the volume control, it will still show mute, but it is not mute anymore.</span></li>
</ul>
<p><span style="text-decoration:underline;">Flex Music Player</span></p>
<ul>
<li>Basic functions of Simple Flex Music Player</li>
<li><span style="color:#ff99cc;">Drag &amp; drop the time line</span></li>
<li>playlist (previous/next songs)</li>
<li><span style="color:#99cc00;">Required user input the song and album names</span></li>
<li>Change the style skin</li>
<li>Resize the player</li>
<li>One more visualization</li>
</ul>
<p>Finally, I chose s &#8220;Simple Flex Music Player&#8221;. Class is simple and easlier to modify than Flex Music Player. Now, it can control the play time and amended the bugs of volume control.</p>
<p><strong>Reference:</strong></p>
<p><span style="color:#ff0000;">1</span>. <a href="http://tarasnovak.com/blog/2008/10/10/simple-flex-music-player/" target="_blank">Simple Flex Music Player</a></p>
<p><span style="color:#ff0000;">2</span>. <a href="http://tarasnovak.com/blog/2009/01/13/flex-music-player-example/" target="_blank">Flex Music Player</a></p>
<p><span style="color:#ff0000;">3</span>. <a href="http://tarasnovak.com/blog/2009/01/15/flex-music-player-v2/">Flex MusicPlayer v.2 with MusicVisualizer</a></p>
<p><strong>Some Researches:</strong></p>
<p><span style="color:#00ccff;">1</span>. <a href="http://flashspeaksactionscript.com/create-a-mini-music-player-in-as3/" target="_blank">Create a Mini Music Player in AS3</a></p>
<p><span style="color:#00ccff;">2</span>. <a href="http://flashspeaksactionscript.com/flash-xml-music-player/" target="_blank">Flash-XML Music Player in AS2</a></p>
<p><span style="color:#00ccff;">3</span>. <a href="http://code.google.com/p/socialmediaplayer/" target="_blank">Social Media Player</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=149&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/04/14/memomusic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c28569432001052f0e7595cb68d64146?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shadowstop</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090410_1.jpg" medium="image">
			<media:title type="html">20090410_1</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090410_21.jpg" medium="image">
			<media:title type="html">20090410_21</media:title>
		</media:content>
	</item>
		<item>
		<title>MemoVideo Final ver.</title>
		<link>http://logfield.wordpress.com/2009/04/09/memovideo-final-ver/</link>
		<comments>http://logfield.wordpress.com/2009/04/09/memovideo-final-ver/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 12:52:15 +0000</pubDate>
		<dc:creator>shadow</dc:creator>
				<category><![CDATA[shadow]]></category>
		<category><![CDATA[memo]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=142</guid>
		<description><![CDATA[Create video log panel design As I mentioned before1, I used a  Flex embedded youtube player2 component. It is workable in local PC. But it uploaded to web server, it doesn&#8217;t work. Therefore, i found another flex components for youtube player1-5. These youtube players can play youtube in web server. However, these players are not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=142&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-143" title="20090409_1" src="http://logfield.files.wordpress.com/2009/04/20090409_1.jpg?w=490&#038;h=306" alt="20090409_1" width="490" height="306" /></p>
<p>Create video log panel design</p>
<p><img class="alignnone size-full wp-image-144" title="20090409_2" src="http://logfield.files.wordpress.com/2009/04/20090409_2.jpg?w=490&#038;h=306" alt="20090409_2" width="490" height="306" /></p>
<p>As I mentioned before<span style="color:#ff0000;">1</span>, I used a  <a href="http://biemond.blogspot.com/2008/06/flex-embedded-youtube-player.html" target="_self">Flex embedded youtube player</a><span style="color:#ff0000;">2</span> component. It is workable in local PC. But it uploaded to web server, it doesn&#8217;t work. Therefore, i found another flex components for youtube player<span style="color:#00ccff;">1-5</span>. These youtube players can play youtube in web server. However, these players are not suitable for our LogFeild. For our project, there are more than one youtube player memos in the same canvas. Even i post two different videos, just only one video can play. These five players have a common attribute which used swfLoader to play youtube. When main application page loaded, players start to load. I tried to unload the swfLoader first, and then play a new video. It still didn&#8217;t work.  I found that the original verion player is different from the 5 players. It used the VideoDisplay. Moreover, I found that &#8220;Flex embedded youtube player&#8221; has one more lastest version<span style="color:#ff0000;">3</span>. It is necesary to a proxy or php script to cross domain. It used the curl session to get the information of youtube. </p>
<p>The previous youtube version will automatically load the video when the memo added in the application. And then it will show the preview(the 1st frame) of video. If there was a few video memos. It may waste the time and resources to load all the videos. It may retard the running time. For reduce the workload for video memo,  I used the Loader and URLRequest to get the thumb image url and relatived information (eg. title,  total time). After clicking the play button, player starts to load. </p>
<p><strong>Reference:</strong></p>
<p><span style="color:#ff0000;">1</span> <a title="Permanent Link to Youtube memo" rel="bookmark" href="http://logfield.wordpress.com/2008/12/07/youtube-memo/">Youtube memo</a></p>
<p><span style="color:#ff0000;">2</span> <a href="http://biemond.blogspot.com/2008/06/flex-embedded-youtube-player.html" target="_blank">Flex embedded youtube player</a></p>
<p><span style="color:#ff0000;">3</span> <a href="http://biemond.blogspot.com/2008/06/flex-embedded-youtube-player-11.html" target="_blank">Flex embedded youtube player  1.1</a></p>
<p><span style="color:#ff0000;">4</span> <a href="http://labs.adobe.com/wiki/index.php/Flex:Accessing_Data" target="_blank">Flex:Accessing Data</a></p>
<p><span style="color:#ff0000;">5</span> <a href="http://www.switchonthecode.com/tutorials/using-a-php-proxy-with-flex-to-talk-cross-domain">Using a PHP Proxy with Flex to talk Cross Domain</a></p>
<p><span style="color:#ff0000;">6</span> <a href="http://www.blog.highub.com/php/php-core/php-curl-xampp/" target="_blank">PHP cURL XAMPP</a></p>
<p><strong>Research:</strong></p>
<p><span style="color:#ff0000;"><span style="color:#00ccff;">1</span>  <span style="color:#000000;"><a href="http://www.video-flash.de/index/tubeloc-youtube-videos-mit-actionscript-3-einbinden/" target="_blank">TubeLoc</a>  </span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><span style="color:#00ccff;">2</span>  <a href="http://thanksmister.com/?p=57" target="_blank">Flex Youtube Grabber</a></span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><span style="color:#00ccff;">3</span>  <a href="http://code.google.com/p/as3youtubelib/" target="_blank">Google as3youtubelib</a></span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><span style="color:#00ccff;">4</span>  <a href="http://www.lostinactionscript.com/blog/index.php/2007/10/13/flash-you-tube-api/" target="_blank">Flash Youtube AS3</a></span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;"><span style="color:#00ccff;">5</span>  <a href="http://apiblog.youtube.com/2009/01/flex-embedded-player-christmas-story.html" target="_blank">Embeded Youtube player with LocalConnetion</a></span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=142&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/04/09/memovideo-final-ver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c28569432001052f0e7595cb68d64146?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shadowstop</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090409_1.jpg" medium="image">
			<media:title type="html">20090409_1</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090409_2.jpg" medium="image">
			<media:title type="html">20090409_2</media:title>
		</media:content>
	</item>
		<item>
		<title>memoPanel</title>
		<link>http://logfield.wordpress.com/2009/04/04/memopanel/</link>
		<comments>http://logfield.wordpress.com/2009/04/04/memopanel/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 08:29:03 +0000</pubDate>
		<dc:creator>shadow</dc:creator>
				<category><![CDATA[shadow]]></category>
		<category><![CDATA[memo]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=138</guid>
		<description><![CDATA[As I mentioned before1, I used superpanel to be basic panel of our memo. Basically, the new panel kept all the functions of SuperPanel2. click title bar to drag &#38; drop Maximize the window size click the title &#38; content to focus panel, bring to the front reize the panel Additional function: Due to titlebar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=138&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p><img class="alignnone size-full wp-image-139" title="20090404_1" src="http://logfield.files.wordpress.com/2009/04/20090404_1.jpg?w=490&#038;h=195" alt="20090404_1" width="490" height="195" /></p>
<p class="title">As I mentioned before<span style="color:#ff0000;">1</span>, I used superpanel to be basic panel of our memo. Basically, the new panel kept all the functions of SuperPanel<span style="color:#ff0000;">2</span>.</p>
<ul>
<li>click title bar to drag &amp; drop</li>
<li>Maximize the window size</li>
<li>click the title &amp; content to focus panel, bring to the front</li>
<li>reize the panel</li>
</ul>
<p class="title">Additional function:</p>
<ul>
<li>Due to titlebar doesn&#8217;t have enough space to add more control buttons. Control buttons are moved from the titlebar to the bottom of Memo Panel. </li>
<li>not only, the title bar can drag &amp; drop, but also the content(eg. image, canvas) and control bar can.</li>
<li>Control bar can be set to hide when the mouse out, show when the mouse over.</li>
</ul>
<p class="title">Referecne:</p>
<p class="title"><span style="color:#ff0000;">1</span> <a title="Permanent Link to text memo X superpanel" rel="bookmark" href="../2008/11/12/text-memo-x-superpanel/">text memo X superpanel</a></p>
<p class="title"><span style="color:#ff0000;">2</span> <a href="http://www.wietseveenstra.nl/blog/2007/04/flex-superpanel-v15/" target="_blank">http://www.wietseveenstra.nl/blog/2007/04/flex-superpanel-v15/</a></p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=138&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/04/04/memopanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c28569432001052f0e7595cb68d64146?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shadowstop</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090404_1.jpg" medium="image">
			<media:title type="html">20090404_1</media:title>
		</media:content>
	</item>
		<item>
		<title>MemoText Final Ver.</title>
		<link>http://logfield.wordpress.com/2009/04/02/memotext-final-ver/</link>
		<comments>http://logfield.wordpress.com/2009/04/02/memotext-final-ver/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 09:48:30 +0000</pubDate>
		<dc:creator>shadow</dc:creator>
				<category><![CDATA[shadow]]></category>
		<category><![CDATA[memo]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=127</guid>
		<description><![CDATA[Left-hand side is the log preview and the background attribute at the bottom. Right-hand side is the content, tags and privacy status. Preview Function I used a flex component called &#8220;ObjectHandles&#8221;.1 It allows the resize and movie in both  in both vertical and horizontal directions. When resizing or moving ObjectHandles out of the preview area. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=127&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-126" title="20090402_1" src="http://logfield.files.wordpress.com/2009/04/20090402_1.jpg?w=490&#038;h=256" alt="20090402_1" width="490" height="256" /></p>
<p><img class="alignnone size-full wp-image-129" title="20090402_3" src="http://logfield.files.wordpress.com/2009/04/20090402_3.jpg?w=490&#038;h=256" alt="20090402_3" width="490" height="256" /></p>
<p>Left-hand side is the log preview and the background attribute at the bottom.</p>
<p>Right-hand side is the content, tags and privacy status.</p>
<p><strong>Preview Function</strong></p>
<p><strong><img class="alignnone size-full wp-image-128" title="20090402_2" src="http://logfield.files.wordpress.com/2009/04/20090402_2.jpg?w=490&#038;h=256" alt="20090402_2" width="490" height="256" /></strong></p>
<p>I used a flex component called &#8220;ObjectHandles&#8221;.<span style="color:#ff0000;">1</span> It allows the resize and movie in both  in both vertical and horizontal directions. When resizing or moving ObjectHandles out of the preview area. The object may be disappeared or out of control. In order to prevent object loss, the object position is limitied. It must remain the corner of log within the preview area.</p>
<p>Because of one of style &#8211; speak bubbles, The preview text and preview background are individual. Text can move and reize within the background. When background is resizing , the size and position of text will be limited by the size of background. When backgound is moving, the positon of text will synchronize with background. </p>
<p><img class="alignnone size-full wp-image-133" title="20090402_4" src="http://logfield.files.wordpress.com/2009/04/20090402_42.jpg?w=490&#038;h=256" alt="20090402_4" width="490" height="256" /></p>
<p>There is a reset button at the right bottom corner. It can reset the size and position of text and background. And then, &#8220;RichTextEditor&#8221; replaced the &#8220;TextArea&#8221;.  RichTextEditor has more flexible text editing.</p>
<p><strong>Reference:</strong></p>
<p><span style="color:#ff0000;">1</span> <a href="http://www.rogue-development.com/objectHandles.html" target="_blank">http://www.rogue-development.com/objectHandles.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=127&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/04/02/memotext-final-ver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c28569432001052f0e7595cb68d64146?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shadowstop</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090402_1.jpg" medium="image">
			<media:title type="html">20090402_1</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090402_3.jpg" medium="image">
			<media:title type="html">20090402_3</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090402_2.jpg" medium="image">
			<media:title type="html">20090402_2</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/04/20090402_42.jpg" medium="image">
			<media:title type="html">20090402_4</media:title>
		</media:content>
	</item>
		<item>
		<title>meeting@16Feb2009</title>
		<link>http://logfield.wordpress.com/2009/02/27/meeting16feb2009/</link>
		<comments>http://logfield.wordpress.com/2009/02/27/meeting16feb2009/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 12:31:18 +0000</pubDate>
		<dc:creator>shadow</dc:creator>
				<category><![CDATA[meeting]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=122</guid>
		<description><![CDATA[further function: timeline (helen) drawing(shadow) keyword, tags, search, catagory (helen) interface (shadow) personal info. edit (yan) private/public(shadow) April testing Other suggestion from advisors timeline(where and how to set the mechanisms) new update indication (The lasted one on top, lasted 10!) how to jump to another platform of your friends (In fd network: click on it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=122&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>further function:</p>
<ul>
<li>timeline (helen)</li>
<li>drawing(shadow)</li>
<li>keyword, tags, search, catagory (helen)</li>
<li>interface (shadow)</li>
<li>personal info. edit (yan)</li>
<li>private/public(shadow)</li>
</ul>
<p>April testing</p>
<p>Other suggestion from advisors</p>
<ul>
<li>timeline(where and how to set the mechanisms)</li>
<li>new update indication (The lasted one on top, lasted 10!)</li>
<li>how to jump to another platform of your friends (In fd network: click on it direct)</li>
<li>multiple platform for 1 user (give them a switch)</li>
<li>public view/private view (switch)</li>
<li>visit by friend (fd can rea via/drag along to set but not save)</li>
<li>work co-operation (make different comment but group them together</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=122&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/02/27/meeting16feb2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c28569432001052f0e7595cb68d64146?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shadowstop</media:title>
		</media:content>
	</item>
		<item>
		<title>Combine all file</title>
		<link>http://logfield.wordpress.com/2009/02/11/combine-all-file/</link>
		<comments>http://logfield.wordpress.com/2009/02/11/combine-all-file/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 03:55:11 +0000</pubDate>
		<dc:creator>helenhelen123</dc:creator>
				<category><![CDATA[helen]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=115</guid>
		<description><![CDATA[http://sweb.cityu.edu.hk/manfkwong2/FYP[11_2_2009_version10].zip (directly export from flex&#8230;you can choose import zip to import the whole project) http://sweb.cityu.edu.hk/manfkwong2/FYP[11_2_2009_version10]_not%20export.zip (copy all document from the whole project)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=115&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://sweb.cityu.edu.hk/manfkwong2/FYP[11_2_2009_version10].zip">http://sweb.cityu.edu.hk/manfkwong2/FYP[11_2_2009_version10].zip</a></p>
<p>(directly export from flex&#8230;you can choose import zip to import the whole project)</p>
<p><a href="http://sweb.cityu.edu.hk/manfkwong2/FYP[11_2_2009_version10]_not%20export.zip">http://sweb.cityu.edu.hk/manfkwong2/FYP[11_2_2009_version10]_not%20export.zip</a></p>
<p>(copy all document from the whole project)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=115&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/02/11/combine-all-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99b093ba9b90f66784db5ceef298bc43?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">helenhelen123</media:title>
		</media:content>
	</item>
		<item>
		<title>Flash media server-Remote Shared object</title>
		<link>http://logfield.wordpress.com/2009/02/10/flash-media-server-remote-shared-object/</link>
		<comments>http://logfield.wordpress.com/2009/02/10/flash-media-server-remote-shared-object/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 03:21:34 +0000</pubDate>
		<dc:creator>helenhelen123</dc:creator>
				<category><![CDATA[helen]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=108</guid>
		<description><![CDATA[Now I am using the Remote Shared Object by using flash media server to remember the memo that user create.It can real time update the information and support multi-user.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=108&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-109" title="logfield61" src="http://logfield.files.wordpress.com/2009/02/logfield61.jpg?w=496&#038;h=94" alt="logfield61" width="496" height="94" /></p>
<p>Now I am using the Remote Shared Object by using flash media server to remember the memo that user create.It can real time update the information and support multi-user.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=108&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/02/10/flash-media-server-remote-shared-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99b093ba9b90f66784db5ceef298bc43?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">helenhelen123</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/02/logfield61.jpg" medium="image">
			<media:title type="html">logfield61</media:title>
		</media:content>
	</item>
		<item>
		<title>Amfphp with identify the user or add other function related to user</title>
		<link>http://logfield.wordpress.com/2009/02/10/amfphp-flash-media-server/</link>
		<comments>http://logfield.wordpress.com/2009/02/10/amfphp-flash-media-server/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 03:11:39 +0000</pubDate>
		<dc:creator>helenhelen123</dc:creator>
				<category><![CDATA[helen]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/2009/02/10/amfphp-flash-media-server/</guid>
		<description><![CDATA[I have done the amfphp for the simple login , the usage is to identify user which help the next step of recording the user memo. So later, it is esay for us to add function to connect to database by using amfphp like password, registration etc. The alert is the id number of user [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=102&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have done the amfphp for the simple login , the usage is to identify user which help the next step of recording the user memo.</p>
<p><img class="alignnone size-full wp-image-94" title="logfield1" src="http://logfield.files.wordpress.com/2009/02/logfield1.jpg?w=497&#038;h=485" alt="logfield1" width="497" height="485" /></p>
<p>So later, it is esay for us to add function to connect to database by using amfphp like password, registration etc.</p>
<p><img class="alignnone size-full wp-image-100" title="logfield21" src="http://logfield.files.wordpress.com/2009/02/logfield21.jpg?w=497&#038;h=495" alt="logfield21" width="497" height="495" /></p>
<p><img class="alignnone size-full wp-image-101" title="logfield31" src="http://logfield.files.wordpress.com/2009/02/logfield31.jpg?w=497&#038;h=497" alt="logfield31" width="497" height="497" /></p>
<p>The alert is the id number of user which is different between each user.In database , there are about 10 users.</p>
<p><img class="alignnone size-full wp-image-104" title="logfield51" src="http://logfield.files.wordpress.com/2009/02/logfield51.jpg?w=497&#038;h=331" alt="logfield51" width="497" height="331" /></p>
<p>I also combine the code &#8220;community&#8221;  with the &#8221; memo board &#8220;, and everythning is normal now.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=102&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/02/10/amfphp-flash-media-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99b093ba9b90f66784db5ceef298bc43?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">helenhelen123</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/02/logfield1.jpg" medium="image">
			<media:title type="html">logfield1</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/02/logfield21.jpg" medium="image">
			<media:title type="html">logfield21</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/02/logfield31.jpg" medium="image">
			<media:title type="html">logfield31</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/02/logfield51.jpg" medium="image">
			<media:title type="html">logfield51</media:title>
		</media:content>
	</item>
		<item>
		<title>overview map 2</title>
		<link>http://logfield.wordpress.com/2009/01/21/overview-map-2/</link>
		<comments>http://logfield.wordpress.com/2009/01/21/overview-map-2/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 08:01:40 +0000</pubDate>
		<dc:creator>shadow</dc:creator>
				<category><![CDATA[shadow]]></category>

		<guid isPermaLink="false">http://logfield.wordpress.com/?p=90</guid>
		<description><![CDATA[The overview map shows the current view of the memo container and then clicking the overview map can control the current view to corresponding position.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=90&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-91" title="20090121_1" src="http://logfield.files.wordpress.com/2009/01/20090121_1.jpg?w=490&#038;h=343" alt="20090121_1" width="490" height="343" /></p>
<p>The overview map shows the current view of the memo container and then clicking the overview map can control the current view to corresponding position.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/logfield.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/logfield.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/logfield.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/logfield.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/logfield.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/logfield.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/logfield.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/logfield.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/logfield.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/logfield.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/logfield.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/logfield.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/logfield.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/logfield.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=logfield.wordpress.com&amp;blog=4989307&amp;post=90&amp;subd=logfield&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://logfield.wordpress.com/2009/01/21/overview-map-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c28569432001052f0e7595cb68d64146?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shadowstop</media:title>
		</media:content>

		<media:content url="http://logfield.files.wordpress.com/2009/01/20090121_1.jpg" medium="image">
			<media:title type="html">20090121_1</media:title>
		</media:content>
	</item>
	</channel>
</rss>
