<?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>Becker Design Studio</title>
	<atom:link href="http://www.beckerstudio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beckerstudio.com</link>
	<description>Websites, Designs, Interactive Presentations, and Animations</description>
	<lastBuildDate>Wed, 16 May 2012 18:14:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Shortcodes in WordPress</title>
		<link>http://www.beckerstudio.com/blog/blog-knowledge-base/shortcodes-in-wordpress/</link>
		<comments>http://www.beckerstudio.com/blog/blog-knowledge-base/shortcodes-in-wordpress/#comments</comments>
		<pubDate>Sat, 12 May 2012 01:28:21 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/?p=958</guid>
		<description><![CDATA[I&#8217;ve been creating WordPress themes and website for several years now and I still love learning new things &#8211; like shortcodes. I knew there was a lot of power just waiting to be welded with shortcodes, but because Genesis is such a powerful and feature-rich framework, I haven&#8217;t needed to create any shortcodes of my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been creating WordPress themes and website for several years now and I still love learning new things &#8211; like shortcodes. I knew there was a lot of power just waiting to be welded with shortcodes, but because Genesis is such a powerful and feature-rich framework, I haven&#8217;t needed to create any shortcodes of my own. A recent job though provided me the opportunity to create my own shortcode. The client wanted to show the author&#8217;s avatar in post listings and details. This particular custom child theme created by someone else didn&#8217;t have the author&#8217;s avatar implemented in the templates. So I had to figure out how to show the author&#8217;s avatar. First I thought I&#8217;d be able to use Genesis&#8217; Simple Edits to add the code into the Post Info section. Simple Edits doesn&#8217;t accept code but it does accept shortcodes. So I had to find the code for getting the author&#8217;s avatar. I found the code here:</p>
<p><a href="http://wphacks.com/how-to-adding-the-post-authors-gravatar-to-their-individual-posts/" target="_blank">http://wphacks.com/how-to-adding-the-post-authors-gravatar-to-their-individual-posts/</a></p>
<p style="padding-left: 30px;">So, how would you go about setting up Gravatars to display with each individual post?   Over at ThemeShaper, Ian Stewart recently <a href="http://themeshaper.com/how-to-add-gravatars-for-the-post-author-in-wordpress/" target="_blank">shared an easy way to do this</a>.   You just need the following code:</p>
<pre class="brush: php; gutter: true">&lt;?php echo get_avatar( get_the_author_email(), &#039;80&#039; ); ?&gt;</pre>
<p style="padding-left: 30px;">When used, WordPress will match up the e-mail address associated with the post author to determine what Gravatar to use.   The 64 is the size (pixels) of the Gravatar.</p>
<p>Now armed with the code, I went to the WordPress&#8217; Codex pages to find how to create a shortcode: <a href="http://codex.wordpress.org/Shortcode_API" target="_blank">http://codex.wordpress.org/Shortcode_API</a></p>
<p>I went in the theme&#8217;s functions file (functions.php) and added the following code for creating my first shortcode to display an author&#8217;s avatar:</p>
<pre class="brush: php; gutter: true; first-line: 1">//[show_author_avatar]
function author_thumbnail( $atts ){
echo get_avatar( get_the_author_email(), &#039;40&#039; );
}
add_shortcode( &#039;show_author_avatar&#039;, &#039;author_thumbnail&#039; );</pre>
<p>Now I needed to use the shortcode. I went into the Genesis Simple Edits section and used this for the Post Info section:</p>
<pre class="brush: php; gutter: true">[show_author_avatar] by <span class="author vcard"><span class="fn"><a href="http://www.beckerstudio.com/author/cbecker/" class="fn n" title="cbecker" rel="author">cbecker</a></span></span> &lt;br /&gt;<span class="date published time" title="2012-05-11T21:28:21+00:00">May 11, 2012</span>  </pre>
<p>After a little styling magic, this is how the post listing turned out.</p>
<p><img class="alignnone size-full wp-image-961" title="Shortcodes 01" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/05/knowledge01.jpg" alt="" width="600" height="299" /></p>
<p>I can&#8217;t wait to do another one.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/blog/blog-knowledge-base/shortcodes-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Curious George sketch at local grade school</title>
		<link>http://www.beckerstudio.com/sketchbook/curious-george-sketch-at-local-grade-school/</link>
		<comments>http://www.beckerstudio.com/sketchbook/curious-george-sketch-at-local-grade-school/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 14:51:50 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Sketchbook]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/?p=909</guid>
		<description><![CDATA[Today I was able to share my illustration skills with the 1st grade at the Mayo Elementary school in Holden, MA, my daughter&#8217;s class. My children love to share that their dad drew Curious George. So I get to share my experiences and help them have new experience thanks to George. It was a large [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was able to share my illustration skills with the 1st grade at the Mayo Elementary school in Holden, MA, my daughter&#8217;s class. My children love to share that their dad drew Curious George. So I get to share my experiences and help them have new experience thanks to George. It was a large group of kids, bigger than I was expecting and I read one of the books I art directed, Curious George Makes Pancakes. I always like having the kids finish the phrase, &#8220;This is George. George was a good little monkey, but always&#8230;&#8221; and they say CURIOUS! It always works to bring out the smiles and get them involved.</p>
<p><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/curiousgeorgesketch01.jpg" rel="lightbox[909]"><img class="size-medium wp-image-910 alignright" title="curiousgeorgesketch01" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/curiousgeorgesketch01-224x300.jpg" alt="" width="224" height="300" /></a>After the story, I told them that illustrating is a wonderful thing to do, sometimes it&#8217;s hard work, but I&#8217;m blessed to do work that I enjoy.</p>
<p>I then told them that they were going to help me make an illustration. We talked about how we would like to see George and some little boy said that it would be cool to see him on a motorcycle. There were lots of other ideas, even George doing ballet. After about 20 ideas, I asked my daughter&#8217;s teacher which idea she liked best. She picked the motorcycle idea. I had never drawn George on a motorcycle; I had drawn him on a bike, but never a motorcycle. So I sketched out the idea real quick and one of the teachers suggested we add a sidecar with the Man in the Yellow hat. Great idea! So I blocked it all in. I then turned a page and traced a much cleaner version, all the while talking about what I was doing and what I was thinking. That&#8217;s pretty tough. Anyway I got done and I think they all liked it.</p>
<p>It was real fun visiting with these kids and I look forward to doing again someday. I fondly remember my times at Vipah Interactive, in Wellesley, MA and the time I spent working with those other artists and engineers making Curious George books, CD titles, and other products. They were good times!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/sketchbook/curious-george-sketch-at-local-grade-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graphic Design &#8211; Logos</title>
		<link>http://www.beckerstudio.com/portfolio/portfolio-design/graphic-design-logos/</link>
		<comments>http://www.beckerstudio.com/portfolio/portfolio-design/graphic-design-logos/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 20:39:44 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Design - Features]]></category>
		<category><![CDATA[Portfolio - Features]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/?p=870</guid>
		<description><![CDATA[Becker Studio has created many logos for clients in several markets. &#160;]]></description>
			<content:encoded><![CDATA[<p>Becker Studio has created many logos for clients in several markets.</p>
<div id="attachment_872" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_resure.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-872" title="logo_resure" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_resure-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">ReSure logo for Ocular Therapeutix</p></div>
<div id="attachment_880" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_stainlesspsace.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-880" title="logo_stainlesspsace" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_stainlesspsace-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">StainlessSpace logo for Integra Companies</p></div>
<div id="attachment_877" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_ccsdance.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-877" title="logo_ccsdance" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_ccsdance-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Logo for CCS Dance Academy</p></div>
<div id="attachment_876" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_brightideas.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-876" title="logo_brightideas" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_brightideas-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Logo for Bright Ideas Energy</p></div>
<div id="attachment_875" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_flowfil.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-875" title="logo_flowfil" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_flowfil-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">FlowFil logo for Confluent Surgical</p></div>
<div id="attachment_885" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_ocular.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-885" title="logo_ocular" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_ocular-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Logo for Ocular Therapeutix, Inc.</p></div>
<div id="attachment_881" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_augmenix.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-881" title="logo_augmenix" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_augmenix-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Logo for Augmenix</p></div>
<div id="attachment_883" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_rhythm.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-883" title="logo_rhythm" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_rhythm-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Logo for Rhythm Connections</p></div>
<div id="attachment_889" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_jhc.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-889" title="logo_jhc" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_jhc-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Logo for Jonathan Horn Communications</p></div>
<div id="attachment_878" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_marathon.jpg" rel="lightbox[870]"><img class="size-thumbnail wp-image-878" title="logo_marathon" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/logo_marathon-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Logo for a marathon for autism</p></div>
<div style="clear:both;">
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/portfolio/portfolio-design/graphic-design-logos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Medical Presentations for Vital Source &#8211; JBL</title>
		<link>http://www.beckerstudio.com/portfolio/portfolio-animation/medical-presentations-for-vital-source-jbl/</link>
		<comments>http://www.beckerstudio.com/portfolio/portfolio-animation/medical-presentations-for-vital-source-jbl/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 18:53:06 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[medical]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/?p=792</guid>
		<description><![CDATA[Vital Source contracted Becker Studio to create presentations and animations of illustrations from a textbook for using in online courses. The illustrations for these 16 animations were provided by the client and Becker Studio added animation and interactive elements to efficiently and attractively instruct the content. Facilitated Diffusion Presentation &#160; Transmission of Sound Presentation]]></description>
			<content:encoded><![CDATA[<p>Vital Source contracted Becker Studio to create presentations and animations of illustrations from a textbook for using in online courses. The illustrations for these 16 animations were provided by the client and Becker Studio added animation and interactive elements to efficiently and attractively instruct the content.</p>
<p><strong>Facilitated Diffusion Presentation<br />
</strong></p>
<div id="efe-swf-1" class="efe-flash"><img class="aligncenter size-full wp-image-794" title="flash11_jbl02" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/flash11_jbl02.jpg" alt="" width="200" height="200" /><br />
JBL Instructional Presentation &#8211; Flash required to view presentation</div>
<p>&nbsp;</p>
<p><strong>Transmission of Sound Presentation<br />
</strong></p>
<div id="efe-swf-2" class="efe-flash"><img class="aligncenter size-full wp-image-793" title="flash10_jbl_ear" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/flash10_jbl_ear.jpg" alt="" width="200" height="200" /><br />
JBL Instructional Presentation &#8211; Flash required to view presentation</div>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/portfolio/portfolio-animation/medical-presentations-for-vital-source-jbl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RDL Inc. Attract Video</title>
		<link>http://www.beckerstudio.com/portfolio/portfolio-animation/animation-video/rdl-inc-attract-video/</link>
		<comments>http://www.beckerstudio.com/portfolio/portfolio-animation/animation-video/rdl-inc-attract-video/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 01:23:45 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Portfolio - Features]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[After Effects]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[motion graphics]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/beckerstudio/?p=713</guid>
		<description><![CDATA[We created an attract-video for RDL to display at a conference. This video&#8217;s design was based upon existing print materials. Segments of the color strips moving from left to right in a random manner were created first so it could be reused as a transitional element. Segments were then created with their text elements and [...]]]></description>
			<content:encoded><![CDATA[<p>We created an attract-video for RDL to display at a conference. This video&#8217;s design was based upon existing print materials. Segments of the color strips moving from left to right in a random manner were created first so it could be reused as a transitional element. Segments were then created with their text elements and everything was put together. This video was intended to be viewed on a vertical monitor, so we created the video in Adobe After Effects in a vertical format, then we used the composition and rotated it 90 degrees for burning onto a Blue-Ray disc. The client later wanted to repurpose the video for showing in the traditional horizontal aspect which required some reformatting of the design. The client was very pleased with the results.<span id="more-713"></span></p>
<p><br /><img src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/video_rdl01_thumb.jpg" width="480" height="270" alt="media" /><br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/portfolio/portfolio-animation/animation-video/rdl-inc-attract-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Presentations for AllPure, Inc.</title>
		<link>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-presentations-for-allpure-inc/</link>
		<comments>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-presentations-for-allpure-inc/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 01:09:38 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[3D animation]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[motion graphics]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/beckerstudio/?p=698</guid>
		<description><![CDATA[Becker Studio was commissioned by AllPure, Inc. to create two Flash presentations for use on their website to illustrate the use and specifications of their product. Becker Studio provided 3D modeling 3D animation, Flash user interface design, and engineering to create these interactive pieces. The client was pleased with the presentations&#8217; professional and clean representation. [...]]]></description>
			<content:encoded><![CDATA[<p>Becker Studio was commissioned by AllPure, Inc. to create two Flash presentations for use on their website to illustrate the use and specifications of their product. Becker Studio provided 3D modeling 3D animation, Flash user interface design, and engineering to create these interactive pieces. The client was pleased with the presentations&#8217; professional and clean representation.<span id="more-698"></span></p>
<p>&nbsp;</p>
<p><strong>AllPure Product Presentation</strong></p>
<div id="efe-swf-3" class="efe-flash"><img class="aligncenter size-medium wp-image-703" title="presentation_flash_allpure02" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/presentation_flash_allpure02-300x231.jpg" alt="" width="300" height="231" /><br />
AllPure Product Presentation &#8211; Flash required to view presentation</div>
<p>&nbsp;</p>
<p><strong>AllPure Product Presentation</strong></p>
<div id="efe-swf-4" class="efe-flash"><img class="aligncenter size-medium wp-image-702" title="presentation_flash_allpure03" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/presentation_flash_allpure03-300x231.jpg" alt="" width="300" height="231" /><br />
AllPure Product Presentation &#8211; Flash required to view presentation</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-presentations-for-allpure-inc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash medical instructional presentation &#8211; ReSure</title>
		<link>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-resure/</link>
		<comments>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-resure/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 20:48:10 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[digital illustration]]></category>
		<category><![CDATA[motion graphics]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/beckerstudio/?p=650</guid>
		<description><![CDATA[This presentation was created for Ocular Therapeutix. It features custom Flash illustrations and animations created by Becker Studio. Other Flash presentations for Ocular Therapeutix]]></description>
			<content:encoded><![CDATA[<p>This presentation was created for Ocular Therapeutix. It features custom Flash illustrations and animations created by Becker Studio.<br />
<span id="more-650"></span><br />
<div id="efe-swf-5" class="efe-flash"><img class="aligncenter size-medium wp-image-652" title="presentation_flash_ocular03" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/presentation_flash_ocular03-300x224.jpg" alt="" width="300" height="224" /><br />
Punctum Plug Application Presentation &#8211; Flash required to view presentation</div></p>
<p><a href="http://www.beckerstudio.com/beckerstudio/portfolio/portfolio-interactivity/flash-presentations-for-ocular-therapeutix/">Other Flash presentations for Ocular Therapeutix</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-resure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash medical instructional presentation &#8211; Punctum Plug</title>
		<link>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-punctum-plug/</link>
		<comments>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-punctum-plug/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 20:37:37 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Portfolio - Features]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[digital illustration]]></category>
		<category><![CDATA[medical]]></category>
		<category><![CDATA[motion graphics]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/beckerstudio/?p=642</guid>
		<description><![CDATA[This presentation was created for Ocular Therapeutix. It features custom Flash illustrations and animations created by Becker Studio. Other Flash presentations for Ocular Therapeutix]]></description>
			<content:encoded><![CDATA[<p>This presentation was created for Ocular Therapeutix. It features custom Flash illustrations and animations created by Becker Studio.<br />
<span id="more-642"></span><br />
<div id="efe-swf-6" class="efe-flash"><img class="size-medium wp-image-644 aligncenter" title="presentation_flash_ocular02" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/02/presentation_flash_ocular02-300x224.jpg" alt="" width="300" height="224" /></p>
<p>Punctum Plug Application Presentation &#8211; Flash required to view presentation</div></p>
<p><a href="http://www.beckerstudio.com/beckerstudio/portfolio/portfolio-interactivity/flash-presentations-for-ocular-therapeutix/">Other Flash presentations for Ocular Therapeutix</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-punctum-plug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash medical instructional presentation &#8211; Force Gauge Application</title>
		<link>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-force-gauge-application/</link>
		<comments>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-force-gauge-application/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 03:24:11 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Interactivity]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[digital illustration]]></category>
		<category><![CDATA[medical]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/beckerstudio/?p=593</guid>
		<description><![CDATA[This animation was created for Ocular Therapeutix. It features a custom illustration created by Becker Studio, integrated into a Flash animation. Other Flash presentations for Ocular Therapeutix]]></description>
			<content:encoded><![CDATA[<p>This animation was created for Ocular Therapeutix. It features a custom illustration created by Becker Studio, integrated into a Flash animation.<span id="more-593"></span><br />
<div id="efe-swf-7" class="efe-flash"><img class="size-medium wp-image-620 aligncenter " title="Medical Illustration 04" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust04-300x219.jpg" alt="" width="300" height="219" /><br />
Force Gauge Application Animation &#8211; Flash required to view presentation</div></p>
<p><a href="http://www.beckerstudio.com/beckerstudio/portfolio/portfolio-interactivity/flash-presentations-for-ocular-therapeutix/">Other Flash presentations for Ocular Therapeutix</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/portfolio/portfolio-animation/flash-medical-instructional-presentation-force-gauge-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Medical Illustrations</title>
		<link>http://www.beckerstudio.com/portfolio/portfolio-illustration/medical-illustrations/</link>
		<comments>http://www.beckerstudio.com/portfolio/portfolio-illustration/medical-illustrations/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 01:52:49 +0000</pubDate>
		<dc:creator>cbecker</dc:creator>
				<category><![CDATA[Home Features]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio - Features]]></category>
		<category><![CDATA[digital illustration]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[medical]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.beckerstudio.com/beckerstudio/?p=551</guid>
		<description><![CDATA[Several of our clients have contracted Becker Studio to create medical illustrations for digital and print use. Illustrations created for Instructions for Use materials]]></description>
			<content:encoded><![CDATA[<p>Several of our clients have contracted Becker Studio to create medical illustrations for digital and print use.<span id="more-551"></span></p>
<div id="attachment_554" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust01.jpg" rel="lightbox[551]"><img class="size-thumbnail wp-image-554" title="Ocular Therapeutix - med 01" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust01-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Illustrations for Ocular Therapeutix showing the use of their product.</p></div>
<div id="attachment_553" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust02.jpg" rel="lightbox[551]"><img class="size-thumbnail wp-image-553" title="Ocular Therapeutix - med 02" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust02-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Illustration created for Ocular Therapeutix showing how to ensure adequate use of their product.</p></div>
<div id="attachment_563" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust03.jpg" rel="lightbox[551]"><img class="size-thumbnail wp-image-563" title="Ocular Therapeutix - med 03" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust03-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Illustration created for Ocular Therapeutix showing how its product is used.</p></div>
<div id="attachment_620" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust04.jpg" rel="lightbox[551]"><img class="size-thumbnail wp-image-620" title="Medical Illustration 04" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/ocutx_med_illust04-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Illustration for a product instructional Flash presentation</p></div>
<div style="clear: both; height: 40px;"></div>
<p><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust01.jpg" rel="lightbox[551]"><img class="alignleft size-thumbnail wp-image-561 portfolio-thumbnails-150" title="Confluent - med 02" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust01-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust02.jpg" rel="lightbox[551]"><img class="alignleft size-thumbnail wp-image-561 portfolio-thumbnails-150" title="Confluent - med 02" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust02-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust03.jpg" rel="lightbox[551]"><img class="alignleft size-thumbnail wp-image-560 portfolio-thumbnails-150" title="Confluent - med 03" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust03-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust05.jpg" rel="lightbox[551]"><img class="alignleft size-thumbnail wp-image-558 portfolio-thumbnails-150" title="Confluent - med 05" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust05-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust06.jpg" rel="lightbox[551]"><img class="alignleft size-thumbnail wp-image-557 portfolio-thumbnails-150" title="Confluent - med 06" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust06-150x150.jpg" alt="" width="150" height="150" /></a><br />
<span style="font-size: small;">Illustrations created for Instructions for Use materials</span></p>
<div style="clear: both; height: 40px;"></div>
<div id="attachment_559" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust04.jpg" rel="lightbox[551]"><img class="size-thumbnail wp-image-559" title="Confluent - med 04" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/confluent_med_illust04-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Illustration depicting a spinal procedure.</p></div>
<div id="attachment_556" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/augmenix_med_illust01.jpg" rel="lightbox[551]"><img class="size-thumbnail wp-image-556" title="Augmenix - med 01" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/augmenix_med_illust01-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Illustration showing a procedure with the prostate.</p></div>
<div id="attachment_555" class="wp-caption alignleft" style="width: 160px"><a href="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/rdl_atrophy01.jpg" rel="lightbox[551]"><img class="size-thumbnail wp-image-555" title="RDL med 01" src="http://www.beckerstudio.com/beckerstudio/wp-content/uploads/2012/01/rdl_atrophy01-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Illustration depicting atrophy and myositis.</p></div>
<div style="clear: both; height: 40px;"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.beckerstudio.com/portfolio/portfolio-illustration/medical-illustrations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

