<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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: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>Comments for saumya</title>
	<atom:link href="http://saumyaray.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://saumyaray.wordpress.com</link>
	<description>where there is a will, there is a way</description>
	<lastBuildDate>Tue, 22 Dec 2009 08:55:43 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on 7 wonders of the world !! huh by Syed</title>
		<link>http://saumyaray.wordpress.com/2007/07/25/7-wonders-of-world-huh/#comment-3086</link>
		<dc:creator>Syed</dc:creator>
		<pubDate>Tue, 22 Dec 2009 08:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/2007/07/25/7-wonders-of-world-huh/#comment-3086</guid>
		<description>Hey Guys,

Leave that tree, but if you want to see one of that kind of tree then you can visit golkonda fort,hyderabad where you can find a tree named &#039;elephant tree/hatyan ka jahad&#039;. I&#039;ve been there and its not a fake. Please click on the link below for more details and how to reach there.
http://www.panoramio.com/photo/19384861

Regards
Syed.</description>
		<content:encoded><![CDATA[<p>Hey Guys,</p>
<p>Leave that tree, but if you want to see one of that kind of tree then you can visit golkonda fort,hyderabad where you can find a tree named &#8216;elephant tree/hatyan ka jahad&#8217;. I&#8217;ve been there and its not a fake. Please click on the link below for more details and how to reach there.<br />
<a href="http://www.panoramio.com/photo/19384861" rel="nofollow">http://www.panoramio.com/photo/19384861</a></p>
<p>Regards<br />
Syed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF2SWF : Auto conversion from PDF to SWF by Jon David</title>
		<link>http://saumyaray.wordpress.com/2009/06/25/pdf2swf-auto-conversion-from-pdf-to-swf/#comment-3084</link>
		<dc:creator>Jon David</dc:creator>
		<pubDate>Thu, 17 Dec 2009 21:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/?p=316#comment-3084</guid>
		<description>There is a good open source replacement for flashpaper :

http://www.devaldi.com/?page_id=260</description>
		<content:encoded><![CDATA[<p>There is a good open source replacement for flashpaper :</p>
<p><a href="http://www.devaldi.com/?page_id=260" rel="nofollow">http://www.devaldi.com/?page_id=260</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF2SWF : Auto conversion from PDF to SWF by bosega</title>
		<link>http://saumyaray.wordpress.com/2009/06/25/pdf2swf-auto-conversion-from-pdf-to-swf/#comment-3080</link>
		<dc:creator>bosega</dc:creator>
		<pubDate>Sun, 13 Dec 2009 01:02:17 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/?p=316#comment-3080</guid>
		<description>Very nice! Also PDF to flip book convertor..&lt;a href=&quot;https://mediaparts.cleverbridge.com/536/cookie?affiliate=8122&amp;redirectto=http%3a%2f%2fpage-flip.com%2f&quot; rel=&quot;nofollow&quot;&gt;link&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Very nice! Also PDF to flip book convertor..<a href="https://mediaparts.cleverbridge.com/536/cookie?affiliate=8122&amp;redirectto=http%3a%2f%2fpage-flip.com%2f" rel="nofollow">link</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Whats in 127? by Sven</title>
		<link>http://saumyaray.wordpress.com/2009/12/06/whats-in-127/#comment-3077</link>
		<dc:creator>Sven</dc:creator>
		<pubDate>Mon, 07 Dec 2009 22:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/?p=354#comment-3077</guid>
		<description>Interesting observation. But let us not forget: It is sometimes usefull not to clamp alpha values between 0.0 and 1.0!

One can make &quot;transitions&quot; and easing-effects by just assigning different alpha values to sprites and then change the alpha value of their parent. A child with starting alpha 10 will not visually fade before parent has reached alpha 0.1 (or so I believe). 

When trying to fade complex sprites (sprites with many children/shapes) the result can be messy. Setting high alphas for some of the children may help to control unwanted effects. 

package
{
	import flash.display.Sprite;
	import flash.events.Event;
	
	public class AlphaTest extends Sprite
	{
		
		public function AlphaTest ()
		{
			var spr:Sprite;
			for ( var i:uint = 0; i &lt; 10; i++ )
			{
				spr = new Sprite();
				spr.alpha = i;
				spr.graphics.beginFill( 0xff0000 );
				spr.graphics.drawCircle( i * 40 + 30, 300, 20 );
				addChild ( spr );
			}
			
			addEventListener( Event.ENTER_FRAME, enterFrameHandler );
		}
		
		private function enterFrameHandler ( e:Event ):void
		{
			alpha -= 0.01;
			
			if ( alpha &lt;= 0 ) removeEventListener( Event.ENTER_FRAME, enterFrameHandler );
		}
	}
}</description>
		<content:encoded><![CDATA[<p>Interesting observation. But let us not forget: It is sometimes usefull not to clamp alpha values between 0.0 and 1.0!</p>
<p>One can make &#8220;transitions&#8221; and easing-effects by just assigning different alpha values to sprites and then change the alpha value of their parent. A child with starting alpha 10 will not visually fade before parent has reached alpha 0.1 (or so I believe). </p>
<p>When trying to fade complex sprites (sprites with many children/shapes) the result can be messy. Setting high alphas for some of the children may help to control unwanted effects. </p>
<p>package<br />
{<br />
	import flash.display.Sprite;<br />
	import flash.events.Event;</p>
<p>	public class AlphaTest extends Sprite<br />
	{</p>
<p>		public function AlphaTest ()<br />
		{<br />
			var spr:Sprite;<br />
			for ( var i:uint = 0; i &lt; 10; i++ )<br />
			{<br />
				spr = new Sprite();<br />
				spr.alpha = i;<br />
				spr.graphics.beginFill( 0xff0000 );<br />
				spr.graphics.drawCircle( i * 40 + 30, 300, 20 );<br />
				addChild ( spr );<br />
			}</p>
<p>			addEventListener( Event.ENTER_FRAME, enterFrameHandler );<br />
		}</p>
<p>		private function enterFrameHandler ( e:Event ):void<br />
		{<br />
			alpha -= 0.01;</p>
<p>			if ( alpha &lt;= 0 ) removeEventListener( Event.ENTER_FRAME, enterFrameHandler );<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Whats in 127? by Allen Chou</title>
		<link>http://saumyaray.wordpress.com/2009/12/06/whats-in-127/#comment-3076</link>
		<dc:creator>Allen Chou</dc:creator>
		<pubDate>Mon, 07 Dec 2009 10:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/?p=354#comment-3076</guid>
		<description>Looks like we&#039;d better make sure the values we assign to alpha values are clamped between 0.0 and 1.0, otherwise, according to your result, incrementing alpha values constantly might cause display objects to &quot;blink&quot;!</description>
		<content:encoded><![CDATA[<p>Looks like we&#8217;d better make sure the values we assign to alpha values are clamped between 0.0 and 1.0, otherwise, according to your result, incrementing alpha values constantly might cause display objects to &#8220;blink&#8221;!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Whats in 127? by Ben</title>
		<link>http://saumyaray.wordpress.com/2009/12/06/whats-in-127/#comment-3075</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 06 Dec 2009 19:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/?p=354#comment-3075</guid>
		<description>Looks like flash is storing the alpha value as a signed 8-bit integer</description>
		<content:encoded><![CDATA[<p>Looks like flash is storing the alpha value as a signed 8-bit integer</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe CS3, Photoshop rocks by Tips Photoshop</title>
		<link>http://saumyaray.wordpress.com/2007/04/20/adobe-cs3-photoshop-rocks/#comment-3074</link>
		<dc:creator>Tips Photoshop</dc:creator>
		<pubDate>Sun, 06 Dec 2009 16:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/2007/04/20/adobe-cs3-photoshop-rocks/#comment-3074</guid>
		<description>very nice, thank&#039;s :)</description>
		<content:encoded><![CDATA[<p>very nice, thank&#8217;s <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Processing,the web!! by Aran</title>
		<link>http://saumyaray.wordpress.com/2009/11/15/processingthe-web/#comment-3073</link>
		<dc:creator>Aran</dc:creator>
		<pubDate>Mon, 16 Nov 2009 02:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/?p=352#comment-3073</guid>
		<description>Yes, processing is really cool. I am sure most Flash devs would enjoy this language for making experiments. My only problem is lack of time for &quot;fun projects&quot;.

Processing is not exactly new though, it has been around for almost 10 years!

http://en.wikipedia.org/wiki/Processing_(programming_language)</description>
		<content:encoded><![CDATA[<p>Yes, processing is really cool. I am sure most Flash devs would enjoy this language for making experiments. My only problem is lack of time for &#8220;fun projects&#8221;.</p>
<p>Processing is not exactly new though, it has been around for almost 10 years!</p>
<p><a href="http://en.wikipedia.org/wiki/Processing_(programming_language)" rel="nofollow">http://en.wikipedia.org/wiki/Processing_(programming_language)</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDF2SWF : Auto conversion from PDF to SWF by Milson cardona</title>
		<link>http://saumyaray.wordpress.com/2009/06/25/pdf2swf-auto-conversion-from-pdf-to-swf/#comment-3071</link>
		<dc:creator>Milson cardona</dc:creator>
		<pubDate>Tue, 27 Oct 2009 23:54:42 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/?p=316#comment-3071</guid>
		<description>Excelente... GREAT... soo thanks... WAOWWWW...</description>
		<content:encoded><![CDATA[<p>Excelente&#8230; GREAT&#8230; soo thanks&#8230; WAOWWWW&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 7 wonders of the world !! huh by vatsal</title>
		<link>http://saumyaray.wordpress.com/2007/07/25/7-wonders-of-world-huh/#comment-3069</link>
		<dc:creator>vatsal</dc:creator>
		<pubDate>Sun, 11 Oct 2009 21:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://saumyaray.wordpress.com/2007/07/25/7-wonders-of-world-huh/#comment-3069</guid>
		<description>thanks everyone for repeatedly posting which has already been posted earlier ..the way the comments follow its funny ....
1 guy whr the location ...
2 there is no location...
3 its in diseny land...
4 so basically how to get there....
5 its a miracle...
6 its in disenyland...
....heheh dudes and girls awesome it was fun reading all the crap...</description>
		<content:encoded><![CDATA[<p>thanks everyone for repeatedly posting which has already been posted earlier ..the way the comments follow its funny &#8230;.<br />
1 guy whr the location &#8230;<br />
2 there is no location&#8230;<br />
3 its in diseny land&#8230;<br />
4 so basically how to get there&#8230;.<br />
5 its a miracle&#8230;<br />
6 its in disenyland&#8230;<br />
&#8230;.heheh dudes and girls awesome it was fun reading all the crap&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
