<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Zoom Creates Blogs</title>
	
	<link>http://www.nineteenfortyone.com</link>
	<description>We don't report the news, we Create it.</description>
	<lastBuildDate>Tue, 15 May 2012 19:19:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ZoomCreatesBlogs" /><feedburner:info uri="zoomcreatesblogs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Fun with Trigonometry</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/I0Gt98Gru1Y/</link>
		<comments>http://www.nineteenfortyone.com/2012/05/fun-with-trigonometry/#comments</comments>
		<pubDate>Tue, 15 May 2012 06:03:35 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Code Logic]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5480</guid>
		<description><![CDATA[To find the direction from one object to another, we need to use some trig functions. First we need to know the positions of those objects. Then we can find the change in X and Y. From there we can find the distance between them and the angle from one to the other. Here&#8217;s an [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; width: 400px; height: 300px;">
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="swfobj_0" width="400" height="300">
      <param name="movie" value="http://www.nineteenfortyone.com/wp-content/uploads/trigTest.swf" />
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="http://www.nineteenfortyone.com/wp-content/uploads/trigTest.swf" width="400" height="300">
      <!--<![endif]-->
        
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>
</div>
<p>To find the direction from one object to another, we need to use some trig functions. First we need to know the positions of those objects. Then we can find the change in X and Y. From there we can find the distance between them and the angle from one to the other.</p>
<p><img src="http://www.nineteenfortyone.com/wp-content/uploads/example1.png" alt="" title="example1" width="144" height="115" class="alignright size-full wp-image-5513" style="clear: both;" /></p>
<p>Here&#8217;s an example: Point A is located at coordinates (-10, -20), and Point B is located at (110, 70). To go from A to B is a change of (120, 90).</p>
<p>To find the angle from A to B, we use the arc-tangent function.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> distX = objectB.<span style="color: #006600;">x</span> - objectA.<span style="color: #006600;">x</span>;
<span style="color: #000000; font-weight: bold;">var</span> distY = objectB.<span style="color: #006600;">y</span> - objectA.<span style="color: #006600;">y</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> angle_radians = <span style="color: #0066CC;">Math</span>.<span style="color: #0066CC;">atan2</span><span style="color: #66cc66;">&#40;</span>distY, distX<span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> angle_degrees = radiansToDegrees<span style="color: #66cc66;">&#40;</span> angle_radians <span style="color: #66cc66;">&#41;</span>;</pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> radiansToDegrees<span style="color: #66cc66;">&#40;</span>r<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
    <span style="color: #b1b100;">return</span> r <span style="color: #66cc66;">*</span> <span style="color: #cc66cc;">180</span> <span style="color: #66cc66;">/</span> <span style="color: #0066CC;">Math</span>.<span style="color: #0066CC;">PI</span>;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>In Javascript and ActionScript, the Math function atan2 will take y and x, and return the direction in radians. That means the returned value will be between -&pi; and &pi;. to convert radians to degrees, we multiply by 180 and divide by &pi;. In this example, the angle is about 36.87&deg;.</p>
<p>To find the distance between them, we use the Pythagorean theorem: a<sup>2</sup> + b<sup>2</sup> = c<sup>2</sup>, or:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> dist = <span style="color: #0066CC;">Math</span>.<span style="color: #0066CC;">sqrt</span><span style="color: #66cc66;">&#40;</span>distX <span style="color: #66cc66;">*</span> distX + distY <span style="color: #66cc66;">*</span> distY<span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<p>In this example, the distance is 150.</p>
<p>Now you can set the rotation of the first object to look at the second object. OK, but how do you move it forward at a constant rate? If you update its x and y position by 120 and 90, respectively, it would reach the goal in one step. Not much of an animation. Instead, give it a speed and use trigonometry to figure out the change in the x and y positions.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> speed = <span style="color: #cc66cc;">6</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> deltaX = <span style="color: #0066CC;">Math</span>.<span style="color: #0066CC;">cos</span><span style="color: #66cc66;">&#40;</span>angle_radians<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> speed;
<span style="color: #000000; font-weight: bold;">var</span> deltaY = <span style="color: #0066CC;">Math</span>.<span style="color: #0066CC;">sin</span><span style="color: #66cc66;">&#40;</span>angle_radians<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> speed;
&nbsp;
objectA.<span style="color: #006600;">x</span> += deltaX;
objectA.<span style="color: #006600;">y</span> += deltaY;</pre></div></div>

<p>First we decide what speed to use. This is in pixels per frame. Each frame the object will move by 6 pixels in its forward direction. Then each frame, calculate the change in the x and y positions using the cosine and sine functions. This time we need to use radians, not degrees. These functions will return a value between -1 and 1. Now just multiply by the speed and apply it to the object.</p>
<p>To make the object turn smoothly, as in the example above, is a little more complicated, so I&#8217;ll save that for another time. But to give you a hint, it starts with a turning speed. You can see how it&#8217;s done in the attached FLA: <a href="/wp-content/uploads/trigTest.fla" title="trigTest.fla">trigTest.fla</a></p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/I0Gt98Gru1Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/05/fun-with-trigonometry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/05/fun-with-trigonometry/</feedburner:origLink></item>
		<item>
		<title>Beautiful, Dynamic Words with Aierbazzi, jQuery, and @font-face kit</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/bkK5sYMfmNQ/</link>
		<comments>http://www.nineteenfortyone.com/2012/05/beautiful-dynamic-words-with-aierbazzi-jquery-and-font-face-kit/#comments</comments>
		<pubDate>Thu, 10 May 2012 23:21:43 +0000</pubDate>
		<dc:creator>Justin Craft</dc:creator>
				<category><![CDATA[Code Logic]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[font-face]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5382</guid>
		<description><![CDATA[Roberto Cecchi created and posted his Aierbazzi (which means &#8220;weeds&#8221;) font to his web site back in 2008. He has been experimenting with fonts creating illustrations in a simple format, and he has posted creative use of this font for non-commercial applications. The letters in the font are placed one above the other, layering and [...]]]></description>
			<content:encoded><![CDATA[<p>Roberto Cecchi created and posted his <a title="Roberto Cecchi - Aierbazzi" href="http://www.robertocecchi.com/2008/10/29/aierbazzi/" target="_blank">Aierbazzi</a> (which means &#8220;weeds&#8221;) font to his web site back in 2008. He has been experimenting with fonts creating illustrations in a simple format, and he has posted creative use of this font for non-commercial applications. The letters in the font are placed one above the other, layering and building a new shape. It&#8217;s an interesting concept, and I wanted to re-share it here.</p>
<h4>Demo:<br />
Enter a word or phrase in to the box below to see how the illustration begins to emerge. On load, the illustration shows what &#8220;ZoomCreates&#8221; looks like. Numbers and symbols won&#8217;t work, so you must only use upper and lowercase A-Z characters. Also, no spaces allowed.</h4>
<div id="div-aierbazzi">
<input id="input-aierbazzi" onkeyup="jQuery('span.illustration').text(':'+this.value);" name="input-aierbazzi" size="30" type="text" value="ZoomCreates" /></div>
<div style="height: 222px; width: 222px; float: right; padding-top: 50px;"><span class="illustration" style="font-family: AierbazziRegular; font-size: 250px; color: #000;">:ZoomCreates</span></div>
<p><span id="more-5382"></span>Here at Zoom Creates, we continue to apply open font use to our web sites and applications, to better tie together web code and design typography. There are simply far too many applications to list, and we find designers and developers all over modern web sites finding new ways to explore these concepts.</p>
<p>To get started, download the @font-face kit from a source like <a title="Aierbazzi font-face" href="http://www.fontsquirrel.com/fonts/Aierbazzi" target="_blank">FontSquirrel</a>. Install the files on your web server in a location you can remember. Next, make sure you have a compatible version of <a title="jQuery" href="http://jquery.com" target="_blank">jQuery</a> installed. Any version put out in the last year should do nicely.</p>
<p><strong>Write the CSS</strong><br />
This will go inside your included CSS file. Note: this code is included with your downloaded @font-face kit.</p>
<div class="wp_syntax">
<div class="code">
<pre class="html" style="font-family: monospace;">@font-face {
  font-family: 'AierbazziRegular';
  src: url('/path-to-font-file/aierbazzi-webfont.eot');
  src: url('/path-to-font-file/aierbazzi-webfont.eot?#iefix') format('embedded-opentype'),
        url('/path-to-font-file/aierbazzi-webfont.woff') format('woff'),
        url('/path-to-font-file/aierbazzi-webfont.ttf') format('truetype'),
        url('/path-to-font-file/aierbazzi-webfont.svg#AierbazziRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}</pre>
</div>
</div>
<p><strong>Write the HTML and jQuery</strong><br />
This is your input element and the span which uses the AierbassiRegular font-family to write the typed characters.</p>
<div class="wp_syntax">
<div class="code">
<pre class="html" style="font-family: monospace;">&lt;input id="input-aierbazzi" onkeyup="$('span.illustration').text(this.value);"
name="input-aierbazzi" size="30" type="text" value="ZoomCreates"&gt;

&lt;span class="illustration" style="font-family: AierbazziRegular;
font-size: 250px; color: #000;"&gt;ZoomCreates&lt;/span&gt;</pre>
</div>
</div>
<p><strong>Additional mods to try:</strong></p>
<p>I&#8217;d like to modify this later to randomly choose a color for each character being typed. Also, playing with alpha opacity would be fun. Writing most of the jQuery in to a function would be another great way to handle these additional mods. Finally, writing some code to not allow the typing of invalid characters will help overall user experience. Give it a try and let us know what you come up with.</p>
<p>I just came across a very beautiful presentation of exactly what I&#8217;m describing at <a title="andysmith.co.uk" href="http://andysmith.co.uk/aierbazzi-html5/" target="_blank">andysmith.co.uk</a>. Check that out.</p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/bkK5sYMfmNQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/05/beautiful-dynamic-words-with-aierbazzi-jquery-and-font-face-kit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/05/beautiful-dynamic-words-with-aierbazzi-jquery-and-font-face-kit/</feedburner:origLink></item>
		<item>
		<title>Getting More from Mobile Sites</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/Eyg-tp4l4uM/</link>
		<comments>http://www.nineteenfortyone.com/2012/04/getting-more-from-mobile-sites/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 16:00:08 +0000</pubDate>
		<dc:creator>TweedleR</dc:creator>
				<category><![CDATA[Code Logic]]></category>
		<category><![CDATA[Design Love]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[interactive web]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[trend]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5354</guid>
		<description><![CDATA[Mobile sites are generally designed for the on-the-go user. With this user-type in mind, mobile sites can become overly paired down to just the basic details that a user might need, such as directions, a phone number, and social media links. Yes, a mobile user may most-likely be on-the-go, but I think the mobile audience [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-5368" style="margin-right: 10px" src="http://www.nineteenfortyone.com/wp-content/uploads/Mobile.png" alt="" width="178" height="354" />Mobile sites are generally designed for the on-the-go user. With this  user-type in mind, mobile sites can become overly paired  down to just the basic details that a user might need, such as  directions, a phone number, and social media links. Yes, a mobile user  may most-likely be on-the-go, but I think the mobile audience is  shifting. When I’m away from work, I use my phone as my primary method of  surfing the web, meaning I&#8217;m not just using it on-the-go. It&#8217;s the main way I access the internet and I&#8217;m now expecting more than the most basic  functionality from a mobile site.</p>
<p>Like  most people with smartphones or other mobile devices, you can find me  using mine everywhere. I’m on it while I’m at lunch, estate saleing on  the weekends and definitely on the couch while “watching” TV. Since I’m  using my phone as my second computer, I would hope that the mobile site  would have the same functionality of a laptop or desktop, but optimized for my mobile device. A mobile site has to  accommodate every user, if they are out and about, or just laying in bed  before they turn off the lights.</p>
<p>Because  of this common over simplification, I often find myself clicking on  “view full site” taking me away from the mobile version of the page.  I’ll get frustrated when information on a mobile site isn’t intuitive  or if a site is so pared down that I can’t find the information I’m looking  for. And once I move away from the site, the user experience  deteriorates. I have to pinch and zoom to read any text or sit waiting  for pages to load. The mobile site experience becomes a missed  opportunity. A better experience causes increased engagement,  more conversion and a good chance someone will walk away feeling  positive about your company or product.</p>
<p><strong>A mobile site should create a focused experience, not a limited experience. </strong>To do this:</p>
<p><strong>1. Information needs to be highly prioritized.</strong> Present  the content that will be most important to the user first. A mobile site should  focus on prime information pages upfront, but let you dive deeper if  needed. The content users interact with should be adjusted to suit the  size of their site— the same information from the full site may need to  be presented in a different order from the full site to make more sense  for the mobile user.</p>
<p><strong>2. Navigation should be simplified, minimizing the user options.</strong> The  navigation needs to be clear and intuitive to the user so they can find  exactly what they are looking for. If needed, pages should include sub navigation  so the user can still access any meaty details.</p>
<p><strong>3. Your site should be touch-friendly.</strong> Buttons  or links need to be large and easy to hit with a thumb or finger tip, based off of standard finger sizes (Apple suggests 44 pixels) Not only should it be click-able, but it should be in an area it can be easily clicked—buttons  shouldn’t be placed too closely together, or you risk taking the user to  the wrong link.</p>
<p><strong>4. Images should be limited.</strong> Reduce the number of images to limit loading times.</p>
<p>The  ultimate goal in having a mobile is to create a platform that is  adapted to a device&#8217;s size, but mainly to what the user needs. We need  to think about what mobile users want when visiting a mobile site, if it  is to get things quickly on-the-go, or if they are using it as their main computer. A mobile site should not be limiting, but focused to  give the user a valuable and positive experience that keeps them coming  back for more.</p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/Eyg-tp4l4uM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/04/getting-more-from-mobile-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/04/getting-more-from-mobile-sites/</feedburner:origLink></item>
		<item>
		<title>Tangerine Tango Dream</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/_3tN3kjCK7g/</link>
		<comments>http://www.nineteenfortyone.com/2012/03/tangerine-tango-dream/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 00:24:49 +0000</pubDate>
		<dc:creator>Tweedle C</dc:creator>
				<category><![CDATA[Design Love]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[Color Of The Year]]></category>
		<category><![CDATA[Coral]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Fashion]]></category>
		<category><![CDATA[makeup]]></category>
		<category><![CDATA[Orange]]></category>
		<category><![CDATA[Pantone]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[Sephora]]></category>
		<category><![CDATA[Tangerine Tango]]></category>
		<category><![CDATA[trends]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5344</guid>
		<description><![CDATA[Back in December of 2011 Pantone announced the 2012 Color of the Year — Tangerine Tango. It&#8217;s always fun to see how and where the color of the year shows up in design, fashion, interiors, product and packaging design, among other places. The general spirit of Tangerine Tango has been showing up in fashion in [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-5345" href="http://www.nineteenfortyone.com/2012/03/tangerine-tango-dream/sephora-pantone-universe-color-of-the-year-nail-enamel-set-40-value-nail-polish/"><img class="alignleft size-full wp-image-5345" style="margin-right: 9px;margin-bottom: 6px" src="http://www.nineteenfortyone.com/wp-content/uploads/sephora-pantone-universe-color-of-the-year-nail-enamel-set-40-value-nail-polish.jpg" alt="" width="250" height="195" /></a>Back in December of 2011 <a href="http://www.pantone.com/pages/fcr.aspx?pg=20910&amp;ca=4" target="_blank">Pantone announced the 2012 Color of the Year</a> — Tangerine Tango. It&#8217;s always fun to see how and where the color of the year shows up in design, fashion, interiors, product and packaging design, among other places. The general spirit of Tangerine Tango has been showing up in fashion in general, and makeup in particular, throughout the year. I&#8217;ve been seeing coral lipstick everywhere and loving it! But now, its really official, Sephora and Pantone have teamed up to create a <a href="http://www.sephora.com/browse/section.jhtml?categoryId=C25220" target="_blank">Color Of The Year makeup collection</a> inspired by Tangerine Tango. I definitely have an eye on the lip gloss set! I&#8217;m not wild about the packaging, but I&#8217;ll leave that commentary for another day&#8230; In the meantime, I&#8217;ve collected images showing just a few of the places I&#8217;ve seen this bright reddish orange trend showing up. Enjoy!</p>
<p><a rel="attachment wp-att-5346" href="http://www.nineteenfortyone.com/2012/03/tangerine-tango-dream/tangerinetango_coloroftheyear/"><img class="alignnone size-full wp-image-5346" src="http://www.nineteenfortyone.com/wp-content/uploads/TangerineTango_ColorOfTheYear.png" alt="" width="600" height="585" /></a></p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/_3tN3kjCK7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/03/tangerine-tango-dream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/03/tangerine-tango-dream/</feedburner:origLink></item>
		<item>
		<title>Healthy Dose of Inkspiration</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/7K5ks2nOr-Y/</link>
		<comments>http://www.nineteenfortyone.com/2012/03/healthy-dose-of-inkspiration/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 18:30:07 +0000</pubDate>
		<dc:creator>Tweedle C</dc:creator>
				<category><![CDATA[Zoom Creates News]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5329</guid>
		<description><![CDATA[Congratulations to Linda Cella, our Rethink Ink contest winner! Her idea &#8220;Your Are The Balm&#8221; inspired our design team to create a tattoo that evokes World War II era tattoos and visually depicts her play on a common phrase. Thank you to everyone who participated. We appreciate the healthy dose of inkspiration provided by all [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-5330" href="http://www.nineteenfortyone.com/2012/03/healthy-dose-of-inkspiration/winner_youarethebalm/"><img class="alignnone size-full wp-image-5330" src="http://www.nineteenfortyone.com/wp-content/uploads/Winner_YouAreTheBalm.jpg" alt="Winning Zoom Ink Tattoo: You Are The Balm" width="600" height="400" /></a></p>
<p>Congratulations to Linda Cella, our Rethink Ink contest winner! Her idea &#8220;Your Are The Balm&#8221; inspired our design team to create a tattoo that evokes World War II era tattoos and visually depicts her play on a common phrase.</p>
<p>Thank you to everyone who participated. We appreciate the healthy dose of inkspiration provided by all of your ideas fantastic ideas!</p>
<p><a rel="attachment wp-att-5331" href="http://www.nineteenfortyone.com/2012/03/healthy-dose-of-inkspiration/winner_freedownloads/"><img class="alignleft size-full wp-image-5331" style="margin-right: 9px; margin-bottom: 6px;" src="http://www.nineteenfortyone.com/wp-content/uploads/Winner_FreeDownloads.jpg" alt="" width="302" height="254" /></a>The good new is, everyone is a winner! Make sure you <a href="http://www.zoomcreates.com/ink" target="_blank">visit the site</a> to download the latest free desktop and smartphone wallpapers inspired by the winning tattoo.</p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/7K5ks2nOr-Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/03/healthy-dose-of-inkspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/03/healthy-dose-of-inkspiration/</feedburner:origLink></item>
		<item>
		<title>Last day to enter Rethink Ink</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/qjTMkcf11-g/</link>
		<comments>http://www.nineteenfortyone.com/2012/02/last-day-to-enter-rethink-ink/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 16:00:52 +0000</pubDate>
		<dc:creator>TweedleR</dc:creator>
				<category><![CDATA[Zoom Creates News]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[holidays]]></category>
		<category><![CDATA[Rethink Ink]]></category>
		<category><![CDATA[tattoo]]></category>
		<category><![CDATA[Temporary Tattoo]]></category>
		<category><![CDATA[zoom creates]]></category>
		<category><![CDATA[Zoom Ink]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5313</guid>
		<description><![CDATA[Today is your last chance to submit your idea for the ReThink Ink temporary tattoo contest, so get in there and enter your amazing ideas to our Zoom Creates Facebook page. We&#8217;ve had some great submissions, a few of our favorites so far are &#8220;Sexy Saturday&#8221;, &#8220;You are the balm&#8221; and &#8220;A rockin&#8217; Gretsch Guitar&#8221;. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-5318" src="http://www.nineteenfortyone.com/wp-content/uploads/Last_Chance_600x400.jpg" alt="" width="600" height="335" /></p>
<p>Today is your last chance to submit your idea for the ReThink Ink temporary tattoo contest, so get in there and enter your amazing ideas to our <a href="http://facebook.com/zoomcreates">Zoom Creates Facebook page.</a> We&#8217;ve had some great submissions, a few of our favorites so far are &#8220;Sexy Saturday&#8221;, &#8220;You are the balm&#8221; and &#8220;A rockin&#8217; Gretsch Guitar&#8221;. But there is still time to get your idea in the running. The tattoo idea that inspires us most will win big!</p>
<p><strong>The Grand Prize Winner will receive:</strong><br />
• Your tattoo idea designed by Zoom Creates<br />
• Your Design on a stylin&#8217; T-shirt<br />
• Temporary tattoos of your design idea for you and 10 of your friends<br />
• All six sets of Zoom Ink temporary tattoos</p>
<p><strong>Two Runners up will receive:</strong><br />
• All six sets of Zoom Ink temporary tattoos<br />
• A temporary tattoo of the winning design</p>
<p>Don&#8217;t forget to also stop by the <a href="http://www.zoomcreates.com/ink" target="_blank">Zoom Ink</a> web site and check out all the free downloads to help you spice up your desktop and mobile phone!</p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/qjTMkcf11-g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/02/last-day-to-enter-rethink-ink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/02/last-day-to-enter-rethink-ink/</feedburner:origLink></item>
		<item>
		<title>3 Days Left to Enter Rethink Ink Tattoo Contest</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/9zCkXatv4j4/</link>
		<comments>http://www.nineteenfortyone.com/2012/02/3-days-left-to-enter-rethink-ink-tattoo-contest/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 16:00:13 +0000</pubDate>
		<dc:creator>TweedleR</dc:creator>
				<category><![CDATA[Zoom Creates News]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[tattoo]]></category>
		<category><![CDATA[Zoom Ink]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5292</guid>
		<description><![CDATA[Now is your last chance to submit your idea for the Zoom Creates Rethink Ink contest. Get on over to our Facebook page and submit your best idea for your own tattoo design. Whether it&#8217;s &#8220;kitten popsicles,&#8221; a &#8220;frog in a giraffe suit&#8221; or a &#8220;polka-dotted poncho&#8221; we want to hear it! No need to [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignleft size-full wp-image-5300" src="http://www.nineteenfortyone.com/wp-content/uploads/Inkspire_600x4001.jpg" alt="" width="599" height="368" />Now is your last chance to submit your idea for the Zoom Creates <a href="http://www.facebook.com/zoomcreates" target="_blank">Rethink Ink contest</a>.</strong></p>
<p>Get on over to our Facebook page and submit your best idea for your own tattoo design. Whether it&#8217;s &#8220;kitten popsicles,&#8221; a &#8220;frog in a giraffe suit&#8221; or a &#8220;polka-dotted poncho&#8221; we want to hear it! No need to design, just write out your idea and hit submit! The concept that inspires us the most will have their idea designed by us AND will receive a set of their tats and a stylin’ T-shirt so they can show off their design to their jealous buds. Plus, the top three ideas will win all six sets of our Zoom Ink temporary tats.</p>
<p><strong>Don’t Miss out!</strong><br />
We want to make sure everyone‘s devices stay rockin’ too. Drop by the <a href="http://www.zoomcreates.com/ink" target="_blank">Zoom Ink site</a> to spice up your laptop or mobile phone with backgrounds inspired by the tats.</p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/9zCkXatv4j4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/02/3-days-left-to-enter-rethink-ink-tattoo-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/02/3-days-left-to-enter-rethink-ink-tattoo-contest/</feedburner:origLink></item>
		<item>
		<title>That’s Banana Cakes!</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/T6S6Sy4kYxY/</link>
		<comments>http://www.nineteenfortyone.com/2012/02/thats-banana-cakes/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 19:06:37 +0000</pubDate>
		<dc:creator>TweedleR</dc:creator>
				<category><![CDATA[Design Love]]></category>
		<category><![CDATA[Zoom Creates News]]></category>
		<category><![CDATA[Banana Cakes]]></category>
		<category><![CDATA[Robin Budd]]></category>
		<category><![CDATA[tattoo]]></category>
		<category><![CDATA[Zoom]]></category>
		<category><![CDATA[Zoom Ink]]></category>
		<category><![CDATA[Zoomers]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5286</guid>
		<description><![CDATA[Banana cakes is a phrase started by me after I heard it randomly one day from a person talking on the radio. I said to myself, &#8220;That is so flippin&#8217; fun, I&#8217;ve got to use that!&#8221; Since then, I&#8217;ve been throwing out &#8220;banana cakes&#8221; left and right to express my excitement, surprise or disbelief. With [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-5287" src="http://www.nineteenfortyone.com/wp-content/uploads/Banana_Cakes_600x400.jpg" alt="" width="600" height="400" /></p>
<p>Banana cakes is a phrase started by me after I heard it randomly one day from a person talking on the radio. I said to myself, &#8220;That is so flippin&#8217; fun, I&#8217;ve got to use that!&#8221; Since then, I&#8217;ve been throwing out &#8220;banana cakes&#8221; left and right to express my excitement, surprise or disbelief. With my constant use, it finally caught on around the office and now I&#8217;ve got everyone spreadin&#8217; the fun. Now that&#8217;s banana cakes!</p>
<p><strong>What is this “Tat-A-Day” all about?</strong><br />
The Zoom Creates team has created <a href="http://www.facebook.com/zoomcreates" target="_blank">six sets of temporary tattoos</a>,      and to share some of our ink-spiration, we’ll be posting a     “Tat-A-Day”.  The “Tat-A-Day” posts will last throughout the duration of     the <a href="http://www.facebook.com/zoomcreates" target="_blank">Rethink Ink contest</a>. So tune in and get ink-spired to create your own!</p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/T6S6Sy4kYxY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/02/thats-banana-cakes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/02/thats-banana-cakes/</feedburner:origLink></item>
		<item>
		<title>Are you hungry?</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/ihq61TolWHI/</link>
		<comments>http://www.nineteenfortyone.com/2012/02/are-you-hungry/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 20:17:53 +0000</pubDate>
		<dc:creator>TweedleR</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Zoom Creates News]]></category>
		<category><![CDATA[Bagels]]></category>
		<category><![CDATA[Hungry Hump Day]]></category>
		<category><![CDATA[tattoo]]></category>
		<category><![CDATA[Wednesday]]></category>
		<category><![CDATA[zoom creates]]></category>
		<category><![CDATA[Zoom Ink]]></category>
		<category><![CDATA[Zoomers]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5273</guid>
		<description><![CDATA[It&#8217;s Wednesday and officially Hungry Hump Day in the office. Hungry Hump Day has been a long-standing tradition at Zoom. We celebrate each middle of the week morning most commonly with bagels and smear as well as the occasional doughnut bonanza. Our hump day treat accompanies our mid-week, all staff morning meeting and makes it [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-5277" src="http://www.nineteenfortyone.com/wp-content/uploads/Hungry_Hump_Day_Tattoo_600x400.jpg" alt="" width="600" height="400" />It&#8217;s Wednesday and officially Hungry Hump Day in the office. Hungry Hump Day has been a long-standing tradition at Zoom. We celebrate each middle of the week morning most commonly with bagels and smear as well as the occasional doughnut bonanza. Our hump day treat accompanies our mid-week, all staff morning meeting and makes it a delightful way to start the day.</p>
<p><strong>What is this “Tat-A-Day” all about?</strong><br />
The Zoom Creates team has created <a href="http://www.zoomcreates.com/ink" target="_blank">six sets of temporary tattoos</a>,     and to share some of our ink-spiration, we’ll be posting a    “Tat-A-Day”.  The “Tat-A-Day” posts will last throughout the duration of    the <a href="http://www.facebook.com/zoomcreates" target="_blank">Rethink Ink contest</a>. So tune in and get ink-spired to create your own!</p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/ihq61TolWHI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/02/are-you-hungry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/02/are-you-hungry/</feedburner:origLink></item>
		<item>
		<title>Tweedle Beetle Paddle Battle</title>
		<link>http://feedproxy.google.com/~r/ZoomCreatesBlogs/~3/NiLLkZOpNN0/</link>
		<comments>http://www.nineteenfortyone.com/2012/02/tweedle-beetle-paddle-battle/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 18:44:26 +0000</pubDate>
		<dc:creator>TweedleR</dc:creator>
				<category><![CDATA[Design Love]]></category>
		<category><![CDATA[Zoom Creates News]]></category>
		<category><![CDATA[Corrina Reff]]></category>
		<category><![CDATA[Dr. Seuss]]></category>
		<category><![CDATA[Robin Budd]]></category>
		<category><![CDATA[Tweedle]]></category>
		<category><![CDATA[Zoom Ink]]></category>
		<category><![CDATA[Zoomers]]></category>

		<guid isPermaLink="false">http://www.nineteenfortyone.com/?p=5256</guid>
		<description><![CDATA[&#8220;What do you know about tweedle beetles? Well&#8230; When tweedle beetles fight, it&#8217;s called a tweedle beetle battle. And when they battle in a puddle, it&#8217;s a tweedle beetle puddle battle. AND when tweedle beetles battle with paddles in a puddle, they call it a tweedle beetle puddle paddle battle.&#8221; Thank you Dr. Seuss for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-5257" src="http://www.nineteenfortyone.com/wp-content/uploads/TBB_600x400.jpg" alt="" width="600" height="400" /></p>
<p><em>&#8220;What do you know about tweedle beetles?  Well&#8230;  When tweedle beetles fight,  it&#8217;s called a tweedle beetle battle.  And when they battle in a puddle,  it&#8217;s a tweedle beetle puddle battle.  AND when tweedle beetles battle with paddles in a puddle,  they call it a tweedle beetle puddle paddle battle.&#8221;</em></p>
<p>Thank you Dr. Seuss for creating <em>Fox in the Socks</em> for today&#8217;s Tat-A-Day inspiration.</p>
<p>Why tweedles, you ask? Well, Corrina and I have been deemed the official &#8220;Tweedles&#8221; in the office, lovingly named by Eva approximately 5 years ago because of our obvious similarities in our sense of style and design <em>and</em> that we have a tendency to carry on like two peas in a pod from time to time.</p>
<p><img class="alignleft size-full wp-image-5261" src="http://www.nineteenfortyone.com/wp-content/uploads/The_Tweedles.jpg" alt="" width="310" height="420" /></p>
<p>&#8220;The Tweedles&#8221; has become an exclusive group that many have tried to enter into. It&#8217;s not easy, but you can become an official &#8220;Tweedle&#8221; too, just let us know if you&#8217;d like to join and we&#8217;ll provide a lengthy application and put you on our wait list. FYI, Tim has been wait-listed for about 5 years now.</p>
<p><strong>What is that &#8220;Tat-A-Day&#8221; all about?</strong><br />
The Zoom Creates team has created <a href="http://www.zoomcreates.com/ink" target="_blank">six sets of temporary tattoos</a>,    and to share some of our ink-spiration, we’ll be posting a   “Tat-A-Day”.  The “Tat-A-Day” posts will last throughout the duration of   the <a href="http://www.facebook.com/zoomcreates" target="_blank">Rethink Ink contest</a>. So tune in and get ink-spired to create your own!</p>
<img src="http://feeds.feedburner.com/~r/ZoomCreatesBlogs/~4/NiLLkZOpNN0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.nineteenfortyone.com/2012/02/tweedle-beetle-paddle-battle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.nineteenfortyone.com/2012/02/tweedle-beetle-paddle-battle/</feedburner:origLink></item>
	</channel>
</rss>

