<?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>Buzzy And Me &#187; Screencast</title>
	<atom:link href="http://blog.buzzyand.me/category/screencast/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.buzzyand.me</link>
	<description>Our take on the Web Technology..</description>
	<lastBuildDate>Wed, 23 Sep 2009 09:47:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Porting Silverlight 2 Beta 1 Applications to Beta 2</title>
		<link>http://blog.buzzyand.me/2008/09/porting-silverlight-2-beta-1-applications-to-beta-2/</link>
		<comments>http://blog.buzzyand.me/2008/09/porting-silverlight-2-beta-1-applications-to-beta-2/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 21:12:03 +0000</pubDate>
		<dc:creator>buzzy</dc:creator>
				<category><![CDATA[RIA]]></category>
		<category><![CDATA[Screencast]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://blog.buzzyand.me/?p=36</guid>
		<description><![CDATA[About 5 months ago, I made a Flex/AIR application called Stockastica. It was a virtual stock trading simulation. Subsequently, I ported it to Silverlight 2 Beta 1. The first beta was just released and I was eager to see what I could do with it. It wasn&#8217;t a very complicated app. Only basic web services [...]]]></description>
			<content:encoded><![CDATA[<p>About 5 months ago, I made a Flex/AIR application called Stockastica. It was a virtual stock trading simulation. Subsequently, I ported it to Silverlight 2 Beta 1. The first beta was just released and I was eager to see what I could do with it. It wasn&#8217;t a very complicated app. Only basic web services were used. I made the app and forgot about it.</p>
<p>Today, I decided to port the app to beta 2. It is quite daunting when you start out. But like all things, you only need to find the right resources to help you get started. Probably the most helpful one was a post on <a href="http://devarthur.blogspot.com/2008/06/moving-silverlight-2-beta-1.html" target="_blank">/dev/arthur</a>. It solved almost all my problems.</p>
<p>If you are hosting the app on IIS7, don&#8217;t forget to add a .xap extension with a mime type of <em>application/x-silverlight</em>. Porting apps that use sockets was a bit troublesome. A detailed description of the changes between beta 1 and 2 is available <a href="http://msdn.microsoft.com/en-us/library/cc645049(VS.95).aspx" target="_blank">here</a>.</p>
<p>A screencast of the ported application&#8230;<br />
<object width="400" height="250"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1725331&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=1725331&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=ff9933&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="250"></embed></object><br /><a href="http://vimeo.com/1725331?pg=embed&amp;sec=1725331">Silverlight Stockastica Demo</a> from <a href="http://vimeo.com/user486867?pg=embed&amp;sec=1725331">Chinmay Garde</a> on <a href="http://vimeo.com?pg=embed&amp;sec=1725331">Vimeo</a>.<br />
Regards,<br />
Buzzy</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.buzzyand.me/2008/09/porting-silverlight-2-beta-1-applications-to-beta-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Porting Stockastica Application to AIR</title>
		<link>http://blog.buzzyand.me/2008/05/air-application-presentation/</link>
		<comments>http://blog.buzzyand.me/2008/05/air-application-presentation/#comments</comments>
		<pubDate>Mon, 12 May 2008 18:29:53 +0000</pubDate>
		<dc:creator>buzzy</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Screencast]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Jing]]></category>

		<guid isPermaLink="false">http://extremeblue.wordpress.com/?p=8</guid>
		<description><![CDATA[Now that Stockastica is fully ready, I have been working on porting the Stockastica Flex application to AIR.
Porting any Flex application to AIR involves changing the &#60;Application&#62; tags to &#60;WindowedApplication&#62; and adding an XML file. It is painfully simple.  I did spend some time adding features that are specific to a desktop application.
We also [...]]]></description>
			<content:encoded><![CDATA[<p>Now that Stockastica is fully ready, I have been working on porting the Stockastica Flex application to AIR.</p>
<p>Porting any Flex application to AIR involves changing the &lt;Application&gt; tags to &lt;WindowedApplication&gt; and adding an XML file. It is <em>painfully</em> simple.  I did spend some time adding features that are specific to a desktop application.</p>
<p>We also spent some time modifying the CSS properties to give it a customized look( though I am pretty sure I managed to ruin even the <em>plain vanilla</em> look ). It felt weird knowing that I was modifying the presentation layer of a desktop application using CSS. But it works flawlessly and I was really impressed, especially after I had gone through the harrowing experience of styling and skinning the Silverlight app. Using XAML resources is not as intuitive as using CSS.</p>
<p><a title="Here" href="http://screencast.com/t/5iueWVKh" target="_blank">Here</a> is a screencast of Version 2.0 of the App I finally prepared after porting it to AIR. I am sorry about the large resolution. Will post another one on a lower resolution soon. Hope you like what you see. Please leave your comments below. I would love to hear any suggestions.</p>
<p>Buzzy</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.buzzyand.me/2008/05/air-application-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
