<?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>Swami Charan&#039;s Blog</title>
	<atom:link href="http://www.swamicharan.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.swamicharan.com/blog</link>
	<description>My personal blog...</description>
	<lastBuildDate>Sat, 17 Jul 2010 13:02:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Top 5 New Features in Photoshop CS5</title>
		<link>http://www.swamicharan.com/blog/photoshop/top-5-new-features-in-photoshop-cs5/</link>
		<comments>http://www.swamicharan.com/blog/photoshop/top-5-new-features-in-photoshop-cs5/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 06:04:21 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Content-aware fill]]></category>
		<category><![CDATA[featuers of CS5]]></category>
		<category><![CDATA[Photoshop CS5]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=779</guid>
		<description><![CDATA[Check out these 5 Top features in Photoshop CS5...Really cool...

]]></description>
			<content:encoded><![CDATA[<p>Check out these 5 Top features in Photoshop CS5...Really cool...</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/imEZ4Y9eTRk&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/imEZ4Y9eTRk&amp;hl=en_US&amp;fs=1&amp;" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/photoshop/top-5-new-features-in-photoshop-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Menu in Flash AS3</title>
		<link>http://www.swamicharan.com/blog/flash/764/</link>
		<comments>http://www.swamicharan.com/blog/flash/764/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 09:32:23 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Easing]]></category>
		<category><![CDATA[Flash Menu]]></category>
		<category><![CDATA[Tween]]></category>
		<category><![CDATA[TweenEvent]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=764</guid>
		<description><![CDATA[Hi all, upon request from people, here i am with a small tutorial on 'Creating a Simple Menu' in Flash AS3.
Final Output:











In Flash Authoring, first create two movieclips 'btn_mc' and 'movie_mc' in the Library and make sure you select 'Export to Actionscript' checkbox in Symbol Properties of these movieclips to make use of them in [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all, upon request from people, here i am with a small tutorial on 'Creating a Simple Menu' in Flash AS3.</p>
<p><strong>Final Output:</strong><br />

<object width="550" height="400">
<param name="movie" value="http://www.swamicharan.com/blog/wp-content/uploads/2010/04/test.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#FFFFFF"></param>
<embed type="application/x-shockwave-flash" width="550" height="400" src="http://www.swamicharan.com/blog/wp-content/uploads/2010/04/test.swf" quality="high" bgcolor="#FFFFFF" wmode="window" menu="false" ></embed>
</object>
</p>
<p><span id="more-764"></span></p>
<p>In Flash Authoring, first create two movieclips '<strong>btn_mc</strong>' and '<strong>movie_mc</strong>' in the Library and make sure you select '<strong>Export to Actionscript</strong>' checkbox in Symbol Properties of these movieclips to make use of them in .as file.</p>
<p><img class="aligncenter size-full wp-image-767" title="Symbol_Properties" src="http://www.swamicharan.com/blog/wp-content/uploads/2010/04/Symbol_Properties.jpg" alt="Symbol_Properties" width="248" height="329" /></p>
<p>Once these two movieclips are created, save this fla as 'test.fla' and create a new ActionScript File named 'test.as' in the same directory. We will be using this actionscript file as a Document Class for 'test.fla'. Inorder to use this .as file as a document class, we have to enter the name of the class(test) in ActionScript file in 'Class' textField under Publish Settings.</p>
<p><img class="aligncenter size-full wp-image-768" title="documentClass" src="http://www.swamicharan.com/blog/wp-content/uploads/2010/04/documentClass.jpg" alt="documentClass" width="312" height="369" /></p>
<p>Once Document class is set, we are done with 'test.fla'. Move to 'test.as' to start with coding.</p>
<p>Initially we import required classes and start with class declaration:</p>
<pre class="brush: php;">package {

	import flash.display.MovieClip;
	import flash.display.Stage;
	import flash.events.MouseEvent;
	import fl.transitions.Tween;
	import fl.transitions.TweenEvent;
	import fl.transitions.easing.*;

	public class test extends MovieClip {
		public function test() {
                                   setup();
		}
	}
}</pre>
<p class="brush: php;"><em>Note: Make sure the <strong>public</strong> class name is same as the name of .as file.</em></p>
<p class="brush: php;">Declare some variabled we need as class member variables.</p>
<pre class="brush: php;">private var activeMovie:String="";
private var tempArray:Array=[];
private var names:Array=["home","profile","projects","contact","about"];
private var movie:MovieClip;
private var fwdTween:Tween;
private var bkTween:Tween;</pre>
<p class="brush: php;">Inside the constructor we have a function <em>setup()</em> called. We will look into this function now. First we need to arrange the buttons at the bottom on the stage by instantiating '<em>btn_mc</em>' and giving <em>'x'</em> and '<em>y</em>' positions. Using '<em>name</em>' property of the movieclip, give names to these buttons to know which button is being clicked.</p>
<pre class="brush: php;">var temp:MovieClip;

for (var i:int=0; i&lt;5; i++) {
	temp = new btn_mc();
	temp.name=names[i];
	temp.x = i*(temp.width+10)+temp.width/2+10;
	temp.y=350;

	addChild(temp);
	tempArray.push(temp);
	temp.addEventListener(MouseEvent.CLICK, onClick);
}</pre>
<p class="brush: php;">We have declared an <em>eventListener</em> for <em>MouseEvent.CLICK</em> to handle click events.</p>
<p class="brush: php;">By default we will show an instance of '<em>movie_mc</em>' which shows the a label as <em>Home</em> with a Tween motion.<em>. </em></p>
<pre class="brush: php;">movie = new movie_mc();
movie.label_txt.text=names[0];
movie.x=-240;
movie.y=210;
addChild(movie);
fwdTween=new Tween(movie,"x",Elastic.easeInOut,-240,240,1,true);</pre>
<p class="brush: php;">Till now, we have arranged the buttons at the bottom and default movieclip that appears on launching the swf.</p>
<p class="brush: php;">On clicking any of the button at the bottom, that specific movieclip should be displayed and the exisiting movie should go off the stage. This we will be doing inside the eventListener <em>onClick()</em>.</p>
<p class="brush: php;">On clicking a specific button, move the existing movie off the stage first, changing the label of <em>moive_mc.label_txt</em> to desired one and getting the new movieclip to the stage.</p>
<pre class="brush: php;">private function onClick(event:MouseEvent):void {

	if (event.target.name==activeMovie) {
		//Do nothing
	} else {
		bkTween=new Tween(movie,"x",Regular.easeOut,240,-240,0.5,true);
		bkTween.addEventListener(TweenEvent.MOTION_FINISH, newMotion);

		movie.label_txt.text=event.target.name;
		movie.x=-240;
		movie.y=210;
		addChild(movie);

		activeMovie=event.target.name;
	}
}

private function newMotion(e:TweenEvent):void{
	fwdTween=new Tween(movie,"x",Regular.easeOut,-240,240,0.5,true);
}</pre>
<p class="brush: php;">As this is a simple menu, we are just changing the label the <em>movie_mc</em>. Incase if the content of the <em>movie_mc</em> varies with different tabs, we can add that specific content into <em>movie_mc</em> based on the tab clicked.</p>
<p class="brush: php;"><strong>Final <em>test.as:</em></strong></p>
<pre class="brush: php;">package {

	import flash.display.MovieClip;
	import flash.display.Stage;
	import flash.events.MouseEvent;
	import fl.transitions.Tween;
	import fl.transitions.TweenEvent;
	import fl.transitions.easing.*;

	public class test extends MovieClip {
		private var activeMovie:String="";
		private var tempArray:Array=[];
		private var names:Array=["home","profile","projects","contact","about"];
		private var movie:MovieClip;
		private var fwdTween:Tween;
		private var bkTween:Tween;

		public function test() {
			setup();
		}

		private function setup():void {
			var temp:MovieClip;

			for (var i:int=0; i&lt;5; i++) {
				temp = new btn_mc();
				temp.name=names[i];
				temp.x = i*(temp.width+10)+temp.width/2+10;
				temp.y=350;

				addChild(temp);
				tempArray.push(temp);
				temp.addEventListener(MouseEvent.CLICK, onClick);
			}

			movie = new movie_mc();
			movie.label_txt.text=names[0];
			movie.x=-240;
			movie.y=210;
			addChild(movie);
			fwdTween=new Tween(movie,"x",Elastic.easeInOut,-240,240,1,true);
		}

		private function onClick(event:MouseEvent):void {

			if (event.target.name==activeMovie) {
				//Do Nothing
			} else {
				bkTween=new Tween(movie,"x",Regular.easeOut,240,-240,0.5,true);
				bkTween.addEventListener(TweenEvent.MOTION_FINISH, newMotion);

				movie.label_txt.text=event.target.name;
				movie.x=-240;
				movie.y=210;
				addChild(movie);

				activeMovie=event.target.name;
			}
		}

		private function newMotion(e:TweenEvent):void{
			fwdTween=new Tween(movie,"x",Regular.easeOut,-240,240,0.5,true);
		}
	}
}</pre>
<p class="brush: php;">This is all we need to do to start with a basic menu in Profiles in Flash. This is just a way to do it. There are many different ways to do it.</p>
<p class="brush: php;">You can get the source files <strong><a href="http://www.swamicharan.com/blog/wp-content/uploads/2010/04/testFiles.rar" target="_blank"><span style="color: #0000ff;">here</span></a></strong>.</p>
<p class="brush: php;">Just Explore Flash AS3 <img src='http://www.swamicharan.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/flash/764/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content-Aware Fill in Photoshop</title>
		<link>http://www.swamicharan.com/blog/photoshop/content-aware-fill-in-photoshop/</link>
		<comments>http://www.swamicharan.com/blog/photoshop/content-aware-fill-in-photoshop/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 06:48:01 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Content-aware fill]]></category>
		<category><![CDATA[Photoshop 20th Anniversary]]></category>
		<category><![CDATA[Photoshop CS5]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=761</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="256"><param name="movie" value="http://images.tv.adobe.com/swf/player.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="FlashVars" value="fileID=5561&#038;context=356&#038;embeded=true&#038;environment=production"></param><embed src="http://images.tv.adobe.com/swf/player.swf" flashvars="fileID=5561&#038;context=356&#038;embeded=true&#038;environment=production" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="256"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/photoshop/content-aware-fill-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung Apps Contest 2010</title>
		<link>http://www.swamicharan.com/blog/flash/fldh-flash/samsung-apps-contest-2010/</link>
		<comments>http://www.swamicharan.com/blog/flash/fldh-flash/samsung-apps-contest-2010/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 06:43:25 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[FL for Digital Home]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Flash Lite for Digital Home]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Samsung Apps Contest 2010]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=758</guid>
		<description><![CDATA[It seems Samsung has plans to start its own TV Appstore with applications using Flash Lite for Digital Home. Samsung announced new “Internet@TV” service, where user can download the various kind of applications onto Samsung DTV through internet with its own UI and service client.
Currently, Samsung provides the SDK to only register CPs. The current number [...]]]></description>
			<content:encoded><![CDATA[<p>It seems Samsung has plans to start its own TV Appstore with applications using <strong>Flash Lite for Digital Home</strong>. Samsung announced new <a href="mailto:“Internet@TV">“Internet@TV</a>” service, where user can download the various kind of applications onto Samsung DTV through internet with its own UI and service client.</p>
<p>Currently, Samsung provides the SDK to only register CPs. The current number of CPs is 200 and there are about 80 applications in application store. Those numbers will increase as time goes. It recently announced the <strong><a href="http://www.pavv.co.kr/contest/" target="_blank"><span style="color: #0000ff;">SAMSUNG APPS CONTEST 2010</span></a></strong>, calling developers to use their SDK and create new applications for TV.</p>
<p>Any developer who wants to create applications can</p>
<ul>
<li>download the SDK from <a href="http://www.pavv.co.kr/contest/" target="_blank"><span style="color: #0000ff;">http://www.pavv.co.kr/contest/</span></a>,</li>
<li>make their own application</li>
<li>test it using an desktop emulator.</li>
</ul>
<p>Developers can make applications using  Web technologies (HTML and JavaScript) and <strong>ADOBE FLASH</strong> Technology.</p>
<p>Hope this starts a new era of TV Apps using <strong>Flash Lite for Digital Home</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/flash/fldh-flash/samsung-apps-contest-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TiVo DVR using Flash Lite for Digital Home</title>
		<link>http://www.swamicharan.com/blog/flash/fldh-flash/tivo-dvr-using-flash-lite-for-digital-home/</link>
		<comments>http://www.swamicharan.com/blog/flash/fldh-flash/tivo-dvr-using-flash-lite-for-digital-home/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 05:51:37 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[FL for Digital Home]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Adobe Flash Platform]]></category>
		<category><![CDATA[Flash Lite for Digital Home]]></category>
		<category><![CDATA[Tivo DVR]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=752</guid>
		<description><![CDATA[Adobe Flash Lite for Digital Home is in news now-a-days. Recently Intel's Sodaville announced that they are going to use Flash. Now its TiVo, which announced its new Set-top box which uses Adobe Flash Platform.

This device has several new menus with a very rich UI:

TiVo Central
TiVo Search
Tivo Browser (Tivo Content Browsing, not a html browser)
My [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe Flash Lite for Digital Home is in news now-a-days. Recently Intel's Sodaville announced that they are going to use Flash. Now its TiVo, which announced its new Set-top box which uses Adobe Flash Platform.</p>
<p style="text-align: center;"><img class="size-full wp-image-753  aligncenter" title="TiVo_Premiere" src="http://www.swamicharan.com/blog/wp-content/uploads/2010/03/TiVo_Premiere.jpg" alt="TiVo_Premiere" width="620" height="237" /></p>
<p>This device has several new menus with a very rich UI:</p>
<ul>
<li>TiVo Central</li>
<li>TiVo Search</li>
<li>Tivo Browser (Tivo Content Browsing, not a html browser)</li>
<li>My Shows etc</li>
</ul>
<p>Apart from this, the Remote is pretty exciting with QWERTY Keyboard and very much like the way needed to navigate different Applications.</p>
<p>Way to go Flash Lite for Digital Home...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/flash/fldh-flash/tivo-dvr-using-flash-lite-for-digital-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Flash Player 10 be available on Intel Sodaville</title>
		<link>http://www.swamicharan.com/blog/flash/fldh-flash/adobe-flash-player-10-be-available-on-intel-sodaville-chips/</link>
		<comments>http://www.swamicharan.com/blog/flash/fldh-flash/adobe-flash-player-10-be-available-on-intel-sodaville-chips/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 08:07:13 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[FL for Digital Home]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash on Sodaville]]></category>
		<category><![CDATA[Flash Player 10]]></category>
		<category><![CDATA[Intel CE4100]]></category>
		<category><![CDATA[Intel Sodaville]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=746</guid>
		<description><![CDATA[During this week's Intel Developer Forum, Intel has unveiled "Sodaville" a new 45nm system-on-a-chip based on the comapny’s Atom processor that’s designed specifically to bring interactive, Internet-based services and content to televisions, set-top boxes, and peripherals like DVD players and DVRs. The chipset supports both Internet and broadcast applications, and has enough processing horsepower to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-748" title="intel-logo" src="http://www.swamicharan.com/blog/wp-content/uploads/2010/02/intel-logo.gif" alt="intel-logo" width="300" height="225" />During this week's Intel Developer Forum, Intel has unveiled "Sodaville" a new 45nm system-on-a-chip based on the comapny’s Atom processor that’s designed specifically to bring interactive, Internet-based services and content to televisions, set-top boxes, and peripherals like DVD players and DVRs. The chipset supports both Internet and broadcast applications, and has enough processing horsepower to handle both video and audio processing and 3D graphics in real time.</p>
<p>The CE4100 will be available at speeds of up to 1.2 GHz, and will feature hardware-based decoding capabilities that can handle two 1080p video streams simultaneously, along with high-definition audio and 3D graphics. The system supports hardware-based decoding for MEG4, and integrated NAND flash controller, support for DDR2 and DDR3 memory, support for SATA-300 and USB 2.0, and 512K of L2 cache. The chip will support Flash Player 10, along with standards like OpenFGL ES 2.0 for developing media-intensive 3D applications; Adobe expects Flash 10 to be available for Sodaville devices in mid-2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/flash/fldh-flash/adobe-flash-player-10-be-available-on-intel-sodaville-chips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Its 2nd Birthday of ADOBE AIR</title>
		<link>http://www.swamicharan.com/blog/air/its-2nd-birthday-of-adobe-air/</link>
		<comments>http://www.swamicharan.com/blog/air/its-2nd-birthday-of-adobe-air/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 07:14:34 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Adobe]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=742</guid>
		<description><![CDATA[Its 2nd Birthday for ADOBE AIR. AIR was started on February 25th, 2008 and with  in this 2 years, it grew rapidly and adopted by many as better option for creating RIA for Desktop. You can see AIR Applications now everywhere in a wide variety of domains from Entertainment, News, Social Networking, eLearning, Video etc.
Its [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-743" title="sidebar-logo2" src="http://www.swamicharan.com/blog/wp-content/uploads/2010/02/sidebar-logo2.gif" alt="sidebar-logo2" width="160" height="85" />Its 2nd Birthday for ADOBE AIR. AIR was started on February 25th, 2008 and with  in this 2 years, it grew rapidly and adopted by many as better option for creating RIA for Desktop. You can see AIR Applications now everywhere in a wide variety of domains from Entertainment, News, Social Networking, eLearning, Video etc.</p>
<p>Its really great to use such a product and lets flourish it further...</p>
<p>Looking forward for the exciting new application on AIR...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/air/its-2nd-birthday-of-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Photoshop is 20 Years Old</title>
		<link>http://www.swamicharan.com/blog/photoshop/adobe-photoshop-is-20-years-old/</link>
		<comments>http://www.swamicharan.com/blog/photoshop/adobe-photoshop-is-20-years-old/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 08:43:45 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[20 Years of Photoshop]]></category>
		<category><![CDATA[Adobe Photoshop]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Photoshop Icons]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=737</guid>
		<description><![CDATA[Adobe Photoshop, the one tool used by all the designers across the globe, is nearing 20 Years Anniversary now.  The Official Anniversary is on Feb 19th.
Here are the Logos of all the Versions of Photoshop till CS4...

 
Hope to see more of Photoshop in Future...
]]></description>
			<content:encoded><![CDATA[<p><strong>Adobe Photoshop</strong>, the one tool used by all the designers across the globe, is nearing 20 Years Anniversary now.  The Official Anniversary is on <strong>Feb 19th</strong>.</p>
<p>Here are the Logos of all the Versions of Photoshop till CS4...</p>
<p><img class="aligncenter size-full wp-image-738" title="PhotoshopIcons" src="http://www.swamicharan.com/blog/wp-content/uploads/2010/02/PhotoshopIcons.jpg" alt="PhotoshopIcons" width="484" height="228" /></p>
<p> </p>
<p>Hope to see more of Photoshop in Future...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/photoshop/adobe-photoshop-is-20-years-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Timestamp in Flash</title>
		<link>http://www.swamicharan.com/blog/flash/unix-timestamp-in-flash/</link>
		<comments>http://www.swamicharan.com/blog/flash/unix-timestamp-in-flash/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 11:29:50 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[Unix TimeStamp]]></category>
		<category><![CDATA[Unix Timestamp in Flash]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=731</guid>
		<description><![CDATA[Recently i needed to convert normal Time to Unix Timestamp in Flash. I couldn't get how to go about it intially. But when i gone through the definition of Unix Timestamp, its was clear for me.
"The unix time stamp is a way to track time as a running total of seconds. This count starts at [...]]]></description>
			<content:encoded><![CDATA[<p>Recently i needed to convert normal Time to Unix Timestamp in Flash. I couldn't get how to go about it intially. But when i gone through the definition of Unix Timestamp, its was clear for me.</p>
<p><strong><em>"The unix time stamp is a way to track time as a running total of seconds. This count starts at the Unix Epoch on January 1st, 1970. Therefore, the unix time stamp is merely the number of seconds between a particular date and the Unix Epoch."</em></strong></p>
<p>In order to count the number of seconds till a time, we have method <em>Date.getTime() </em>in Flash. This will effectively return the number of seconds from the Unix Epoch till the Date.</p>
<p>This is how i tried to find out the number of seconds till today's System Time:</p>
<pre class="brush: php;">var myDate = new Date();
trace(myDate);
var unixTime = Math.round(myDate.getTime()/1000);
trace("Unix Time: "+unixTime);</pre>
<p><strong>Output:</strong></p>
<pre class="brush: php;">Fri Jan 22 13:01:55 GMT+0530 2010
Unix Time: 1264145516</pre>
<p><span id="more-731"></span></p>
<p>To verify if we got the correct Unix TimeStamp of the normal time, check it on any online <span style="color: #0000ff;"><a href="http://www.onlineconversion.com/unix_time.htm" target="_self">Unix Timestamp converters</a></span>.</p>
<p>Problem arised when tried to convert the Unix Time we got into normal timestamp in Flash.</p>
<pre class="brush: php;">var myDate = new Date();
trace(myDate);
var unixTime = Math.round(myDate.getTime()/1000);
trace("Unix Time: "+unixTime);

var dateNew = new Date();
dateNew.setTime(unixTime);
trace(dateNew);</pre>
<p><strong>Output:</strong></p>
<pre class="brush: php;">Fri Jan 22 16:22:42 GMT+0530 2010
Unix Time: 1264157563
Thu Jan 15 20:39:17 GMT+0530 1970</pre>
<p>If you observe closely, while converting the Unix Timestamp to normal time, the year that's returned is <strong>1970</strong>. If we use a online <span style="color: #0000ff;"><a href="http://www.onlineconversion.com/unix_time.htm" target="_blank">Unix Timestamp Converter</a></span> to get back the normal time, it returns approximately correct time by inputting the above Unix Timestamp.</p>
<p>That was strange to get the difference while converting Unix Timestamp to Normal TimeStamp. Just observed this behavior, so thought of sharing it to find a solution or answer how to overcome it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/flash/unix-timestamp-in-flash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ADOBE and AVATAR</title>
		<link>http://www.swamicharan.com/blog/adobe/adobe-and-avatar/</link>
		<comments>http://www.swamicharan.com/blog/adobe/adobe-and-avatar/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 06:48:57 +0000</pubDate>
		<dc:creator>Swami Charan</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[AVATAR]]></category>

		<guid isPermaLink="false">http://www.swamicharan.com/blog/?p=727</guid>
		<description><![CDATA[ A video featuring Jon Landau, Producer of "Avatar", describing how Adobe software was used throughout the production of the film.  

Very proud to be part of ADOBE...
]]></description>
			<content:encoded><![CDATA[<p> A video featuring Jon Landau, Producer of "Avatar", describing how Adobe software was used throughout the production of the film.  </p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="FlashVars" value="fileID=4809&amp;context=9&amp;embeded=true&amp;environment=production" /><param name="src" value="http://tv.adobe.com/assets//swf/player.swf" /><param name="flashvars" value="fileID=4809&amp;context=9&amp;embeded=true&amp;environment=production" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="500" height="300" src="http://tv.adobe.com/assets//swf/player.swf" flashvars="fileID=4809&amp;context=9&amp;embeded=true&amp;environment=production" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<p>Very proud to be part of ADOBE...</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swamicharan.com/blog/adobe/adobe-and-avatar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
