<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sudha Hariharan</title>
	<atom:link href="http://sudhahariharan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sudhahariharan.wordpress.com</link>
	<description>Random prattle of a confused mind</description>
	<pubDate>Wed, 09 Jul 2008 11:13:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Migration: Layouting issues with TitleWindow in Flex 3</title>
		<link>http://sudhahariharan.wordpress.com/2008/07/09/migration-layouting-issues-with-titlewindow-in-flex-3/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/07/09/migration-layouting-issues-with-titlewindow-in-flex-3/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 11:13:51 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=159</guid>
		<description><![CDATA[I have been working on a migration project offlate and I encountered this very pressing issue. Any component that extended from TitleWindow had its layout screwed up. If you add any components to the content area of the extended TitleWindow, it would the child would find its place underneath the header of the TitleWindow !!! That [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have been working on a migration project offlate and I encountered this very pressing issue. Any component that extended from TitleWindow had its layout screwed up. If you add any components to the content area of the extended TitleWindow, it would the child would find its place underneath the header of the TitleWindow !!! That was a very awkward behaviour and here&#8217;s a rather simple solution. Just add the following function to your component..and Swosh!! the layouting behaves just the way you want.<br />
private var panelViewMetrics:EdgeMetrics;<br />
override public function get viewMetrics():EdgeMetrics<br />
{<br />
var vm:EdgeMetrics = super.viewMetrics;</p>
<p>// The getViewMetrics function needs to return its own object.<br />
// Rather than allocating a new one each time, we&#8217;ll allocate<br />
// one once and then hold a pointer to it.</p>
<p>if ((FlexVersion.compatibilityVersion &lt; FlexVersion.VERSION_3_0) ||<br />
(getQualifiedClassName(border) != &#8220;mx.skins.halo::PanelSkin&#8221;) ||<br />
(getStyle(&#8221;borderStyle&#8221;) != &#8220;default&#8221;) )</p>
<p>{<br />
if (!panelViewMetrics)<br />
panelViewMetrics = new EdgeMetrics(0, 0, 0, 0);<br />
vm = panelViewMetrics;</p>
<p>var o:EdgeMetrics = super.viewMetrics;<br />
var bt:Number = getStyle(&#8221;borderThickness&#8221;);<br />
var btl:Number = getStyle(&#8221;borderThicknessLeft&#8221;);<br />
var btt:Number = getStyle(&#8221;borderThicknessTop&#8221;);<br />
var btr:Number = getStyle(&#8221;borderThicknessRight&#8221;);<br />
var btb:Number = getStyle(&#8221;borderThicknessBottom&#8221;);</p>
<p>// Add extra space to edges (was margins).<br />
vm.left = o.left + (isNaN(btl) ? bt : btl);<br />
vm.top = o.top + (isNaN(btt) ? bt : btt);<br />
vm.right = o.right + (isNaN(btr) ? bt : btr);<br />
// Bottom is a special case. If borderThicknessBottom is NaN,<br />
// use btl if we don&#8217;t have a control bar or btt if we do.<br />
vm.bottom = o.bottom + (isNaN(btb) ?<br />
(controlBar &amp;&amp; !isNaN(btt) ? btt : isNaN(btl) ? bt : btl) :<br />
btb);</p>
<p>// Since the header covers the solid portion of the border,<br />
// we need to use the larger of borderThickness or headerHeight<br />
var hHeight:Number = getHeaderHeight();<br />
if (!isNaN(hHeight))<br />
vm.top += hHeight;</p>
<p>if (controlBar &amp;&amp; controlBar.includeInLayout)<br />
vm.bottom += controlBar.getExplicitOrMeasuredHeight();<br />
}<br />
return vm;<br />
}</p>
<p>So why does it work now and not earlier&#8230;the reason is that in Flex 3, Panel now uses the PanelSkin unlike earlier wherein it used HaloBorder or Border. Also, it doesn&#8217;t support any borderStyle but default. So the change here is an additional condition in the if loop</p>
<p>if ((FlexVersion.compatibilityVersion &lt; FlexVersion.VERSION_3_0) ||<br />
(getQualifiedClassName(border) != &#8220;mx.skins.halo::PanelSkin&#8221;) ||<br />
(getStyle(&#8221;borderStyle&#8221;) != &#8220;default&#8221;) )</p>
<p>So now you have the perfect layouting in flex 3 as well when using older classes <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/159/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/159/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=159&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/07/09/migration-layouting-issues-with-titlewindow-in-flex-3/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
		<item>
		<title>Some performance tuning tips in Flex</title>
		<link>http://sudhahariharan.wordpress.com/2008/06/09/some-performance-tuning-tips-in-flex/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/06/09/some-performance-tuning-tips-in-flex/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 07:21:03 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Performance/Memory]]></category>

		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=153</guid>
		<description><![CDATA[1.	Use item renderers judiciously. An item renderer derived from a Container class comes with lot of unnecessary overhead. Instead use a simpler class, may be an Actionscript class derived from a UIComponent. This would reduce a lot of overhead.
2. Always remove unused event listeners. Each time an event listener is added to an object, it [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1.	Use item renderers judiciously. An item renderer derived from a Container class comes with lot of unnecessary overhead. Instead use a simpler class, may be an Actionscript class derived from a UIComponent. This would reduce a lot of overhead.<br />
2.<a href="http://sudhahariharan.wordpress.com/2008/01/07/activation-objects-method-closures-and-performance-impact/" target="_self"> Always remove unused event listeners</a>. Each time an event listener is added to an object, it increases the object’s reference count. So the reference remains, until the event listener is removed. If for some reason, you cannot remove the event listener use the useWeakReference parameter in the addEventListener. This does not increase the reference count.<br />
3.	Be careful with that huge Image! Use images that are smaller in size and when they are large in number prefer not to embed them in the application. As far as the image formats are concerned, I find that png images are much faster than other image types. Use BitmapData as much as possible.<br />
4.	Use Binding only when necessary. Data binding expressions usually take up memory. Prefer assignments to Binding whenever possible.<br />
5.	Accessing local variables is much faster. If you have variables that need to be accessed more use local variables as they are stored on the stack and accessing them is much faster.<br />
6.	You could help the garbage collector by assigning unused variables to null.<br />
7.	For components use <a href="http://sudhahariharan.wordpress.com/2008/01/04/deferred-instantiation/" target="_blank">deferred instantiation</a>. This would immensly reduce the startup time.<br />
8.	Minimize the use of containers. Try not to next HBoxes within VBoxes and so on. Nested containers make up to huge overheads.<br />
9.	Use types for the variables. Avoid implicit type conversions and when unsure of the type use the as operator.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/153/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/153/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=153&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/06/09/some-performance-tuning-tips-in-flex/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
		<item>
		<title>The most worthless and miserable shopping destination in Bangalore&#8230;Big Bazaar!</title>
		<link>http://sudhahariharan.wordpress.com/2008/06/02/the-most-worthless-and-miserable-shopping-destination-in-bangalorebig-bazaar/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/06/02/the-most-worthless-and-miserable-shopping-destination-in-bangalorebig-bazaar/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 09:48:24 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=152</guid>
		<description><![CDATA[I had a terrible experience at Big Bazaar on the day before yesterday. If there is any place in Bangalore that has the most loathsome customer service that has to be Big Bazaar. I went in for quite a lot of purchases and they have billed for an extra 1000 bugs! I spent more than [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal">I had a terrible experience at Big Bazaar on the day before yesterday. If there is any place in Bangalore that has the most loathsome customer service that has to be Big Bazaar. I went in for quite a lot of purchases and they have billed for an extra 1000 bugs! I spent more than 5k at this stupid place and only yesterday I realized that the billing was totally absurd. They claimed to give me some sugar for free and made me pay for it. At the end they tell me sugar is out of stock. That means I paid for the so called “free” sugar and I didn’t get the sugar as well. <span> </span>For a simple shopping cart, I had to walk up to the 5<sup>th</sup> floor and even then I didn’t find any and none of the salesperson would help me find it. Thoroughly hopeless service.</p>
<p class="MsoNormal">I came back after getting drenched completely in the rain. It’s been raining cats and dogs in Bangalore and now I am down with fever. I feel just so terrible today, I haven’t worked one bit since morning. Today is probably one of those rare days I am trying hard not to speak (!!!! Me and not talk…goodness this is a nightmare!) because of my aching throat. All this because of the pathetic place called Big Bazaar. This would be the last time I ever visit this place and definitely suggest every one I know not to visit the place as well.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/152/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/152/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=152&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/06/02/the-most-worthless-and-miserable-shopping-destination-in-bangalorebig-bazaar/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
		<item>
		<title>Vishnupuram has its web presence!!</title>
		<link>http://sudhahariharan.wordpress.com/2008/05/29/vishnupuram-has-its-web-presence/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/05/29/vishnupuram-has-its-web-presence/#comments</comments>
		<pubDate>Thu, 29 May 2008 11:24:44 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[Ramblings]]></category>

		<category><![CDATA[My Native Place]]></category>

		<category><![CDATA[Vishnupuram]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=151</guid>
		<description><![CDATA[This is really cool&#8230;I never knew that Vishnupuram grammam had an orkut community dedicated to it!!&#8230;
By the way, Vishnupuram is my native place, situated right at the tip of India in Kanyakumari district.You can find more on what i had to say about this lovely village here.
Vishnupuram on Wikimapia here
Vishnupuram Boosaastha temple on Orkut.
  [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is really cool&#8230;I never knew that Vishnupuram grammam had an orkut community dedicated to it!!&#8230;</p>
<p>By the way, Vishnupuram is my native place, situated right at the tip of India in Kanyakumari district.You can find more on what i had to say about this lovely village <a href="http://sudhahariharan.wordpress.com/2007/07/29/memories-of-vishnupuram-grammam/" target="_blank">here</a>.</p>
<p>Vishnupuram on Wikimapia <a href="http://wikimapia.org/611889/" target="_blank">here</a></p>
<p><a href="http://www.orkut.com/Community.aspx?cmm=41360067&amp;refresh=1" target="_blank">Vishnupuram Boosaastha temple </a>on Orkut.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/151/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/151/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=151&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/05/29/vishnupuram-has-its-web-presence/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
		<item>
		<title>Library Projects and Customization in Flex Builder 3.</title>
		<link>http://sudhahariharan.wordpress.com/2008/05/29/library-projects-and-customization-in-flex-builder-3/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/05/29/library-projects-and-customization-in-flex-builder-3/#comments</comments>
		<pubDate>Thu, 29 May 2008 08:42:52 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[Flex Builder]]></category>

		<category><![CDATA[Flex3]]></category>

		<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=150</guid>
		<description><![CDATA[When my team lead first told me about this, I had no idea what I had to do about it. Ofcourse, the first step was to depend on good old Google, but this time Google ditched me. I hardly found any good results nor did I get good replies from the various forums we have [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal">When my team lead first told me about this, I had no idea what I had to do about it. Ofcourse, the first step was to depend on good old Google, but this time Google ditched me. I hardly found any good results nor did I get good replies from the various forums we have dedicated to Flex. All I could find was this <a href="http://bugs.adobe.com/jira/browse/FLEXDOCS-311" target="_blank">bug</a> in the bug database.</p>
<p class="MsoNormal">After a lot of help from various people, this is the information that I could gather about the files manifest.xml and design.xml.</p>
<p class="MsoNormal">To customize the Design view of Flex Builder for specific components we essentially need the above two files. As an example, if you want to have components to be listed under specific categories instead of the default behavior of Flex Builder that puts them under the custom tag, you could do the following.</p>
<p class="MsoNormal">Have an XML file called design.xml that has a structure similar to</p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;">&lt;?xml version=&#8221;1.0&#8243; ?&gt; </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;">&lt;design&gt;</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span>&lt;namespaces&gt;<span> </span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span><span> </span>&lt;namespace prefix=&#8221;myExample&#8221; uri=&#8221;http://demo.sap.com&#8221; /&gt; </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span><span> </span>&lt;/namespaces&gt;</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span>&lt;categories&gt;</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span><span> </span>&lt;category id=&#8221;TestComponents&#8221; label=&#8221;TestComponents&#8221; defaultExpand=&#8221;true&#8221; /&gt; </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span><span> </span>&lt;/categories&gt;</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span>&lt;components&gt;</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span>&lt;component name=&#8221;TestButton&#8221; namespace=&#8221;demo&#8221; category=&#8221;TestComponents&#8221; displayName=&#8221;Test Button&#8221;&gt;</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;"><span> </span>&lt;mxmlProperties&gt;<span> </span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;"><span> </span>&lt;/mxmlProperties&gt;</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;"><span> </span><span> </span>&lt;/component&gt; </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;"><span> </span>&lt;/components&gt;</span></p>
<p class="MsoNormal" style="margin-left:0.25in;"><span style="font-size:10pt;line-height:115%;">&lt;/design&gt;</span></p>
<p class="MsoNormal">As seen in the above example, you can define various categories inside the &lt;categories&gt; tag and later define components within &lt;components&gt; tag and map these components to their appropriate categories. You would do that simply by adding an attribute called category inside the &lt;component&gt; tag. The &lt;namespace&gt; defined here would be the same as the namespace that is created when you add the component to the application (drag and drop the component in design mode and you could find the namespace created for you in source mode).</p>
<p class="MsoNormal">The manifest file basically defines what components would be present in the swc you are creating. For example, if I have only one component called TestButton in my library I would write a manifest.xml file</p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243; ?&gt; </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;">&lt;componentPackage&gt;</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;">
<p class="MsoNormal" style="line-height:normal;margin:0 0 0.0001pt 0.25in;"><span style="font-size:10pt;"><span> </span>&lt;component class=&#8221;com.test.components.TestButton&#8221; id=&#8221;TestButton&#8221; /&gt;</span></p>
<p class="MsoNormal" style="margin-left:0.25in;"><span style="font-size:10pt;line-height:115%;">&lt;/componentPackage&gt;</span></p>
<p class="MsoNormal">The component tag defines the package name where in the class is defined.</p>
<p class="MsoNormal">By doing the above, I was able to have a customized component view.</p>
<p class="MsoNormal">One thing worth a mention is the tag called &lt;mxmlProperties&gt; within the design.xml file. This is useful if you want to show certain properties in the Flex Builder Standard Properties view.<span> </span>For example,</p>
<p class="MsoNormal" style="text-indent:0.5in;line-height:normal;margin:0 0 0.0001pt 1in;"><span style="font-size:10pt;">&lt;mxmlProperties&gt;</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;"><span> </span>&lt;textfield id=&#8221;title&#8221; name=&#8221;Title:&#8221; /&gt;</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;"><span> </span>&lt;combo id=&#8221;showTitleBar&#8221; name=&#8221;Title Bar:&#8221;/&gt; <span> </span></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal;"><span style="font-size:10pt;"><span> </span>&lt;/mxmlProperties&gt;</span></p>
<p class="MsoNormal">The above lines would create a textfield and a combo box displayed as Title: and Title Bar: respectively in the Standard Properties view. You can also add default values to this property simply by including</p>
<p class="MsoNormal">&lt;defaultAttribute name=&#8221;showTitleBar&#8221; value=&#8221;false&#8221;/&gt;</p>
<p class="MsoNormal">This line would give the default value as false for the combo box displaying as TitleBar.</p>
<p class="MsoNormal">Certainly, this is only very little of what one could do with these two files and Customizing Flex Builder without having to build any additional plugins. I wish there were many more blogs and some documentation that could throw some light onto this area.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/150/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/150/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=150&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/05/29/library-projects-and-customization-in-flex-builder-3/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
		<item>
		<title>My experiences in Germany!</title>
		<link>http://sudhahariharan.wordpress.com/2008/05/19/my-experiences-in-germany/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/05/19/my-experiences-in-germany/#comments</comments>
		<pubDate>Mon, 19 May 2008 15:41:51 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=148</guid>
		<description><![CDATA[It has been a long time since I blogged and for once I had a strong reason why. I was genuinely busy(!!! I really don&#8217;t know why, but each time I use the word busy I feel guilty of a blatant lie!). Work at SAP has been great. Though for the first few weeks I [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="text-indent:0.5in;">It has been a long time since I blogged and for once I had a strong reason why. I was genuinely busy(!!! I really don&#8217;t know why, but each time I use the word busy I feel guilty of a blatant lie!). Work at SAP has been great. Though for the first few weeks I was a little skeptical and not so happy, I just love it now. I am in Germany at the moment for a 3 week long trip and I feel great to be here. For those who know me well, I had been complaining and wishing and praying that the trip be canceled. But it wasn’t, and now I am glad it wasn’t. It cleared so many misconceptions I had about the “foreign” land.</p>
<p class="MsoNormal"><span> </span>I attended a “traveler’s workshop” meant to give an insight into the German culture. What I found here, was very different from what I was taught in the workshop. Germans, I had an impression, were a bunch of straight faced men with whom we could talk only about business and when it came to business they would drill deep down to the most intricate details. Hell No! That’s so untrue. They are not straight faced (a couple of them are really handsome!) but yes, they are serious about their business. They don’t exactly drill deep down; they do the same a little politely. One thing I should definitely mention is that they are very courteous and most men are truly gallant. A friend and I were crossing a road and the cars stopped to let the pedestrians walk by. Now, that&#8217;s a rare occurrence in India. Also, my managers and other team members here in Germany are among the nicest people I have met. My team lead especially is truly a gentleman ( He has the most beautiful hands I have every seen!!)</p>
<p class="MsoNormal" style="text-indent:0.5in;">Warning! My comments on food are ahead and they are not really good. I am a total vegetarian and I don’t like to eat eggs or even mushrooms. I have had to survive only on potatoes and some fruits. That has helped to put a little weight off my body much to the delight of my parents and some good friends. I do get some rice in office and cook some at my hotel so I am not exactly starving but this isn’t really the best food I have had. I have a lot of questions in this area though: Why do German noodles look so unlike noodles? Why does spaghetti look like noodles? What is spaghetti, what are noodles? Why is the food so cold? I understand, you are saving in some energy, but for god’s sake warm up the food a little. How can a person eat food straight out of the refrigerator and that too in a cold climate?<span> </span>OK, I do get a little emotional when it comes to food, so please do not get offended. <span> </span>Yeah, there are some good Italian joints here where the food is pretty good.</p>
<p class="MsoNormal"><span> </span>The landscape of Germany is beautiful. To be true it reminded me totally of Kerala, particularly of Vishnupuram and other towns in Kanyakumari district, bordering Kerala and Tamil Nadu. The way to my office is amidst fields that remind me a lot of my home town. What fascinates me most about Germany, isn’t the beautiful landscapes, the fast fancy cars, but the attitude of the German people. People here are honest, simple, and dedicated to whatever they do. The importance a German person gives to the minutest of detail is truly laudable. I think that is the reason behind making Germany what it is today from what it was in its terrible past.</p>
<p class="MsoNormal"><span> </span>Of course I couldn’t forget to mention the chivalrous nature of the men here. They are so nice to women. I think the Indian men could learn a lot form them. There is something that Indian women need to learn from their western counterparts. Women in India hardly take care of themselves, especially the one’s that are married. A look at western women would tell you that they are confident and independent. It is about time that we work in that direction and take care of ourselves.</p>
<p class="MsoNormal"><span> </span>Overall, My trip to Germany has been a great experience and one that I would like to have often!</p>
<p class="MsoNormal"><span> </span><span> </span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/148/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/148/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=148&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/05/19/my-experiences-in-germany/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
		<item>
		<title>In conversation with Pandurang on Silverlight, the technology and its reach to the RIA crowd….</title>
		<link>http://sudhahariharan.wordpress.com/2008/04/14/in-conversation-with-pandurang-on-silverlight-the-technology-and-its-reach-to-the-ria-crowd%e2%80%a6/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/04/14/in-conversation-with-pandurang-on-silverlight-the-technology-and-its-reach-to-the-ria-crowd%e2%80%a6/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 10:04:07 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[RIA]]></category>

		<category><![CDATA[Silverlight]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[Interview]]></category>

		<category><![CDATA[Silver Light]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=147</guid>
		<description><![CDATA[I have had many apprehensions about Silverlight and I wrote earlier in my blog certain points I thought behaved as weaknesses to Silverlight. I was fortunate to get a wonderful opportunity to speak to Pandurang Nayak, a Technology Evangelist from Microsoft, which helped me clear many of my misgivings on the technology. Here I post [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal">I have had many apprehensions about Silverlight and I wrote earlier in my <a href="http://sudhahariharan.wordpress.com/2008/03/31/silverlight-20-a-brief-review-of-the-fug-meet-on-the-topic/" target="_blank">blog </a>certain points I thought behaved as weaknesses to Silverlight. I was fortunate to get a wonderful opportunity to speak to <a href="http://http//www.thinkingms.com/pandurang/default.aspx" target="_blank">Pandurang </a><a href="http://http//www.thinkingms.com/pandurang/default.aspx" target="_blank">Nayak</a>, a Technology Evangelist from Microsoft, which helped me clear many of my misgivings on the technology. Here I post the contents of the conversation.</p>
<p class="MsoNormal">
<p><strong><em>1. Silverlight claims to have tremendously      improvised in its performance execution due to its built-in CLR engine.      Could you give us a more detailed insight into it?</em></strong></p>
<p><span style="font-size:11pt;font-family:Calibri;color:#1f497d;">The Common Language Runtime or the CLR is the core piece of .NET Framework.  The CLR is a well-proven high-performance platform providing features like Garbage Collection, Just-In-Time compilation, Exception Management and a wide array of fully featured languages such as VB.NET and C# that are used by millions of developers worldwide to build rich desktop, web and mobile applications as well!    The CLR also provides great features for security of the code that is running and a thread pool for efficient multi-threading.   Having the CLR inside of Silverlight is a great boost to the performance, providing a high-performance execution environment inside of the browser</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"><br />
</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><strong><br />
<em>2. Silverlight essentially depends on the      browser’s Javascript for its rendering. This also means that malicious      intruders and decompilers can easily work their way into Silverlight code.      How can I, as a developer be assured that my code would be safe from      intrusion? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Silverlight does not depend on JavaScript for its rendering!    In Silverlight 1, JavaScript is the language for event handling and runs with the full browser sandbox restrictions.  In Silverlight 2, the .NET runtime is what runs the Silverlight code (you can also use JavaScript if you wanted to).   In any technology, anything that runs on the client is downloaded and hence can be accessed by the end-user.  This is similar to “View Source” in regular HTML or AJAX pages.  The same strategies you use there can be used here for code protection – keep all confidential business logic on server and access by calling services,  use authentication and validation schemes for server-side code irrespective of validations done on client-side and use obfuscation to make it really hard to reverse engineer code!   There are a lot of obfuscation tools and technologies available for .NET for many years now!</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>3. How does the Silverlight player handle      security concerns? Does it have a robust model in par with the flash      player’s security model? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Silverlight has a much deeper security model.  I recommend reading through these articles that describe Silverlight security model: <a title="http://blogs.msdn.com/shawnfa/archive/2007/05/14/silverlight-security-cheat-sheet.aspx" href="http://blogs.msdn.com/shawnfa/archive/2007/05/14/silverlight-security-cheat-sheet.aspx">http://blogs.msdn.com/shawnfa/archive/2007/05/14/silverlight-security-cheat-sheet.aspx</a>.  Silverlight also runs in the browser sandbox restriction – so you cannot write Silverlight code that touches the end-user’s hard drive or any such resource (except in special cases like Isolated Storage and when a user voluntarily provides the code with a local file stream handle via the Open File Dialog).    I do not know enough about the Flash player security model and hence cannot comment on that!</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>4. Deep zoom support is one area in      Silverlight that is attracting the most attention. How much of deep zoom      can a developer use in his application considering the memory and      performance impacts? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Deep Zoom is a highly scalable means of managing megapixel or even gigapixel imagery on the Internet.  Deep Zoom works by only showing low resolution images and getting details of high-resolution imagery as and when required based on the zoom level and the viewport of the image.    It is based on the amazing Seadragon technology (<a title="http://labs.live.com/Seadragon.aspx" href="http://labs.live.com/Seadragon.aspx">http://labs.live.com/Seadragon.aspx</a>) that is also used in other projects such as Photosynth (<a title="http://labs.live.com/Photosynth.aspx" href="http://labs.live.com/Photosynth.aspx">http://labs.live.com/Photosynth.aspx</a>). </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>5. What additional features can we expect      from the upcoming versions of Silverlight? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Silverlight 2 is still in BETA and the team is currently working on optimizations and completing the features for release.  The next version planning has begun and at the moment there is no list of features announced for the next version.</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>6. Is it possible to create a Silverlight      application which has html or other scripts embedded into it? If yes, how      easy is it to do so? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">No.  Silverlight renders XAML, a markup language that describes all elements of Silverlight UIs.  HTML markup is not rendered by Silverlight.  In my view, since Silverlight is based in the browser, it is unnecessary to have a second HTML-generation engine when you have the browser which was designed for that purpose!  JavaScript execution is also delegated to the browser’s script engine.  You can write Silverlight application code in .NET or in any of the Dynamic Languages (such as IronPython, IronRuby or JavaScript) or any other language that targets the Silverlight CLR.   These are the only pieces of code executed by Silverlight itself.</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">You can however have overlays of HTML and Silverlight content – Silverlight controls support a “windowless” model which makes it possible to have HTML DIVs overlaying Silverlight or vice-versa.</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><strong><br />
<em>7. WPF and Silverlight enable developers      to create applications for the desktop and the internet. How easy is the      porting of applications from Silverlight to WPF and vice versa? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Silverlight is a subset of WPF.  So taking a Silverlight application and porting it to WPF is relatively easier – there are a few changes that will be required (for example having a Window container for the code) assuming you have not used some libraries that are Silverlight specific (such as System.Windows.Browser APIs).    WPF code can also be ported to Silverlight quite easily if it is not using libraries that are not available in Silverlight. </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><strong><br />
</strong> <em><strong>8. One of Silverlight&#8217;s major backdrops is      its penetration. What strategies does Microsoft plan in this regard?</strong> </em></p>
<p><em></em><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Microsoft Silverlight is just an year old and has got a tremendous amount of response.  Microsoft is working with several top content providers and websites across the world and showcasing the power of Silverlight.  We know that when many websites start adopting Silverlight for premium content, that will automatically drive end-user downloads of the plug-in.   At MIX 08, we also announced that we are getting around 1.5 million downloads of the Silverlight plug-in per day. </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>9. Silverlight has found its adoption with      many developers worldwide, especially the ones with a .NET experience.      Your comments on how users from other programming communities could adopt      the framework. </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Though Silverlight is highly popular with Microsoft developers and those who are working on .NET already, it is an equally exciting technology for RIA developers and media organizations across the industry.  Silverlight offers robust performance, great flexibility in handling video and a wide array of language support.   Today, if you are not a .NET user, you can still use JavaScript to work with Silverlight.  The designer-developer experience provided by Expression and Visual Studio is an industry-first and makes it possible for designers to be involved throughout the application lifecycle.  C# is very natural to pickup for Java, C and C++ developers.   VB.NET is very natural for those who know VBScript or Visual Basic. Also people with Python, Ruby or similar language experiences can easily code on Silverlight. </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">The language independence of the .NET platform in Silverlight actually makes it a far more approachable technology from developers in multiple technology streams.</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><strong><br />
<em>10. Silverlight on one hand supports      dynamic languages encouraging many people towards its adoption. At the      same time, it provides minimal or no support for the Linux community. Your      comments on this. </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">We have an active partnership with Novell who is developing Moonlight (based on Mono) for Linux.  You can learn more about the Moonlight project here: <a title="http://www.mono-project.com/Moonlight" href="http://www.mono-project.com/Moonlight">http://www.mono-project.com/Moonlight</a> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">With Moonlight, end-users using Linux to browser Silverlight content will be able to see the same content on browsers running on Linux as well.</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>11. Are the features of the Macintosh and      Windows releases of Silverlight fully compatible? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Yes.</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>12. Part of Silverlight is currently open      sourced. However, many people have their own apprehensions about this      statement. What plans does Microsoft have in this area? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">The statement is not entirely correct.  Silverlight is a technology platform.  In Silverlight 2, we introduced controls and a rich control model for building your own controls.  We also shipped a set of common base controls.  We have released the source code for these common controls to enable developers to take these controls, see how they were built, understand best practices of building similar controls or even adding features to create a new control! </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">We have also released complete unit tests and a unit testing framework for Silverlight – this is important for our developer base who have rich support for unit testing in our enterprise development tools and technologies for many years now. </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">It is out there for download, so I don’t see what apprehensions there could be!</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>13. Training is one area in which other      RIA’s are facing some difficulty. What strategies does Microsoft include      training at the academic as well as the industry level? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">Microsoft has already invested and is continuing to invest in creating training content, learning material and many other artifacts online for Silverlight, Expression and WPF.   Microsoft also has an excellent track record of bringing such resources to students and academia.   Though there are no specific plans announced now, you can see that Microsoft already has a huge academic program in several countries (including India) and new technologies can roll into this program easily. </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>14. If an organization wants you to      interview a candidate for Silverlight development position, how would you      go about it? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">If you are hiring a designer, look for design skills.  Experience with interaction design is useful.  Having an open mind, willing to learn new things, etc. is important because it is probably unlikely that he/she would have extensive Expression experience, given the tools are new. </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">If you are hiring a developer, knowing .NET or any languages that Silverlight support is just enough – the programming model is the same as that for desktop or the web or any other Microsoft technology!</span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<strong><em>15. What are your suggestions to the people      who want to come into silver light development? </em></strong><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">I see a lot of people, especially with experience in competing technologies such as Flash or Flex, start doing a feature-to-feature comparison or a tool-to-tool comparison.  One of the advices I give to people is that if you have such prior experience, sometimes you will need to understand a technology like Silverlight a little more fundamentally.  Remember that the people who designed and created Silverlight at Microsoft must have also made a huge amount of design and development decisions – some similar to existing technologies, some new – based on the basic vision they had for Silverlight.   That basic vision, of providing a consistent way of building rich user experiences across platforms and devices, with high performance and fidelity had driven several design choices.  Understanding Silverlight from the fundamentals requires a lot of coding, trying out different things, creating little projects, reading blogs of other Silverlight designers/developers and even participating in community.   That would begin to give you an idea of what the technology really is, what the fundamental philosophies are and what is the best way you can use it.     This is true in general for any technology by any vendor – and this is what sets technology gurus apart from the rest. </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;"> </span><br />
<span style="font-size:11pt;font-family:Calibri;color:#1f497d;">The best starting point is <a title="http://www.silverlight.net" href="http://www.silverlight.net/">www.silverlight.net</a> – there are simple tutorials, how-to’s and step-by-step instructions for anybody to get started!  Have fun coding!</span></p>
<p class="MsoNormal" style="margin-left:0.5in;">
<div class="msg Nth">I would like to thank <a href="http://www.thinkingms.com/pandurang/default.aspx" target="_blank">Pandurang</a> immensely for giving me  this wonderful oppurunity to talk to him on the technology we all love. It was  very nice of him to take out time and reply to the questions I had asked. I am  sure many Flex and other RIA technology developers would find this conversation  of great use</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/147/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/147/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=147&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/04/14/in-conversation-with-pandurang-on-silverlight-the-technology-and-its-reach-to-the-ria-crowd%e2%80%a6/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
		<item>
		<title>Will be there at BarCamp Bangalore 6!</title>
		<link>http://sudhahariharan.wordpress.com/2008/04/11/will-be-there-at-barcamp-bangalore-6/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/04/11/will-be-there-at-barcamp-bangalore-6/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 03:51:02 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=146</guid>
		<description><![CDATA[Yet another event and I will definitely be there. BarCamp Bangalore 6 is coming to the city on the 19th and 29th April. Unlike the last time, BarCamp this time has a mixed bag of things to offer. A look at the list of sessions and you would be amazed at the multitude of topics [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yet another event and I will definitely be there.<a href="http://barcampbangalore.org/wiki/Main_Page" target="_blank"> BarCamp Bangalore 6</a> is coming to the city on the 19th and 29th April. Unlike the last time, BarCamp this time has a mixed bag of things to offer. A look at the <a href="http://barcampbangalore.org/wiki/BCB6_Sessions" target="_blank">list of sessions</a> and you would be amazed at the multitude of topics that are planned to be covered. Hope to have fun there!..</p>
<p><a href="http://barcampbangalore.org/wiki/Main_Page" target="_blank"><img src="http://barcampbangalore.org/w/images/4/4f/Bcb6_logo_aashish.png" alt="BarCamp Bangalore 6" width="312" height="104" /></a></p>
<p>So, meet you there!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/146/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/146/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=146&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/04/11/will-be-there-at-barcamp-bangalore-6/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>

		<media:content url="http://barcampbangalore.org/w/images/4/4f/Bcb6_logo_aashish.png" medium="image">
			<media:title type="html">BarCamp Bangalore 6</media:title>
		</media:content>
	</item>
		<item>
		<title>Adobe RIA Architects Summit 2008</title>
		<link>http://sudhahariharan.wordpress.com/2008/04/04/adobe-ria-architects-summit-2008/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/04/04/adobe-ria-architects-summit-2008/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 05:33:08 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=145</guid>
		<description><![CDATA[Its been raining events in Bangalore. This time it was the Adobe RIA Architects summit held at Chancellory Pavilion yesterday. The name sounded pretty heavy and professional and I had my apprehensions on whether I would understand what was being talked about.
The event was great and I enjoyed every bit of it. It began with [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Its been raining events in Bangalore. This time it was the<a href="http://www.eventsbangalore.net/2008/04/01/adobe-ria-architect-summit-2008/" target="_blank"> Adobe RIA Architects summit </a>held at Chancellory Pavilion yesterday. The name sounded pretty heavy and professional and I had my apprehensions on whether I would understand what was being talked about.<br />
The event was great and I enjoyed every bit of it. It began with a keynote by <a href="http://www.linkedin.com/pub/1/544/804" target="_blank">David Wadhwani </a>followed by talks by <a href="http://www.forta.com/" target="_blank">Ben Forta</a> and <a href="http://www.jamesward.org/wordpress/" target="_blank">James Ward</a>. Every one of the speakers were very enthusaistic about the technology and the audience were awestruck with the wonderful examples being shown.<br />
Ben Forta&#8217;s talk was one of the most intresting talks in the whole session. He introduced flex and Air with amazing ease. He displayed his uncanny ability to write code in about a few minutes and grabbed the audience&#8217;s attention. Lots of questions were raised most of them dealing with security and porting flex to different servers. I had a question too but wasnt able to ask him (Too many questions and too little time). My question was: Coldfusion has been for years now and Flex is around 2 years old. However flex has found a great adoption in India and Coldfusion comparitvely less (I do know the technologies have wide disparites, my focus is on Adobe&#8217;s products persepective). What plans does Adobe have to encourage Coldfusion in India?<br />
The next session was by James ward, and as expected it focused on the technical aspects of Flex. He breifly took us through some of the best practices for Actionscript and I found the session very useful. Many questions that I had in mind were cleared. Some of the questions that the audience asked were very intresting. The questions thrown at James concentrated mainly on the performance and security of the Flash player. There were a series of questions on IFrames and rendering HTML content in Flex. (I still havent grasped much work arounds in that area).<br />
Overall the session was very informative. It mainly focused on showcasing the capabilities of Flex and AIR to people looking forward to adopting the platform. The turn out at the event was pretty good. Probably, Adobe may think of holding many more such events in India (including MAX <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) in the future.<br />
I wonder why the event was called &#8220;Architects&#8221; summit with only one session on the architecture persepective in Flex. &#8220;RIA Summit&#8221; would have sounded good enough.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/145/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/145/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=145&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/04/04/adobe-ria-architects-summit-2008/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
		<item>
		<title>Performance tuning using Flash Player Cache</title>
		<link>http://sudhahariharan.wordpress.com/2008/04/02/performance-tuning-using-flash-player-cache/</link>
		<comments>http://sudhahariharan.wordpress.com/2008/04/02/performance-tuning-using-flash-player-cache/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 03:44:40 +0000</pubDate>
		<dc:creator>Sudha</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Performance/Memory]]></category>

		<guid isPermaLink="false">http://sudhahariharan.wordpress.com/?p=144</guid>
		<description><![CDATA[A very good article on Improving performance of a Flex application using Flash Player cache can be found here.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A very good article on Improving performance of a Flex application using Flash Player cache can be found <a target="_blank" href="http://www.adobe.com/devnet/flex/articles/flash_player_cache.html">here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sudhahariharan.wordpress.com/144/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sudhahariharan.wordpress.com/144/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sudhahariharan.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sudhahariharan.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sudhahariharan.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sudhahariharan.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sudhahariharan.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sudhahariharan.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sudhahariharan.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sudhahariharan.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sudhahariharan.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sudhahariharan.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sudhahariharan.wordpress.com&blog=207395&post=144&subd=sudhahariharan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sudhahariharan.wordpress.com/2008/04/02/performance-tuning-using-flash-player-cache/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sudhahariharan-128.jpg" medium="image">
			<media:title type="html">Sudha</media:title>
		</media:content>
	</item>
	</channel>
</rss>