<?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>Dave Mozealous &#187; Screenr</title>
	<atom:link href="http://www.mozealous.com/category/screenr/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mozealous.com</link>
	<description>Articulate technology and tech usability.</description>
	<lastBuildDate>Tue, 24 May 2011 20:39:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>I built a Twitter based search for #Screenr on Mozealous.com</title>
		<link>http://www.mozealous.com/i-built-a-twitter-based-search-for-screenr-on-mozealous-com/</link>
		<comments>http://www.mozealous.com/i-built-a-twitter-based-search-for-screenr-on-mozealous-com/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 00:08:41 +0000</pubDate>
		<dc:creator>Dave Mozealous</dc:creator>
				<category><![CDATA[Screenr]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.mozealous.com/?p=1005</guid>
		<description><![CDATA[If you have ever tried to use the Twitter search you have probably noticed it doesn&#8217;t feel much like a search.  It is more of a live filter or live pulse for a specific word, showing you a stream of live tweets containing that word.  Try using the Twitter search at http://search.twitter.com and search for [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you have ever tried to use the Twitter search you have probably noticed it doesn&#8217;t feel much like a search.  It is more of a live filter or live pulse for a specific word, showing you a stream of live tweets containing that word.  Try using the Twitter search at <a href="http://search.twitter.com">http://search.twitter.com</a> and search for something like &#8220;#CS5&#8243; (Adobe Creative Suite 5) and you will see what I mean.  It doesn&#8217;t return the most interesting results, it just returns the most current results (imagine if Google did this).  Don&#8217;t get me wrong, current is cool, like in the event of an earthquake, or zombie apocalypse it is nice to &#8220;See what&#8217;s happening — <em>right now.</em>&#8221;  But maybe that isn&#8217;t what you are looking for, maybe you want to find the most interesting Tweet on #CS5, or in the case of <a href="http://screenr.com">Screenr</a> the most interesting screencast on PowerPoint, not just the most recent.  So several months ago I was bored and set out to build a better search system for Screenr, and I did, and here is how I did it.</p>
<p><a href="http://www.mozealous.com/wp-content/uploads/ScreenrSearch.png"><img class="aligncenter size-medium wp-image-1006" title="ScreenrSearch" src="http://www.mozealous.com/wp-content/uploads/ScreenrSearch-300x293.png" alt="" width="300" height="293" /></a></p>
<h2>How to make a better search</h2>
<p>This morning the New York Times posted an article on TweetUp, a company that is building a smarter search for Twitter (<a href="http://www.nytimes.com/2010/04/12/technology/12gross.html" target="_blank">read the article here</a>).  Essentially, what they are trying to do is turn the search into more than just a pulse, they want an actual search, like Google&#8217;s that ranks the search based on factors to determine if it will be the most relevant.</p>
<p><strong>TweetUp measures a Tweets popularity by:</strong></p>
<ul>
<li>Measuring how often readers repost the tweets (number of ReTweets)</li>
<li>How many clicks each links get</li>
</ul>
<p>They also just raised $3.5 million in funding for this concept (along with an interesting monetization idea).</p>
<h2>Measure interestingness by the number of ReTweets</h2>
<p>I think this is a pretty cool concept, if something is ReTweeted it usually means it is interesting, and the more ReTweets a tweet gets, the more interesting it is.  What I was happy about was this was the same conclusion I came to when building my search.  So tweets that are more heavily ReTweeted should appear higher in the search results, so this is what I did.</p>
<h2>Other ways to measure interestingness</h2>
<p>So I kept thinking about this and wondered if there were other ways that you could measure &#8220;interestingness.&#8221;</p>
<p><strong>Here were some alternative ideas I had for measuring interestingness:</strong></p>
<ul>
<li><strong>Reach &#8211; </strong>&#8220;Reach&#8221; I defined as the total number of followers of everyone who tweeted the screencast.</li>
<li><strong>Views</strong> &#8211; Simply measuring the number of views of a particular screencast.</li>
<li><strong>Views per Reach </strong>- The number of views of a particular screencast divided by the &#8220;Reach&#8221; of the tweet.  The idea behind this though would be that the most interesting screencast would be the one that compelled people that saw the Tweet to actually view the video.</li>
</ul>
<p>The difficulty of these approaches is that at Screenr we don&#8217;t give you access to the number of views through any type of API so that I can analyze the data, and when trying to determine the &#8220;Reach&#8221; of a Tweet it can use several hundred API calls to twitter that quickly push you over the API call limit.  So I abandoned any of these other approaches.</p>
<h2>How I built my search</h2>
<p>Here is a quick rundown of what I did:</p>
<ul>
<li><strong>Dump all Screenr tweets from Twitter in a database every hour using the Twitter API. </strong>Twitter only gives you access to a couple of weeks worth of data using their search.  To deal with this I run an automated script every hour that dumps all tweets that contain the text &#8220;http://screenr.com&#8221; into a database.  This database is what I use for the search queries.  Obviously on screencasts that have been tweeted will show up in my search results because I am using the Twitter API.</li>
<li><strong>Search the database when someone searches, then rank results based on RTs.</strong> When you search using my search tool, I will query the database and find every screencast that uses your search term.  I then look for which screencast has been tweeted the most, then display that Tweet at the top of the results.</li>
</ul>
<p>Pretty simple huh?</p>
<h2>Use my Twitter based search for #Screenr</h2>
<p>If you want to try it out you can use my Screenr search here:</p>
<form action="screenr/index.php" method="submit">
<input id="twitterq" name="twitterq" type="text" />
<input name="Submit" type="submit" value="Screenr Search" />
</form>
<p>Or by visiting it directly here:</p>
<p><a href="http://www.mozealous.com/screenr/">http://www.mozealous.com/screenr/</a></p>
<h2>This isn&#8217;t an official Screenr search</h2>
<p>Just so you know, this is something I was just playing around with, at some point in the future Screenr will release an official Screenr search that is better than this.</p>
<h2>How this search can be improved</h2>
<p>There are a couple of things I don&#8217;t like about my search, and I think that it could be improved.  Here is what I think should be done:</p>
<ul>
<li>Only display the original tweet in the search results (no need to show all RTs)</li>
<li>Create a better search results page, like maybe something like what YouTube does, or Bing video search, that shows the video, or video thumb, not just video description.  After all, you are looking for the video, not the description.</li>
<li>Handle apostrophes better.  I don&#8217;t handle them well.</li>
</ul>
<h2>You should improve it</h2>
<p>If you are interested in improving this search, and are comfortable programming in PHP I would be more than happy to give you access to source code I used to build this search.  If you are, let me know in the comments and I&#8217;ll give you the code and the current database I am using that stores the tweets.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mozealous.com/i-built-a-twitter-based-search-for-screenr-on-mozealous-com/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Create a Screenr Video Podcast in 4 EASY steps</title>
		<link>http://www.mozealous.com/create-a-screenr-video-podcast-in-4-easy-steps/</link>
		<comments>http://www.mozealous.com/create-a-screenr-video-podcast-in-4-easy-steps/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 16:51:20 +0000</pubDate>
		<dc:creator>Dave Mozealous</dc:creator>
				<category><![CDATA[eLearning Technology]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[mLearning]]></category>
		<category><![CDATA[Screenr]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.mozealous.com/?p=725</guid>
		<description><![CDATA[It&#8217;s 2010, and you are dying to do something that embraces mobile learning. Why not create a Video Podcast of all your Screenr screencasts? Here is how you can create a Video Podcast of your Screenr screencasts in 4 easy steps. A little background One of the cool things about Screenr, is that you can [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: left;">
<p><a href="http://www.mozealous.com/wp-content/uploads/iphone_video.jpg"><img class="size-medium wp-image-765 alignright" title="iPhone Video" src="http://www.mozealous.com/wp-content/uploads/iphone_video-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>It&#8217;s 2010, and you are dying to do something that embraces mobile learning.  Why not create a Video Podcast of all your Screenr screencasts?</p>
<p>Here is how you can create a Video Podcast of your Screenr screencasts in 4 easy steps.</p>
<h2>A little background</h2>
<p style="text-align: left;">One of the cool things about Screenr, is that you can view your Screenr Screencasts on an iPhone.  Articulate&#8217;s CEO <a href="http://twitter.com/GetAdam" target="_blank">@GetAdam</a> created this Screencast to show you what Screenr Videos look like on an iPhone:</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=5319" /><param name="allowFullScreen" value="true" /><param name="src" value="http://screenr.com/Content/assets/screenr_1116090935.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="345" src="http://screenr.com/Content/assets/screenr_1116090935.swf" allowfullscreen="true" flashvars="i=5319"></embed></object><br />
<a href="http://screenr.com/oXs" target="_blank">View at Screenr</a></p>
<p style="text-align: left;"><strong>Cool, so Screenr screencasts play on an iPhone&#8230;how did we do that? </strong>Only certain video types will play on an iPhone (like MP4 for example), and will only play video up to certain dimensions (640&#215;480).  In order to provide the best video quality for both iPhone users, and normal web users Screenr creates two separate video files for each screencast you create.  A smaller 640&#215;480 video that is optimized for the iPhone, and a larger full resolution video that matches your recording dimensions for web users.</p>
<p style="text-align: left;">When we build our Video Podcast feed we are going to link to the iPhone version of your Screencast to make sure that it will play nicely on an iPhone and iPod Touch.</p>
<h2>Step 1: Install some tools</h2>
<p>You need a few tools to follow these steps.  Go ahead and install them now if you don&#8217;t have them.</p>
<ul>
<li>Firefox + the <a href="https://addons.mozilla.org/en-US/firefox/addon/59" target="_blank">User Agent Switcher Add-On</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/59" target="_blank"></a>A text editor to edit some XML (I recommend <a href="http://notepad-plus.sourceforge.net/uk/site.htm" target="_blank">Notepad++</a>)</li>
<li>iTunes</li>
</ul>
<h2>Step 2: Get the video links</h2>
<p>We need to get the links to the iPhone version of the MP4s.  In order to get the iPhone version of the MP4&#8242;s you will need to trick Screenr into thinking your Firefox browser is an MP4.</p>
<p>Here is how you can do that:</p>
<ol>
<li>Install the <a href="https://addons.mozilla.org/en-US/firefox/addon/59" target="_blank">User Agent Switcher Add-On</a> in Firefox if you haven&#8217;t already.</li>
<li>Select <strong>Tools</strong></li>
<li>Select <strong>Default User Agent</strong> &gt; <strong>iPhone 3.0</strong></li>
<li>Go to Screenr.com</li>
<li>Find the video you are looking to include in your Podcast</li>
<li>Select <strong>View </strong>&gt; <strong>Page Source</strong> to view the HTML (this will help us find the link)</li>
<li>Find the &lt;video&gt; tag..hint, it should look something like this:<br />
&lt;video width=&#8221;290&#8243; height=&#8221;161&#8243; poster=&#8221;http://c0203141.cdn.cloudfiles.rackspacecloud.com/81e750d1-56dd-4e55-97e0-72f3cb445e79_thumb.jpg&#8221; controls=&#8221;controls&#8221;&gt;<br />
&lt;source src=&#8221;http://c0203291.cdn.cloudfiles.rackspacecloud.com/81e750d1-56dd-4e55-97e0-72f3cb445e79.mp4&#8243; type=&#8221;video/mp4&#8243; /&gt;&lt;!&#8211; Safari / iPhone video &#8211;&gt;<br />
&lt;/video&gt;</li>
<li>Copy the link to the MP4 and save it for later</li>
<li>Repeat for all the videos you want to include in your podcast</li>
</ol>
<p>Confused by those steps?  The screencast below will walk you through it.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=37261" /><param name="allowFullScreen" value="true" /><param name="src" value="http://screenr.com/Content/assets/screenr_1116090935.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="345" src="http://screenr.com/Content/assets/screenr_1116090935.swf" allowfullscreen="true" flashvars="i=37261"></embed></object></p>
<p style="text-align: center;"><a href="http://screenr.com/IYS" target="_blank">View at Screenr</a></p>
<div id="_mcePaste" style="text-align: left;">Note: After getting all the links you want to include, you can turn off the iPhone User agent by going to <strong>Tools </strong>&gt;<strong> iPhone 3.0</strong> &gt; <strong>Default User Agent</strong></div>
<h2>Step 3: Create the XML feed</h2>
<p>There are easier ways to do this, but we are just going to create the XML feed for the Video Podcast by hand.  This XML feed is what iTunes will use to build and update your Video Podcast.  So let&#8217;s get started.</p>
<ol>
<li>Grab my sample Video Podcast XML feed <a href="http://www.mozealous.com/vodcast.xml">here</a> (<strong>Right-Click</strong> and select <strong>Save As</strong>).</li>
<li>Open up the XML file in your favorite text editor (like Notepad++).</li>
</ol>
<p>Ok, now a little explanation about the Podcast XML structure.  A Podcast XML feed is made up of a channel, and a <strong>channel </strong>has various different <strong>items</strong>, somewhat like programs.  This is kinda similar to like TV channels being made up of various different programs.  Like how ESPN is a channel, and has various different programs like Sports Center, Monday Night Football, etc.  The Podcast XML will be similar, we first create the channel, and then we will add a bunch of items, and the items will be the individual screencasts.</p>
<p><strong>Create the channel</strong></p>
<p>So lets take a look at the XML file.  The first thing you will want to do is update the tags in the channel.  The channel has the following tags, most of which are self-explanatory, but here is a short explanation of each:</p>
<ul>
<li>&lt;title&gt; &#8211; This is the title of the Video Podcast.</li>
<li>&lt;link&gt; &#8211; I just made this a link to my homepage (http://www.mozealous.com).</li>
<li>&lt;language&gt; &#8211; Assuming you can read this, you can probably leave this as is.  It is set to English.</li>
<li>&lt;copyright&gt; &#8211; This is your copyright statement.</li>
<li>&lt;itunes:subtitle&gt; &#8211; A subtitle for the Video Podcast.</li>
<li>&lt;itunes:author&gt; &#8211; This is you.  The creator of this Video Podcast.</li>
<li>&lt;itunes:summary&gt; &#8211; A short summary of the Video Podcast.  What topics does this podcast cover?</li>
<li>&lt;description&gt; &#8211; I just made this the same as the summary.</li>
<li>&lt;itunes:name&gt; &#8211; Your name, the owner of the Video Podcast Feed.</li>
<li>&lt;itunes:email&gt; &#8211; Your email address.</li>
<li>&lt;itunes:image&gt; &#8211; A picture that will appear in iTunes next to your Podcast.</li>
</ul>
<p>If you want to see how these items relate to what is seen in iTunes check out this diagram by clicking the image below.</p>
<p style="text-align: center;"><a href="http://www.mozealous.com/images/iTunesPod.png"><img class="aligncenter" title="Video Podcast Channel" src="http://www.mozealous.com/images/iTunesPod.png" alt="" width="471" height="270" /></a></p>
<p>So update the channel tags with your info, and let&#8217;s move on and&#8230;</p>
<p><strong>Add items to the channel</strong></p>
<p>Now that we have created the channel, we need to add some &#8220;items&#8221; or screencasts to our feed.  Most of the item tags are pretty self-explanatory, but again, here is a short explanation of each:</p>
<ul>
<li>&lt;title&gt; &#8211; This is the title of the specific screencast.</li>
<li>&lt;itunes:author&gt; &#8211; The creator of the specific screencast.</li>
<li>&lt;itunes:subtitle&gt;- I just made mine the same as the title, but you want to provide more info.</li>
<li>&lt;itunes:summary&gt; &#8211; A longer description of the screencast.</li>
<li>&lt;encloure url=&#8221;link to podcast&#8221; length=&#8221;size in bytes&#8221; type=&#8221;video/mp4&#8243;/&gt; &#8211; The<strong> </strong><strong>enclosure </strong>tag is made up of:
<ul>
<li>The <strong>URL</strong> to the screencast (from step 2).  I linked to the MP4 on Screenr.</li>
<li>The <strong>length</strong>, which is the size of the screencast in bytes.  I couldn&#8217;t think of a really good way to get the size of the screencast without downloading the video, so that is what I did.  I downloaded it and then checked the size on disk (right-click in windows and select Properties).  The size should be listed with numbers only, and in <strong>BYTES</strong> (ex. 124444.  Not 124,444kb).</li>
<li><strong>type,</strong> which should always be &#8220;video/mp4&#8243; for screencasts.</li>
</ul>
</li>
<li>&lt;guid&gt; &#8211; A unique identifier for the screencast.  I just used the URL.</li>
<li>&lt;pubDate&gt; &#8211; The date this screencast was added to the feed.</li>
<li>&lt;itunes:duration&gt; &#8211; The duration of the screencast (you can get this from Screenr).</li>
<li>&lt;itunes:keyword&gt; &#8211; Keywords to help users find your screencast in search.</li>
</ul>
<p style="text-align: left;">If you want to see how these items relate to what is seen in iTunes check out this diagram by clicking the image below.</p>
<p style="text-align: center;"><a href="http://www.mozealous.com/wp-content/uploads/iTunesItem.png"><img class="aligncenter" title="iTunes Items" src="http://www.mozealous.com/wp-content/uploads/iTunesItem.png" alt="" width="461" height="248" /></a></p>
<p>You will want to add items for each screencast you want to include in your podcast.  You can update the feed at any time to include new screencasts by adding additional items.</p>
<p>After you have finished updating the XML feed, save the file.</p>
<p><a href="http://www.apple.com/itunes/podcasts/specs.html" target="_blank">Making a Podcast</a> is an official explanation of all this from Apple.  Read it if you have trouble sleeping.  Or re-read this post, it should help you sleep too.</p>
<h2>Step 4: Submit to iTunes</h2>
<p>Now that we have created the XML Feed for our Video Podcast we will want to host it someplace so that we can submit it to iTunes.  I just hosted mine on my website at <a href="http://www.mozealous.com/vodcast.xml" target="_blank">http://www.mozealous.com/vodcast.xml</a>.  Once you have it hosted you can submit it to iTunes.  This will allow people to find your podcast in the iTunes Store, and to subscribe to your feed.</p>
<p><strong>To submit a Video Podcast feed to iTunes</strong></p>
<ol>
<li>Launch <strong>iTunes</strong></li>
<li>Select the <strong>iTunes Store</strong></li>
<li>Select the <strong>Podcasts</strong> tab</li>
<li>Select <strong>Submit a Podcast</strong></li>
<li>Enter the URL to your Podcast Feed and follow the steps outlined</li>
</ol>
<p>Within 24 hours your Screenr Video Podcast feed will be available on iTunes.</p>
<h2>You are done.  What&#8217;s next?</h2>
<p>It might seem like creating this Video Podcast feed was a pain in the ass&#8230;well, it was.  I know I know, I said that this would be 4 easy steps, and it was closer to 40 complicated steps, well ha, I hooked you anyway.  The good news is that once you created the feed it is fairly easy to update, all you need to do is add the screencasts as &lt;items&gt; to the XML feed and the changes will be picked up by iTunes in about a day.</p>
<p>If you create a Screenr Video Podcast feed let me know in the comments below.  I&#8217;ll highlight them in this post.</p>
<p>So congrats, you are done!   You have created your first Video Podcast feed of your Screenr screencasts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mozealous.com/create-a-screenr-video-podcast-in-4-easy-steps/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
<enclosure url="http://c0203291.cdn.cloudfiles.rackspacecloud.com/81e750d1-56dd-4e55-97e0-72f3cb445e79.mp4" length="3716738" type="video/mp4" />
		</item>
		<item>
		<title>What Troy McClure Can Teach You About Creating Awesome Screencasts</title>
		<link>http://www.mozealous.com/what-troy-mcclure-can-teach-you-about-creating-awesome-screencasts/</link>
		<comments>http://www.mozealous.com/what-troy-mcclure-can-teach-you-about-creating-awesome-screencasts/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 14:55:21 +0000</pubDate>
		<dc:creator>Dave Mozealous</dc:creator>
				<category><![CDATA[Screenr]]></category>

		<guid isPermaLink="false">http://www.mozealous.com/?p=583</guid>
		<description><![CDATA[Troy McClure has made some exceptional instructional films in his day. You might remember him from such educational films as The Half-Assed Guide to Foundation Repair and Alice&#8217;s Adventures through the Windshield Glass. So with all his instructional video experience, you might be wondering&#8230; What can Troy McClure teach me about creating awesome Screencasts? Let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Troy McClure has made some exceptional instructional films in his day. You might remember him from such educational films as <em>The Half-Assed Guide to Foundation Repair</em> and <em>Alice&#8217;s Adventures through the Windshield Glass</em>. So with all his instructional video experience, you might be wondering&#8230;</p>
<h2><strong>What can Troy McClure teach me about creating awesome Screencasts?</strong></h2>
<p>Let&#8217;s first watch this educational film from Troy McClure, <em><strong>Meat and You: Partners in Freedom:</strong></em></p>
<p style="text-align: center; "><object id="viddler_e64d11bd" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="437" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.viddler.com/simple/e64d11bd/" /><param name="name" value="viddler_e64d11bd" /><param name="allowfullscreen" value="true" /><embed id="viddler_e64d11bd" type="application/x-shockwave-flash" width="437" height="345" src="http://www.viddler.com/simple/e64d11bd/" name="viddler_e64d11bd" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
<h2><strong>Eliminate confusion points and address common mistakes</strong></h2>
<p>It is maddening watching a screencast when something confusing is shown, and not addressed by the author of the screencast.  You watch a 5 minute screencast and have this huge question at the end &#8220;well, what was that button you pressed&#8221;, or &#8220;why did you choose that option,&#8221; and that can kill  an otherwise great screencast.  <a href="http://multimedialearning.com/2009/09/using-improvs-principle-of-agreement-to-create-better-screencasts/" target="_blank">David Anderson also points out that by rolling with mistakes in your screencast</a>, and using the &#8220;Yes, and&#8230;&#8221; principle to your screencasts you can address common mistakes or confusing points.</p>
<p>In the previous video Troy does an excellent job of clearing up any points of confusion in this educational film.  First he lets us know that a &#8220;killing floor&#8221; isn&#8217;t actually a floor, it &#8220;<em>i</em><em>s more of a steel grating that allows material to sluice through so it can be collected and exported</em>.&#8221;  He later tells us that people who think its wrong to eat meat aren&#8217;t crazy, they are &#8220;<em>just ignorant</em>&#8221; because they haven&#8217;t heard of the &#8220;Food Chain&#8221;.</p>
<div id="attachment_614" class="wp-caption aligncenter" style="width: 280px">
	<img class="size-full wp-image-614" title="The Food Chain" src="http://www.mozealous.com/wp-content/uploads/FoodChain.png" alt="The Food Chain" width="280" height="208" />
	<p class="wp-caption-text">The Food Chain</p>
</div>
<p>By eliminating points of confusion and addressing common mistakes you will make your viewers much happier and better informed.</p>
<p>Another of my favorite screencasters (Donnie Hoyle) does this frequently too.  <a href="http://www.mozealous.com/?p=92" target="_blank">In this demo on Photoshop</a> (at the 1:25 mark) he points out that you shouldn&#8217;t use the eraser tool to eliminate a background.</p>
<h2><strong>Add some personality</strong></h2>
<p>Because your Screenr screencast can contain audio, it gives you an awesome opportunity to add some life, humor, and personality to your screencast.</p>
<p>Let&#8217;s watch the next clip of Troy from the Self Help video, <em>Adjusting Your Self-O-Stat</em> with Brad Goodman, and look at how his personality comes through in the video.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="296" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.hulu.com/embed/H4tEZqXeumUGXxp__VRh4g/7/97" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="296" src="http://www.hulu.com/embed/H4tEZqXeumUGXxp__VRh4g/7/97" allowfullscreen="true"></embed></object></p>
<p><strong>Troy adds personality by over simplifying everything.</strong></p>
<p>In the clip Brad draws a circle on the board and tells Troy, &#8220;this circle, is you&#8221; and Troy exclaims, &#8220;My god, it is like you have known me all my life!&#8221;  Troy adds personality to the clip by ridiculously simplifying.</p>
<p>So, over simplifying is probably not the best idea for screencasts, it is better to cover and eliminate points of confusion, but viewing a screencast with some personality is always more interesting than some dry, script-read screencast.</p>
<p><a href="http://www.mydamnchannel.com/You_Suck_at_Photoshop/Season_2/15DefinePattern_1402.aspx">Donnie </a>has also done a great job of creating his series of wicked screencasts that really show off some of his personality that are worth checking out.</p>
<p><strong>Troy adds personality by giving natural, hilarious, branded intros</strong></p>
<p>Every instructional film Troy does begins, &#8220;Hi, I am Troy McClure!  You may remember me from such educational films as&#8230;&#8221; and then follows it by stating some hilarious other film he has appeared in.  Some of his more memorable educational films are:</p>
<ul>
<li><em>Lead Paint: Delicious But Deadly</em></li>
<li><em>Locker Room Towel Fights: The Blinding of Larry Driscoll</em></li>
</ul>
<p>The reason this works so well is I know really quickly that: this guy made this other hilarious film, and it was awesome, and hey, I&#8217;ll want  to check out this one too.  If you check out the screencast I did on <a href="http://www.mozealous.com/?p=537">Dokeos</a> I tried to do something similar (minus the hilarity).  It didn&#8217;t really work out that well though because the intro was too rehearsed and too robotic, in other words, it came across with NO personality.  Troy comes across naturally in his introductions.</p>
<h2><strong>There is a lot to learn from Troy McClure</strong></h2>
<p>Troy McClure is able to to create awesome educational films by eliminating and addressing points of confusion, and adding some personality.</p>
<p>Now go out there and create some awesome screencasts that Troy McClure would be proud of.</p>
<p>Special thanks to the guys over at <a href="http://www.snpp.com">http://www.snpp.com</a> for all their awesome info on The Simpsons. Couldn&#8217;t have written this post without you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mozealous.com/what-troy-mcclure-can-teach-you-about-creating-awesome-screencasts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>3 easy steps to get your users to press play in Screenr</title>
		<link>http://www.mozealous.com/3-easy-steps-to-get-your-users-to-press-play/</link>
		<comments>http://www.mozealous.com/3-easy-steps-to-get-your-users-to-press-play/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 13:57:08 +0000</pubDate>
		<dc:creator>Dave Mozealous</dc:creator>
				<category><![CDATA[Screenr]]></category>

		<guid isPermaLink="false">http://www.mozealous.com/?p=461</guid>
		<description><![CDATA[David Anderson makes Screenr screencasts that always look awesome.    His screencast below had over 250 views in just over 24 hours.  If you are looking for advice on how to get people to watch your ENTIRE video, this post won&#8217;t cover that.  This post WILL show you 3 easy steps to get viewers to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://twitter.com/elearning">David Anderson</a> makes Screenr screencasts that always look awesome.    His screencast below had over 250 views in just over 24 hours.  If you are looking for advice on how to get people to watch your ENTIRE video, this post won&#8217;t cover that.  This post WILL show you 3 easy steps to get viewers to press play.</p>
<p><strong>This screencast gets me to press play</strong><br />
<center><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=11302" /><param name="allowFullScreen" value="true" /><param name="src" value="http://screenr.com/Content/assets/screenr_0817090731.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="345" src="http://screenr.com/Content/assets/screenr_0817090731.swf" allowfullscreen="true" flashvars="i=11302"></embed></object></p>
<p style="text-align: center;"><a style="text-decoration: none;" href="http://screenr.com/pV8">View this screencast at Screenr</a></p>
<p></center></p>
<h2><strong>Here are 3 simple steps that will increase the views of your screencasts:</strong></h2>
<h2><strong>Step 1: Use a custom Twitter profile pic</strong></h2>
<div id="attachment_465" class="wp-caption alignright" style="width: 240px">
	<img class="size-medium wp-image-465 " title="Default Twitter Profile Pic Sucks" src="http://www.mozealous.com/wp-content/uploads/NoLogo1-300x263.png" alt="Default Twitter Profile Pic Sucks" width="240" height="210" />
	<p class="wp-caption-text">Bad: Default Twitter Profile Pic</p>
</div>
<p>Every time I see someone still using the default twitter profile picture I figure that they can&#8217;t figure out how to set their Twitter pic, they are too lazy to change it, or they are they are using Twitter to send me spam.  Why would I want to view a screencast by any one of these people?</p>
<div class="wp-caption alignleft" style="width: 73px">
	<img title="Davids Profile Pic" src="http://a3.twimg.com/profile_images/384609795/david_bigger.jpg" alt="Davids Profile Pic" width="73" height="73" />
	<p class="wp-caption-text">Good: David&#39;s Profile Pic</p>
</div>
<p>Part of the beauty of Screenr is that it allows you to show some personality to a screencast through narration.  A good way to not show personality is by using the default Twitter profile pic.</p>
<p>See how David&#8217;s pic adds some personality to the banner above the screencast?</p>
<p>Adding a custom Twitter profile pic tells me that you:</p>
<ol>
<li>Know how to use a computer</li>
<li>Aren&#8217;t a robot</li>
<li>Aren&#8217;t lazy</li>
</ol>
<h2><strong>Step 2: Use a good description</strong></h2>
<p><strong>Eliminate excessive words, and remove &#8220;How to&#8230;&#8221; from the beginning of your screencast descriptions.</strong></p>
<p>Back in the Web 1.0 world it was generally thought that adding more text to a web page increased the usability of the page.  People soon figured out that this was not the case, and icons became popular.</p>
<p>People hate reading excessive amounts of text, this is why <strong>NOBODY EVER reads a help file </strong>or FAQ.  As an example, check out Screenr, there are less than 100 words on the Screenr home page (excluding screencast descriptions).  Yet, despite having very little text people aren&#8217;t having a tough time figuring out what Screenr does, or how to use it.</p>
<p>Use fewer words to describe your screencast, it will make it easier to quickly figure out what your screencast is about.</p>
<p>Look at the description of David&#8217;s screencast:</p>
<blockquote><p>Create a Polaroid, page curl image effect in PowerPoint 2007</p></blockquote>
<p>What if it had been:</p>
<blockquote><p>How to create a Polaroid, page curl image effect in PowerPoint 2007</p></blockquote>
<p>Or even worse:</p>
<blockquote><p>How you can create a Polaroid, page curl image effect in PowerPoint 2007</p></blockquote>
<p>The top description allows me to almost instantly figure out what the screencast is about without having to READ the description.  I can quickly just parse it and figure out, hey, this is about creating a Polaroid effect in PowerPoint 2007.</p>
<p><em>Note: Articulate&#8217;s <a href="http://www.twitter.com/GetAdam">Adam Schwartz</a> pointed out in the comments that there is a lot of reseach that shows that words like &#8220;How to&#8221; actually increase conversion rates.  So the words &#8220;How to&#8221; may actually help more than they hurt.  It is important though that you remove excess words, especially in the Twitter world.  The longer the description the more difficult it is to ReTweet.  The quicker someone can parse your description the more likely they will be to view the screencast.</em></p>
<p><strong>3. Use an interesting thumbnail</strong></p>
<p>Two reasons why David&#8217;s screencast thumbnail rocks:</p>
<ol>
<li>The thumbnail displayed looks compelling</li>
<li>It shows the finished state of the demonstration</li>
</ol>
<p><strong>Don&#8217;t make the thumbnail be the record instruction page.</strong></p>
<p>The thumbnail displayed in Screenr is the first frame of your recorded screencast.  Avoid this by minimizing your browser <strong>before</strong> starting the recording.</p>
<div id="attachment_488" class="wp-caption aligncenter" style="width: 300px">
	<img class="size-medium wp-image-488" title="screenr" src="http://www.mozealous.com/wp-content/uploads/screenr-300x163.png" alt="Why should I view this again?" width="300" height="163" />
	<p class="wp-caption-text">First rule of Screenr is we don&#39;t record the recording page.</p>
</div>
<p>In David&#8217;s screencast the first frame he captured was the end result (i.e. the result of following the demo).  This way I know what I am going to get by viewing the screencast.  I don&#8217;t have to wait till 3 minutes into the screencast to decide if it is something that I am interested in learning about.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mozealous.com/3-easy-steps-to-get-your-users-to-press-play/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Top 10 tools for learning..ok, just 8</title>
		<link>http://www.mozealous.com/top-10-tools-for-learning-ok-just-8/</link>
		<comments>http://www.mozealous.com/top-10-tools-for-learning-ok-just-8/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 16:26:00 +0000</pubDate>
		<dc:creator>Dave Mozealous</dc:creator>
				<category><![CDATA[Articulate Online]]></category>
		<category><![CDATA[eLearning Technology]]></category>
		<category><![CDATA[Engage]]></category>
		<category><![CDATA[Moodle]]></category>
		<category><![CDATA[Presenter]]></category>
		<category><![CDATA[Quizmaker]]></category>
		<category><![CDATA[Screenr]]></category>

		<guid isPermaLink="false">http://www.mozealous.com/?p=375</guid>
		<description><![CDATA[The Center for Learning and Performance Technologies is looking for your Top 10 tools for learning.  I am using this post as my submission, and to explain why I selected the tools that I did. I have these numbered in a list, but really, they are in no particular order.  Why did I not just [...]]]></description>
			<content:encoded><![CDATA[<p></p><div>
<div class="wp-caption aligncenter" style="width: 463px">
	<img title="Learning Tools" src="http://www.mozealous.com/uploaded_images/minilogo.gif" alt="Old School Learning Tools" width="463" height="306" />
	<p class="wp-caption-text">Old School Learning Tools</p>
</div>
</div>
<div>The <a href="http://www.c4lpt.co.uk/recommended/yours.html">Center for Learning and Performance Technologies</a> is looking for your Top 10 tools for learning.  I am using this post as my submission, and to explain why I selected the tools that I did.</div>
<p></p>
<div>I have these numbered in a list, but really, they are in no particular order.  Why did I not just list them alphabetically?  Kinda a usability thing really.  If I listed them as bullet points it would be tough to immediately tell how long the list is, and you likely wouldn&#8217;t read it.  If you know there are 8, and they are numbered you are more likely to read all 8.</div>
<p></p>
<ol>
<li><strong>Articulate Studio &#8217;09.</strong> Hands down, the best eLearning toolset on the market <img src='http://www.mozealous.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   How about that for a completely unbiased opinion from the QA Manager for 3 out of the 4 tools in the suite?  Honestly, I do think it is the best eLearning toolset on the market or I wouldn&#8217;t work at Articulate.  We offer great support, and make products that are so easy to learn even your grandma could use them.</li>
<p></p>
<li><strong>WordPress. </strong>It is impossible to ignore what blogs have done for eLearning, and how can my list be complete without including the BEST Blogging software.  Wordpress.</li>
<p></p>
<li><strong>Twitter. </strong>This choice might turn some heads&#8230;you might be thinking, how does constant updates from Ashton Kutcher and Shaq facilitate learning?  Good question&#8230;it depends on how you use Twitter.  If you only follow the tweeps like Shaq or Ashton Kutcher you probably aren&#8217;t going to gain much from it, and you probably don&#8217;t have a whole lot of friends (Ok, I admit it, I follow Shaq).  However, if you use Twitter to connect, share, and ask advice from other professionals in your industry it can be an invaluable tool.  Find a blog that you like, and subscribe to his/her Twitter feed, you will be smarter for it.</li>
<p></p>
<li><strong>Screenr.  <span style="font-weight: normal;">Screenr is a tool for creating instant screencasts for Twitter.  Although this is a very new tool, it is easy to see the impact this is going to have on people making software demos and screencasts.  Screenr has eliminated the barriers to entry for anyone looking to create demos and screencasts. </span><br />
</strong></li>
<p></p>
<li><strong>Wikipedia.<span style="font-weight: normal;"> Originally I was going to list this as Wiki&#8217;s in general, but then figured I should probably suggest a specific vendor.  Problem is I don&#8217;t know enough about the different Wiki vendors to say which one is the best.  I don&#8217;t really think I need to explain this selection, it kinda speaks for itself.</span><br />
</strong></li>
<p></p>
<li><strong>Articulate Online. </strong> Another tool from the great guys at Articulate.  I know listing two products from the same company (or 3 I guess, technically) is a no-no, but this had to make my list.  The reason&#8230;Articulate Online has made distributing and tracking eLearning training easy.  One problem with traditional Learning Management Systems is that it is often difficult to deploy content to them, and then distribute content once it is on the LMS.  Articulate Online has changed that with one click publishing and easy deployment links.</li>
<p></p>
<li><strong>Moodle.  <span style="font-weight: normal;">Yes, Moodle, the Open Source LMS.  Why does this make my list&#8230;so many people are using it to distribute and track training.  It is free and reasonably good, which means it works for a lot of people.</span><br />
</strong></li>
<p></p>
<li><strong>Google Search. </strong>I am reading an <a href="http://ittybiz.com/store/seo-school/">eBook on SEO</a> (Search Engine Optimization), because it came free with the purchase of my WordPress theme, and in the book it mentions that 90-98% of Google&#8217;s revenue comes from ad-words placed on Google&#8217;s site.  So why does that matter?  Well, Google stops making boat loads of cash if people stop using their search, and people will stop using their search if they stop finding what they are looking for.  So cool, now you get the Google business model, but what hell does this have to do with learning and being a good learning tool?  Simple, it allows you to easily and quickly find the information you are looking for.  My dog @winstonpotacho has recently been diagnosed with an elevated lymphocyte count, and the only reason I know what the implications are of a high lymphocyte count is that I was able to find the information by googling for it.  I now know just as much about leukemia in dogs as just about anyone.  In the time before Google I would have no idea what it meant to have an elevated lymphocyte count.  On the positive side of not knowing though, I probably would have slept more than 4 hours a night the last 2 weeks.</li>
</ol>
<p>
Like my list?  Don&#8217;t like my list?  Want to submit your own list?  You should let the Center for Learning and Performance technologies know <a href="http://www.c4lpt.co.uk/recommended/yours.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mozealous.com/top-10-tools-for-learning-ok-just-8/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Resize your embedded Screenr screencasts to fit nicely in a blog</title>
		<link>http://www.mozealous.com/resize-your-embedded-screenr-screencasts-to-fit-nicely-in-a-blog/</link>
		<comments>http://www.mozealous.com/resize-your-embedded-screenr-screencasts-to-fit-nicely-in-a-blog/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 14:53:45 +0000</pubDate>
		<dc:creator>Dave Mozealous</dc:creator>
				<category><![CDATA[Screenr]]></category>

		<guid isPermaLink="false">http://www.mozealous.com/?p=370</guid>
		<description><![CDATA[So you have made some screencasts and are ready to embed them in your blog, but the problem is your blog layout is so narrow it doesn&#8217;t fit nicely when you embed it in your blog. So what can you do to make your embedded screencasts smaller so they will fit nicely in your narrow [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So you have made some screencasts and are ready to embed them in your blog, but the problem is your blog layout is so narrow it doesn&#8217;t fit nicely when you embed it in your blog.</p>
<div class="wp-caption aligncenter" style="width: 479px">
	<img class="  " title="Screencast too big" src="http://www.mozealous.com/uploaded_images/toobig.png" alt="Website looks bad when your screencast is too big" width="479" height="319" />
	<p class="wp-caption-text">Website looks bad when your screencast is too big</p>
</div>
<p>So what can you do to make your embedded screencasts smaller so they will fit nicely in your narrow blog?  It&#8217;s easy, all you need to do is change the dimensions in the embed code.  Here is a screencast that shows you how:</p>
<p><center><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=4902" /><param name="allowFullScreen" value="true" /><param name="src" value="http://screenr.com/Content/assets/screenr_0817090731.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="345" src="http://screenr.com/Content/assets/screenr_0817090731.swf" allowfullscreen="true" flashvars="i=4902"></embed></object><br />
<a href="http://screenr.com/HCs">View this tutorial at Screenr</a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mozealous.com/resize-your-embedded-screenr-screencasts-to-fit-nicely-in-a-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quick tips for creating compelling screencasts on Screenr</title>
		<link>http://www.mozealous.com/quick-tips-for-create-compelling-screencasts-on-screenr/</link>
		<comments>http://www.mozealous.com/quick-tips-for-create-compelling-screencasts-on-screenr/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 19:19:14 +0000</pubDate>
		<dc:creator>Dave Mozealous</dc:creator>
				<category><![CDATA[Screenr]]></category>

		<guid isPermaLink="false">http://www.mozealous.com/?p=356</guid>
		<description><![CDATA[So you have checked out Screenr, and are ready to make some kick ass screencasts.  Here are some tips to make your screencasts ultra compelling and easy to view on an iPhone. Use a cool desktop background, and minimize your browser before you begin recording. The screencast thumbnails that you see on Screenr are always [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="aligncenter" title="Screenr Logo" src="http://www.mozealous.com/uploaded_images/screenr_logo_small.png" alt="" width="203" height="55" /></p>
<p>So you have checked out Screenr, and are ready to make some kick ass screencasts.  Here are some tips to make your screencasts ultra compelling and easy to view on an iPhone.</p>
<ol>
<li><strong>Use a cool desktop background, and minimize your browser before you begin recording. </strong>The screencast thumbnails that you see on Screenr are always much more compelling when the first frame of the movie is not a screenshot of the recording page.  Notice how on the Screenr home page all the <em>Popular Screencasts</em> have an awesome thumbnail?  That isn&#8217;t a coincidence.  Better thumbnails make it more compelling to watch the screencast.</li>
<p></p>
<li><strong>Record narration.</strong> Screencasts without any audio are boring.  I know everyone hates the sound of their own voice, but really, you don&#8217;t sound as bad as you think.</li>
<p></p>
<li><strong>Keep your recording area clean.</strong> Remove excess junk in your recording area.  See the two screenshots below.  Which would be easier to follow a demo on?<br />
<br />
<div class="wp-caption aligncenter" style="width: 368px">
	<a href="http://www.mozealous.com/uploaded_images/Cluttered.png"><img class="  " title="Cluttered" src="http://www.mozealous.com/uploaded_images/Cluttered.png" alt="Cluttered" width="368" height="277" /></a>
	<p class="wp-caption-text">Cluttered</p>
</div></p>
<p><div class="wp-caption aligncenter" style="width: 368px">
	<a href="http://www.mozealous.com/uploaded_images/Clean.png"><img class="   " title="Clean" src="http://www.mozealous.com/uploaded_images/Clean.png" alt="Clean" width="368" height="277" /></a>
	<p class="wp-caption-text">Clean</p>
</div></li>
<p></p>
<li><strong>Embed in a blog don&#8217;t link to it. </strong>Back when I worked at Macromedia we created demos of a lot of KB articles, and in the articles we linked to the demos.  The problem was, nobody clicked on them.  We eventually started embedding them in the post because people were more likely to view them if they didn&#8217;t have to go to another page.</li>
<p></p>
<li><strong>Use a 16:9 recording aspect ratio. </strong>From the help page&#8230;<em>The embedded player size uses the high-definition aspect ratio of 16:9. If you record with a 16:9 ratio, you won&#8217;t have black bars. So pick one of the preset HD sizes of 854&#215;480 or 1280&#215;720. You can also select one of these two presets and shift-drag the corner of the recording frame. This will lock the aspect ratio but allow you to select a resolution.<br />
</em></li>
<p></p>
<li><strong>Use large mouse icons if users will be viewing on an iPhone.</strong> If you record on large resolution screens, it can be difficult to see the mouse movement when viewing on an iPhone.  You can make the experience better for iPhone users if you use large mouse icons.  Note: Use the Windows Standard (extra large) pointers, other pointer sets may not be captured.  Turns out this only appears to work on Windows Vista/Windows 7.  So this doesn&#8217;t work on XP.  Sorry folks.</li>
<p>
</ol>
<p>That&#8217;s about it for now.  You should be ready to create some kick-ass ultra compelling screencasts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mozealous.com/quick-tips-for-create-compelling-screencasts-on-screenr/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Screenr is live</title>
		<link>http://www.mozealous.com/screenr-com-is-live/</link>
		<comments>http://www.mozealous.com/screenr-com-is-live/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 17:36:59 +0000</pubDate>
		<dc:creator>Dave Mozealous</dc:creator>
				<category><![CDATA[Screenr]]></category>

		<guid isPermaLink="false">http://www.mozealous.com/?p=354</guid>
		<description><![CDATA[As many of you probably already know, today we launched Screenr and we already recieved a glowing review.  Screenr is by far one of the coolest projects I have ever worked on,..it allows you to create screencasts right from your browser without installing anything.  I&#8217;ll be posting more about it over the coming days.  If [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>As many of you probably already know, today we launched Screenr and we already recieved a <a href="http://www.readwriteweb.com/archives/screenr_instant_screencasts_for_twitter.php">glowing review</a>.  Screenr is by far one of the coolest projects I have ever worked on,..it allows you to create screencasts right from your browser without installing anything.  I&#8217;ll be posting more about it over the coming days.  If you have checked it out, you can do so at <a href="http://screenr.com">http://screenr.com</a>.</p>
<p>Also, I created a demo that is featured on the home page which you can see below.  The architecture of screenr is really sick, all screencasts are deployed via the &#8220;cloud&#8221; which means they will play just as well in China as they will in the US.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=3871" /><param name="allowFullScreen" value="true" /><param name="src" value="http://screenr.com/Content/assets/screenr_0817090731.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="345" src="http://screenr.com/Content/assets/screenr_0817090731.swf" allowfullscreen="true" flashvars="i=3871"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mozealous.com/screenr-com-is-live/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

