<?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/" version="2.0">

<channel>
	<title>Tumult Inc. Blog</title>
	
	<link>http://blog.tumultco.com</link>
	<description />
	<lastBuildDate>Tue, 15 May 2012 06:57:26 +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/tumultco/feed" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="tumultco/feed" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Notes on Tumult Hype’s Cross-Browser Compatibility (or: How I Learned to Stop Worrying and Almost Not Hate IE6)</title>
		<link>http://blog.tumultco.com/2012/05/15/notes-on-tumult-hypes-cross-browser-compatibility-or-how-i-learned-to-stop-worrying-and-almost-not-hate-ie6/</link>
		<comments>http://blog.tumultco.com/2012/05/15/notes-on-tumult-hypes-cross-browser-compatibility-or-how-i-learned-to-stop-worrying-and-almost-not-hate-ie6/#comments</comments>
		<pubDate>Tue, 15 May 2012 01:34:55 +0000</pubDate>
		<dc:creator>Jonathan Deutsch</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.tumultco.com/?p=828</guid>
		<description><![CDATA[One of Tumult Hype&#8216;s top strengths is the ability to output content which can be displayed on a wide range of browsers across desktops, phones, and tablets. We put a lot of energy into making sure animations look great and run smoothly on Internet Explorer 6 to the latest Chrome 18. Apologies if we made [...]]]></description>
			<content:encoded><![CDATA[<p>One of <a href = "http://tumultco.com/hype/">Tumult Hype</a>&#8216;s top strengths is the ability to output content which can be displayed on a wide range of browsers across desktops, phones, and tablets.  We put a lot of energy into making sure animations look great and run smoothly on Internet Explorer 6 to the latest Chrome 18.  <i>Apologies if we made you shudder at the mention of IE6!</i>  We know creating a single site that works among so many browsers can be a difficult experience; crafting a tool which lets users create those sites also has many unique challenges and tough tradeoffs.</p>
<h3>Tricking IE6-8 into Being an HTML5 Browser</h3>
<p>Every browser has its own set of differences and quirks.  For the most part, variety in CSS property names, dimensions, or known bugs are easily worked around.  Many property applier functions in the HYPE.js runtime simply look like this:</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco"><span class="Apple-tab-span" style="white-space:pre">		</span><span style="color: #b933a1">var</span> boxShadowValue = <span style="color: #cf3125">&#8220;&#8221;</span> + xOffset + <span style="color: #cf3125">&#8220;px &#8220;</span> + yOffset + <span style="color: #cf3125">&#8220;px &#8220;</span> + boxShadowBlurRadius + <span style="color: #cf3125">&#8221; &#8220;</span> + boxShadowShadowColor;</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; min-height: 12.0px"><span class="Apple-tab-span" style="white-space:pre">				</span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; color: #008212"><span style="color: #000000"><span class="Apple-tab-span" style="white-space:pre">		</span></span>// webkit</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco"><span class="Apple-tab-span" style="white-space:pre">		</span>element.style[<span style="color: #cf3125">"-webkit-box-shadow"</span>] = boxShadowValue;</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; min-height: 12.0px"><span class="Apple-tab-span" style="white-space:pre">			</span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; color: #008212"><span style="color: #000000"><span class="Apple-tab-span" style="white-space:pre">		</span></span>// mozilla</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco"><span class="Apple-tab-span" style="white-space:pre">		</span>element.style[<span style="color: #cf3125">"MozBoxShadow"</span>] = boxShadowValue;</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; min-height: 12.0px"><span class="Apple-tab-span" style="white-space:pre">			</span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; color: #008212"><span style="color: #000000"><span class="Apple-tab-span" style="white-space:pre">		</span></span>// firefox 4.0+</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco"><span class="Apple-tab-span" style="white-space:pre">		</span>element.style[<span style="color: #cf3125">"boxShadow"</span>] = boxShadowValue;</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; min-height: 12.0px"><span class="Apple-tab-span" style="white-space:pre">			</span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; color: #008212"><span style="color: #000000"><span class="Apple-tab-span" style="white-space:pre">		</span></span>// ie/standard</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco"><span class="Apple-tab-span" style="white-space:pre">		</span>element.style[<span style="color: #cf3125">"box-shadow"</span>] = boxShadowValue;</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; min-height: 14.0px"></p>
<p>It isn&#8217;t always this easy.  Supporting older versions of Internet Explorer (6-8) has its own set of challenges and many saving graces.  Internet Explorer has a filter system that allows for a surprising number of effects, many of which have since become standard on modern browsers. For example, while the CSS3 &#8220;tranform:rotate(45deg)&#8221; syntax is not supported, IE&#8217;s filter system can allow the same through this CSS property:</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 9.0px Monaco; color: #cf3125"><span style="color: #000000"><span class="Apple-tab-span" style="white-space:pre">	</span>element.style[</span>"-ms-filter"<span style="color: #000000">] = </span>&#8220;progid:DXImageTransform.Microsoft.Matrix(SizingMethod=&#8217;auto expand&#8217;, M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)&#8221;<span style="color: #000000">;</span></p>
<p></p>
<p>It might look ugly and requires additional repositioning of the element to match CSS3-supporting browsers, but it does work.  For other CSS3 effects, such as background gradients, border radius, and box shadows (as seen above), Tumult Hype takes advantage of a project called <a href = "http://css3pie.com">CSS3PIE</a>.  If you&#8217;ve seen the &#8220;PIE.htc&#8221; file in its exported resources folder, that&#8217;s what it is for.</p>
<p>Video in older versions of Internet Explorer presents a more interesting problem.  The HTML5 &lt;video&gt; tag is not supported, and there are no simple workarounds like CSS3PIE.  We decided to fallback to the QuickTime plugin for displaying video.  It is widely installed (thanks to iTunes) and can playback .mp4/.m4v videos which are typically used for the &lt;video&gt; tag on Safari/IE9+.  Plugin loading can be delayed, so we had to use poll-based timing tricks to make sure attributes like autoplay, loop, and mute were being set properly.</p>
<p>The biggest downfall of Internet Explorer 6-8 is lack of support for transparent PNGs.  There&#8217;s adequate workarounds in IE 7 and 8, but unfortunately IE6 is out of luck (hacks exist, but do not work well enough).  Our recommendation is to use transparent gifs when this becomes a problem.</p>
<p>We&#8217;re mostly happy with standards support in IE9 and what we&#8217;ve seen of IE10.</p>
<p>Here&#8217;s a video we put together showing the <a href = "http://tumultco.com/hype/gallery/BuckleysDuckleys/BuckleysDuckleys.html">Buckley&#8217;s Duckleys Ad</a> across a variety of browsers:</p>
<p><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='390' src='http://www.youtube.com/embed/Ztl_-4FwP9I?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span></p>
<h3>Avoidance of CSS3 for Animation</h3>
<p>More interesting may be the decisions we made when approaching how to animate content across browsers.  Animations historically were made using a quickly repeating timer in JavaScript (a &#8220;heartbeat&#8221;) and then programmatically changing the desired properties.  Newer CSS3 features such as <a href = "http://www.w3.org/TR/css3-transitions/">Transitions</a> and <a href = "http://www.w3.org/TR/css3-animations/">Animations</a> were developed to make this process easier for site creators and more efficient by processing inside the browser.  With the goal of optimizing animation performance, Tumult Hype 1.0.x had a hybrid model of using CSS3 transitions and falling back to JavaScript hearbeat-based animations for older browsers or on unsupported transition properties.  We did not use CSS3 Animations because Safari (Mac/iOS) and Chrome were the only two browsers supporting it during initial development.  To make sure the timing functions (ease-in, ease-out, etc.) were identical, we even transcribed WebKit&#8217;s <a href = "http://svn.webkit.org/repository/webkit/trunk/Source/WebCore/platform/graphics/UnitBezier.h">UnitBezier.h</a> into JavaScript using identical control points.</p>
<p>Ultimately, we found the approach of using CSS3 Transitions had several drawbacks:</p>
<ul>
<li><b>Timing Issues</b> &#8211; There are no specific guarantees for when a CSS3 Transition will actually kick off, which is important given our dynamic animation system.  It is therefore not possible to synchronize different elements together.  This also applies for the same element; when we introduced the heartbeat-based bounce timing function in Tumult Hype 1.5, we found there were jumps in the animation playback between the CSS3 Transition and our bounce animation since the transition had not started at the time we expected.
<li><b>Lack of Control</b> &#8211; CSS3 transitions and animations give no affordance for fine-grained pausing or frame steps.  While Tumult Hype does not support these now, we&#8217;d like to give greater flexibility in the future.
<li><b>Syntax</b> &#8211; The code for an CSS3 transition is most typically made with a single string property on the element.  While not impossible to work with, it is unwieldy and we would prefer being able to have control from JavaScript directly.  It is unfortunate for tool creators such as ourselves that the direction of many new CSS properties is to use string lists instead.
</ul>
<p>We abandoned using CSS3 Transitions in Tumult Hype 1.5 for the reasons listed above.  It&#8217;s also a new technology, and not without a few bugs we hit.  From a performance standpoint, the impact was minimal and we also adopted the <a href = "http://www.w3.org/TR/animation-timing/#requestAnimationFrame">requestAnimationFrame</a> API so several of the browser optimizations could still be applied.  We also found it simplified our code, testing, and will allow for more features in the future since full control is in our hands.</p>
<h3>Other Considerations</h3>
<p>With the reignited rapid pace of browser development, we&#8217;ve also run into many bugs/regressions that have appeared in updates.  Some of these include not being able to see fullscreen videos in Safari, random blue page backgrounds in Chrome, and not being able to rotate and move elements at the same time in iOS and Mac Safari.  WebKit regressions can be especially nasty since they may also affect the Tumult Hype application.  Sometimes we can workaround them with alternate methods of doing the same manipulation &#8212; in the rotation bug&#8217;s case we used -webkit-transforms&#8217;s translateX/Y instead of setting the CSS style.left/top properties.  Other times we must simply wait it out until the browser vendor has a fix.</p>
<p>One of our goals for Tumult Hype is to always adopt the bleeding edge of new HTML and CSS features.  Because of this, we realize no matter how much effort we put into supporting older browsers, some capabilities (like 3D transformations on IE6) will simply be infeasible.  For these features, we developed a warning system in the Hype application itself.  In the Document Inspector (command-1) you can select which browsers you would like to support, and thus see warnings for when using an unsupported feature.  These appear both in the inspector and in a summary list at export time.  While it is no substitute for testing across different browsers, the system does act as an early way to detect possible compatibility issues.</p>
<p>Tumult Hype arose out of the need for a creative tool to create animations on the web without dredging through code, browser inconsistencies, and learning a complex program. We work hard to keep web animation simple so users don’t have to!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2012/05/15/notes-on-tumult-hypes-cross-browser-compatibility-or-how-i-learned-to-stop-worrying-and-almost-not-hate-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumult Hype 1.5.1 Released!</title>
		<link>http://blog.tumultco.com/2012/05/10/tumult-hype-1-5-1-released/</link>
		<comments>http://blog.tumultco.com/2012/05/10/tumult-hype-1-5-1-released/#comments</comments>
		<pubDate>Thu, 10 May 2012 19:45:12 +0000</pubDate>
		<dc:creator>Jonathan Deutsch</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.tumultco.com/?p=821</guid>
		<description><![CDATA[It&#8217;s our pleasure to announce the release of Tumult Hype version 1.5.1. This update features: Option-clicking the per-property add keyframe button will add keyframes to all properties on selected elements Copy/Paste scenes Bug fixes It is recommended that everybody upgrade. Please visit our detailed history page for more information.]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.tumultco.com/wp-content/uploads/2012/05/HypeApp-256.png" alt="Tumult Hype Application Icon" title="HypeApp-256" width="256" height="256" class="aligncenter size-full wp-image-822" /></p>
<p>It&#8217;s our pleasure to announce the release of Tumult Hype version 1.5.1. This update features:</p>
<ul>
<li>Option-clicking the per-property add keyframe button will add keyframes to all properties on selected elements
<li>Copy/Paste scenes
<li>Bug fixes
</ul>
<p>It is recommended that everybody upgrade.  Please visit our <a href = "http://tumultco.com/hype/documentation/history">detailed history</a> page for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2012/05/10/tumult-hype-1-5-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Artists and Tumult Hype: J Harley Gilmore’s Interactive Musical Minisite</title>
		<link>http://blog.tumultco.com/2012/05/08/j-harley-gilmores-interactive-musical-minisite/</link>
		<comments>http://blog.tumultco.com/2012/05/08/j-harley-gilmores-interactive-musical-minisite/#comments</comments>
		<pubDate>Tue, 08 May 2012 00:01:01 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[Featured Work]]></category>

		<guid isPermaLink="false">http://blog.tumultco.com/?p=786</guid>
		<description><![CDATA[It&#8217;s exciting to see photographers, architects, fine artists, and musicians (see below) create beautiful and interactive sites for themselves in Tumult Hype. Seeing so many creative people make use of Tumult Hype as an expressive tool makes us extremely happy. Today we&#8217;d like to spotlight a site Jimmy Gilmore created to showcase his drumming career. Jimmy writes that [...]]]></description>
			<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumultco.com/wp-content/uploads/2012/05/Screen-Shot-2012-05-07-at-5.15.46-PM.png" width="240" />
		</p><p>It&#8217;s exciting to see <a href="http://www.jeffhargrove.com">photographers</a>, <a href="http://claytonkimball.com/">architects</a>, <a href="http://www.adamcgordon.com/">fine artists</a>, and musicians (see below) create beautiful and interactive sites for themselves in Tumult Hype. Seeing so many creative people make use of Tumult Hype as an expressive tool makes us extremely happy.</p>
<p>Today we&#8217;d like to spotlight a site Jimmy Gilmore created to showcase his drumming career. <a href="http://hype.desk.com/customer/portal/questions/315905-new-musician-site-built-entirely-within-hype-">Jimmy writes</a> that he first created his interface in Photoshop, and then tweaked his animations within Hype:</p>
<blockquote><p>I&#8217;ve streamlined this project as much as possible by developing the overall look and concept with extensive work in Photoshop first, so that even without Hype&#8217;s brilliant animation and media ability my site would still look pretty interesting (at least, visually) on its own.</p></blockquote>
<p>His site sports a beautiful retro theatre façade at <a href="http://www.jharleygilmore.com/">jharleygilmore.com</a> (And you can peek into how he built it by <a href="http://cl.ly/2k3A333Y3X1S403p3n28">downloading his .hype file</a>!)</p>
<p><a href="http://www.jharleygilmore.com/"><img class="alignnone size-large wp-image-787" title="J Harley Gilmore " src="http://blog.tumultco.com/wp-content/uploads/2012/05/gilmore-600x283.png" alt="" width="600" height="283" /></a></p>
<p>More awesome Tumult Hype sites:</p>
<ul>
<li>The photographer Jeff Hargrove&#8217;s site at <a href="http://www.jeffhargrove.com">jeffhargrove.com</a></li>
<li>Clayton Kimball&#8217;s architecture portfolio at <a href="http://claytonkimball.com/">claytonkimball.com</a></li>
<li>Adam C Gordon&#8217;s Fine Art &amp; Illustration at <a href="http://www.adamcgordon.com/">adamcgordon.com</a></li>
<li>Another site by J Gilmore: A <a href="http://www.freddiegruber.com/">tribute to Freddie Gruber</a></li>
</ul>
<p>Looking for more? Check some of the other <a href="http://hype.desk.com/customer/portal/topics/102639-share-your-creations/questions">Tumult Hype creations shared on our forums</a> and <a href="http://j.mp/JscsP7">submit your own</a> or holler <a title="Tumult Hype on Twitter" href="http://twitter.com/hypeapp" target="_blank">@hypeapp</a> &#8211; #madewithhype.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2012/05/08/j-harley-gilmores-interactive-musical-minisite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Special Announcement: Tumult Acquires Adobe</title>
		<link>http://blog.tumultco.com/2012/04/01/special-announcement-tumult-acquires-adobe/</link>
		<comments>http://blog.tumultco.com/2012/04/01/special-announcement-tumult-acquires-adobe/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 18:10:45 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[announcement]]></category>
		<category><![CDATA[ohwowlookatthedate]]></category>

		<guid isPermaLink="false">http://tumultco.com/blog/?p=736</guid>
		<description />
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.tumultco.com/wp-content/uploads/2012/04/acquire-larger.png"><img class="aligncenter size-full wp-image-740" title="TumultAcquiresAdobe" src="http://blog.tumultco.com/wp-content/uploads/2012/04/TumultAcquiresAdobe.png" alt="" width="616" height="820" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2012/04/01/special-announcement-tumult-acquires-adobe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pixels vs. Bandwidth: Tumult Hype documents and the new iPad’s retina display</title>
		<link>http://blog.tumultco.com/2012/03/17/tumult-hype-documents-and-the-new-ipads-retina-display/</link>
		<comments>http://blog.tumultco.com/2012/03/17/tumult-hype-documents-and-the-new-ipads-retina-display/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 01:57:27 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://tumultco.com/blog/?p=664</guid>
		<description><![CDATA[The iPads arriving today across the world bring out amazing details in websites. Graphics and text are stunning on the 2048 x 1536 resolution screen, and this is great for the web and for Tumult Hype users. If you want to optimize your Tumult Hype animation for the new high resolution display we have a few [...]]]></description>
			<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumultco.com/wp-content/uploads/2012/03/Screen-Shot-2012-05-07-at-5.13.57-PM.png" width="240" />
		</p><p><a href="http://blog.tumultco.com/2012/03/17/tumult-hype-documents-and-the-new-ipads-retina-display/ipadretinablogimage/" rel="attachment wp-att-679"><img class="aligncenter size-large wp-image-679" title="iPadRetinaBlogImage" src="http://blog.tumultco.com/wp-content/uploads/2012/03/iPadRetinaBlogImage-600x175.jpg" alt="" width="600" height="175" /></a></p>
<p>The iPads arriving today across the world bring out amazing details in websites. Graphics and text are stunning on the 2048 x 1536 resolution screen, and this is great for the web and for Tumult Hype users. If you want to optimize your Tumult Hype animation for the new high resolution display we have a few words of advice:</p>
<h3>Consider the tradeoff: bandwidth vs. high resolution images</h3>
<p>In our <a href="http://blog.tumultco.com/wp-content/uploads/2012/03/retinatestdocument/retinatestdocument.html">tests</a>, standard 72 DPI JPEG images have noticeable artifacts if you look closely, but they don&#8217;t look <em>bad</em>. A double resolution image looks amazing.  As you may know, the iPad 3rd gen sports 264 PPI (Pixels Per Inch) display, up from 132 PPI in the iPad 1 &amp; 2. <a href="http://blog.tumultco.com/wp-content/uploads/2012/03/retinaexample.jpg">This screenshot</a> shows the difference between a standard and retina-ready image at full size. <a href="http://bjango.com/articles/ppiisatag/">Read this excellent article from Bjango</a> for more details on what exactly PPI is.</p>
<p>Most Tumult Hype documents created using standard image creation practices will look fine on the new iPad. If you want to provide the best visual experience, your visitor will need to download higher DPI (and higher file size) graphics. Tumult Hype documents preload images so this will increase the time before your visitors can view your site.</p>
<p>A retina-ready graphic contains <em>four times as many pixels</em>, and equates to ≈ 30% more time downloading. With multiple retina images, this means more bandwidth per page.</p>
<div id="attachment_674" class="wp-caption aligncenter" style="width: 534px"><a href="http://blog.tumultco.com/2012/03/17/tumult-hype-documents-and-the-new-ipads-retina-display/2xcompared/" rel="attachment wp-att-674"><img class="size-full wp-image-674  " title="2xcompared" src="http://blog.tumultco.com/wp-content/uploads/2012/03/2xcompared.png" alt="" width="524" height="75" /></a><p class="wp-caption-text">Retina optimized images take approximately 30% longer to load</p></div>
<p>That being said, a couple extra seconds may not make a huge difference, but a document with many images will negatively impact your visitors&#8217; experience. Re-export images like your logo and small UI elements used across your site.</p>
<p>Note: If you&#8217;re creating a Hype animation for use within an iOS app or as an iBooks Author Widget and the resources are stored on the device, you should use only retina-ready graphics.</p>
<h3>Use SVG graphics or Glyphs</h3>
<p>A <a href="http://blog.tumultco.com/wp-content/uploads/2012/03/retinatestdocument/retinatestdocument_Resources/insignia.svg">vector</a> will scale up infinitely, no matter the resolution of your target device. These graphics are also very small in file size, so they&#8217;re perfect for any display. You can drag a SVG graphic directly into Hype.</p>
<p>Text renders beautifully on the new iPad. A character that would normally have about 100 pixels devoted to it will now be shown far crisper. Take advantage of this: &#8220;→&#8221;. Instead of creating an arrow graphic, why not use the arrow character? Using HTML character entities from will shave bytes off your document, and ensure that your content scales up correctly. Here are a <a href="http://htmlhelp.com/reference/html40/entities/symbols.html">couple</a> <a href="http://www.cheatography.com/davechild/cheat-sheets/html-character-entities/">resources</a>.</p>
<h3>Create a high resolution alternate version of your document</h3>
<p>If you choose to create a high resolution version of your document, don&#8217;t force non-retina viewers to download all those extra pixels. Add this script to the head of your exported document to send retina devices to a page built for them:</p>
<pre>&lt;script type="text/javascript"&gt;
  if( window.devicePixelRatio &gt;= 2 ){
  window.location.replace("<span style="color: #0000ff;">http://site.com/retina.html</span>");}
 &lt;/script&gt;</pre>
<p>Add this script to the &lt;head&gt;&#8230;&lt;/head&gt; of your exported .html file. <a href="https://gist.github.com/2052208">Here is the full document code</a>.</p>
<h3>Automate the creation of your image assets</h3>
<p>If you have made high resolution images for your retina-targeted Hype document, you can drop your images into the free Mac app called <a href="http://itunes.apple.com/us/app/unretiner/id411277085?mt=12">Unretiner</a> to quickly generate images for the non-retina version. Here&#8217;s the workflow for that:</p>
<ol>
<li>Create your retina-sized image assets with this naming format: image@2x.jpg. (Prepend @2x to the extension).</li>
<li>Add them to your retina-Hype document and export your document to a folder.</li>
<li>Drop your resources folder into Unretiner, and export the reduced version to a folder.</li>
<li>Duplicate your Tumult Hype document and replace your retina-sizes graphics with your newly generated files. Select an image, go to the element inspector, and select the replacement file Unretiner created. (Note: Unretiner changes the file name of your image@2x.jpg image to the name image.jpg and reduces the size by 50%.)</li>
</ol>
<p>For more tips on creating a Tumult Hype document for mobile devices, <a href="http://hype.desk.com/customer/portal/articles/238081-tips-for-making-your-tumult-hype-production-mobile-friendly-ios-more-">read our guide</a>.</p>
<p>For more information on the new iPad&#8217;s display properties, read <a href="http://www.displaymate.com/iPad_ShootOut_1.htm">this article by Display Mate</a>.</p>
<p>Zebra image via <a href="http://www.flickr.com/photos/jonbarbero/6840434708/in/set-72157629230637210/" target="_blank">Jon Barbero</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2012/03/17/tumult-hype-documents-and-the-new-ipads-retina-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create quality infographics by exploring original Tumult Hype project files</title>
		<link>http://blog.tumultco.com/2012/03/02/create-quality-infographics-by-exploring-original-tumult-hype-project-files/</link>
		<comments>http://blog.tumultco.com/2012/03/02/create-quality-infographics-by-exploring-original-tumult-hype-project-files/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 00:16:11 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[Featured Work]]></category>

		<guid isPermaLink="false">http://tumultco.com/blog/?p=655</guid>
		<description><![CDATA[Every day we discover new projects, sites, and animations created with Tumult Hype on Twitter, in our Forums, and from your emails. Bart de Neve, a graphic journalist for the Belgian newspaper de Standaard, was kind enough to share with us a few of his recent infographics created in Hype: &#8220;How far can you drive with [...]]]></description>
			<content:encoded><![CDATA[<p>Every day we discover new projects, sites, and animations created with Tumult Hype on <a href="https://twitter.com/hypeapp">Twitter</a>, in our <a href="http://hype.desk.com/customer/portal/topics/102639-share-your-creations/questions">Forums</a>, and from your emails. <a href="http://www.bartdeneve.net/">Bart de Neve</a>, a graphic journalist for the Belgian newspaper <a href="http://standaard.be">de Standaard</a>, was kind enough to share with us a few of his recent infographics created in Hype:</p>
<p>&#8220;<a href="http://tumultco.com/misc/static/blog/standaard/Brandstofprijzen/Brandstofprijzen.html">How far can you drive with a budget of 10 euros</a> (from 1970 till now)&#8221;<br />
&#8220;<a href="http://tumultco.com/misc/static/blog/standaard/Zomertrends/Zomertrends.html">New fashion trends for summer</a>&#8221; (with links to <a href="https://hype.desk.com/www.standaard.be" target="_blank">www.standaard.be</a>)<br />
&#8220;<a href="http://tumultco.com/misc/static/blog/standaard/Energiepremies/Energiepremies.html">Financial support for energy efficient living in Flanders</a>&#8221;<br />
&#8220;<a href="http://tumultco.com/misc/static/blog/standaard/VS-verkiezingen/VS-verkiezingen.html">Republican primaries in the United States</a>&#8221;</p>
<p>Sometimes digging into project files is the best way to learn new tricks so we&#8217;re pleased to make Bart&#8217;s project files <a href="http://tumultco.com/misc/static/blog/standaard/all.zip">available for download</a>. To explore the infographics, click the images below, or visit the links immediately following.</p>
<p><a href="http://tumultco.com/misc/static/blog/standaard/Zomertrends/Zomertrends.html"><img class="alignnone size-medium wp-image-659" title="Zomertrends.hype" src="http://blog.tumultco.com/wp-content/uploads/2012/03/fa-285x177.png" alt="" width="285" height="177" /></a> <a href="http://tumultco.com/misc/static/blog/standaard/Energiepremies/Energiepremies.html"><img class="alignnone size-medium wp-image-658" title="house" src="http://blog.tumultco.com/wp-content/uploads/2012/03/house-285x176.png" alt="" width="285" height="176" /></a> <a href="http://tumultco.com/misc/static/blog/standaard/Brandstofprijzen/Brandstofprijzen.html"><img class="alignnone size-medium wp-image-657" title="car" src="http://blog.tumultco.com/wp-content/uploads/2012/03/car-285x176.png" alt="" width="285" height="176" /></a> <a href="http://tumultco.com/misc/static/blog/standaard/VS-verkiezingen/VS-verkiezingen.html"><img class="alignnone size-medium wp-image-656" title="amerikaanse" src="http://blog.tumultco.com/wp-content/uploads/2012/03/amerikaanse-285x177.png" alt="" width="285" height="177" /></a></p>
<p>Here&#8217;s a few more links to Bart&#8217;s work for Standaard (he&#8217;s a busy guy):</p>
<p><a href="http://www.standaard.be/extra/conflicten_2012" target="_blank">http://www.standaard.be/extra/conflicten_2012</a><br />
<a href="http://www.standaard.be/extra/gezichtstransplantatie" target="_blank">http://www.standaard.be/extra/gezichtstransplantatie</a><br />
<a href="http://www.standaard.be/extra/Laura_Dekker" target="_blank">http://www.standaard.be/extra/Laura_Dekker</a><br />
<a href="http://www.standaard.be/extra/elfstedentocht" target="_blank">http://www.standaard.be/extra/elfstedentocht</a><br />
<a href="http://www.standaard.be/extra/kredietratings" target="_blank">http://www.standaard.be/extra/kredietratings</a><br />
<a href="http://www.standaard.be/extra/brandstofprijzen" target="_blank">http://www.standaard.be/extra/brandstofprijzen</a><br />
<a href="http://www.standaard.be/extra/atoombunker" target="_blank">http://www.standaard.be/extra/atoombunker</a><br />
<a href="http://www.standaard.be/extra/begrotingsakkoord" target="_blank">http://www.standaard.be/extra/begrotingsakkoord</a></p>
<p>We&#8217;re also pleased to share  a few high quality infographics from Modesto Juan Carrasco Castro of <a href="http://www.elmundo.es/">El Mundo</a>, a major newspaper in Spain:</p>
<ul>
<li><a href="http://www.elmundo.es/elmundo/2011/graficos/pruebas_orbyt/invencible/invencible.html">Armada invencible</a></li>
<li><a href="http://www.elmundo.es/elmundo/2011/graficos/pruebas_orbyt/msl/msl.html">Sonda a Marte</a></li>
<li><a href="http://www.elmundo.es/elmundo/2011/graficos/pruebas_orbyt/meteosathype/meteosathype.html">Meteosat</a></li>
<li><a href="http://www.elmundo.es/elmundo/2011/graficos/pruebas_orbyt/Sub/Sub.html">Submarino Cameron</a></li>
<li><a href="http://www.elmundo.es/elmundo/2011/graficos/pruebas_orbyt/titanic1/titanic1.html">Titanic</a></li>
</ul>
<p><a href="http://www.elmundo.es/elmundo/2011/graficos/pruebas_orbyt/titanic1/titanic1.html"><img class="aligncenter size-large wp-image-756" title="titanic" src="http://blog.tumultco.com/wp-content/uploads/2012/03/titanic-600x383.png" alt="" width="600" height="383" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2012/03/02/create-quality-infographics-by-exploring-original-tumult-hype-project-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It’s a big day: Tumult Hype 1.5 is here!</title>
		<link>http://blog.tumultco.com/2012/02/23/tumult-hype-1-5-is-here/</link>
		<comments>http://blog.tumultco.com/2012/02/23/tumult-hype-1-5-is-here/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 17:11:18 +0000</pubDate>
		<dc:creator>tumultco</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://tumultco.com/blog/?p=641</guid>
		<description><![CDATA[We&#8217;re pleased to announce the release of Tumult Hype 1.5! With Adobe recently dropping support for Mobile Flash, Tumult Hype has become a critical tool to making animated content for smartphones and tablets. This version is a major update containing over 30 new features, including: Export as iBooks Author widget Redesigned animation interface separating element [...]]]></description>
			<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumultco.com/wp-content/uploads/2012/02/HypeApp-256.png" width="240" />
		</p><p align="center"><img src="http://static.tumultco.com/hype/media/HypeApp-256.png" alt="" /></p>
<p>We&#8217;re pleased to announce the release of <a href="http://tumultco.com/hype/">Tumult Hype</a> 1.5! With Adobe recently dropping support for Mobile Flash, Tumult Hype has become a critical tool to making animated content for smartphones and tablets. This version is a major update containing over 30 new features, including:</p>
<ul>
<li>Export as iBooks Author widget</li>
<li>Redesigned animation interface separating element and property keyframe editing</li>
<li>Element grouping</li>
<li>Scene zooming</li>
<li>Element locking and visibility toggles</li>
<li>Improved Lion support: versions, autosave, and scrolling</li>
<li>Rulers and guidelines</li>
<li>“Paste with Animations” for element copying</li>
<li>Bounce and instant animation timing functions</li>
<li>Insert “HTML Widget” for arbitrary code/script execution</li>
<li>Significantly smaller exported Javascript files (about 1/3 the size)</li>
<li>New app icon (animator&#8217;s lightbox)</li>
</ul>
<p>We&#8217;ve been working hard at this update and there should be something for everyone! Version 1.5 knocks out our top requested features, further elevating it as a mature professional design tool. For more details, please checkout our <a href="http://tumultco.com/hype/whats-new/1.5/">What&#8217;s New In Tumult Hype 1.5</a> page. We also produced a video showing off <a href="http://www.youtube.com/watch?v=8F9Vif8UwIc">25 Features in 10 Minutes</a>:</p>
<p><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='390' src='http://www.youtube.com/embed/8F9Vif8UwIc?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span></p>
<p>Tumult Hype 1.5 is available on the <a href="http://bit.ly/u4RZZD">Mac App Store</a> or the <a href="https://sites.fastspring.com/tumultco/instant/hype">Tumult Store</a> for $49.99 USD to new users or as a free upgrade to existing customers.</p>
<p>If you purchased from the Mac App Store, you can update by these steps:</p>
<ol>
<li>Open the App Store by going to the Apple menu and selecting App Store</li>
<li>Make sure you are signed in via the Store menu</li>
<li>Click the Updates tab at the top of the App Store window</li>
<li>If you have not already upgraded, it should be listed in the Updates section, and clicking the Update button will install the latest update for free.</li>
</ol>
<p>If you purchased from our Tumult Store, you can update by these steps:</p>
<ol>
<li>Open Tumult Hype</li>
<li>Choose the &#8216;Hype &gt; Check for Updates&#8230;&#8217; menu</li>
<li>Install and relaunch when prompted.</li>
</ol>
<p>We look forward to seeing what you create with Tumult Hype 1.5!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2012/02/23/tumult-hype-1-5-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy HTML5 Animations in iBooks using Tumult Hype and iBooks Author</title>
		<link>http://blog.tumultco.com/2012/01/20/easy-html5-animations-in-ibooks-using-tumult-hype-and-ibooks-author/</link>
		<comments>http://blog.tumultco.com/2012/01/20/easy-html5-animations-in-ibooks-using-tumult-hype-and-ibooks-author/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 04:04:35 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[ibooks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://tumultco.com/blog/?p=554</guid>
		<description><![CDATA[Update: Version 1.5 of Tumult Hype allows direct exporting to iBooks Author widgets. The below explanation is for version 1.0.5, but may be an interesting read if you&#8217;re interested in the inner workings of iBooks widgets&#8230; Yesterday Apple announced iBooks Author, an application that makes designing rich ebooks for the iPad as easy as creating [...]]]></description>
			<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumultco.com/wp-content/uploads/2012/01/Screen-Shot-2012-05-07-at-5.10.17-PM.png" width="240" />
		</p><p>Update: <a href="http://tumultco.com/hype">Version 1.5 of Tumult Hype</a> allows direct exporting to iBooks Author widgets. The below explanation is for version 1.0.5, but may be an interesting read if you&#8217;re interested in the inner workings of iBooks widgets&#8230;</p>
<p>Yesterday Apple <a href="http://www.apple.com/apple-events/education-january-2012/">announced</a> iBooks Author, an application that makes designing rich ebooks for the iPad as easy as creating a Keynote presentation. We&#8217;ve been asked many times already whether a Tumult Hype animation will work within iBooks 2. The answer is Yes.</p>
<p>As you may have heard, iBooks Author uses the Dashcode HTML widget format for embedding HTML, so any HTML within that format can be embedded in a book. It&#8217;s just a matter of placing your exported Hype animation within the dashcode format. You won&#8217;t be needing Dashcode, since we&#8217;ve prepared a info.plist file for this purpose. This is the general workflow:</p>
<p><strong>Hype Export → Create a Widget → iBooks Author → HTML5 Animations within iBooks!</strong></p>
<p><iframe src="http://www.youtube.com/embed/9_3-OWNb6Dg?rel=0" frameborder="0" width="630" height="434"></iframe></p>
<p>To get started, you&#8217;ll need a <a href="http://itunes.apple.com/app/hype/id436931759?mt=12">Tumult Hype</a> exported document and <a href="http://itunes.apple.com/app/ibooks-author/id490152466?mt=12">iBooks Author</a>.</p>
<p>Note: Your exported Hype document should be <strong>900 width × 640 height </strong>or smaller. This is the area of the widget space. Any size larger than this will be scaled down. Sizes smaller than this will produce a centered element in the widget preview space.</p>
<h2>Creating a .wdgt file from a Hype export Folder</h2>
<div>
<ol>
<li>First, export your Hype document and make sure you have both &#8216;Also Save .html&#8217; and &#8216;Create Enclosing Folder&#8217; options checked. If you name your file &#8216;index&#8217; then you will need to make fewer changes.</li>
<li>In the folder you&#8217;ve just created, add the file &#8216;Info.plist&#8217;, which you can get from our <a href="http://blog.tumultco.com/wp-content/uploads/2012/02/iBooksWidgetDemo2.zip">set of demo files here</a>. Open that file with a text editor, and match up the name of your .html file to the value under the &#8216;MainHTML&#8217; area. You&#8217;ll also need to match the width and height of your document. You can find your document size in the &#8216;Document Inspector.&#8217;</li>
<li>Set a preview image for your widget by adding an image named &#8216;Default.png&#8217; to this folder. A quick way to do this is to go to your first scene, take a screenshot by pressing command+shift+4, and then click and drag over your scene area. This generates a <span class="caps">PNG </span>on your desktop which you can rename and move into place.</li>
<li>Now that you have Info.plist in order, and a default image, your folder structure should look like the image below. The final step to create your widget is to rename the folder that contains those files to have .wdgt at the end.</li>
</ol>
<div><a href="http://blog.tumultco.com/wp-content/uploads/2012/01/files.png"><img class="size-full wp-image-579 alignleft" title="files" src="http://blog.tumultco.com/wp-content/uploads/2012/01/files.png" alt="" width="542" height="119" /></a></div>
</div>
<h2>Importing your Widget to iBooks Author</h2>
<p><a href="http://blog.tumultco.com/wp-content/uploads/2012/01/widget.png"><br />
</a><a href="http://blog.tumultco.com/wp-content/uploads/2012/01/widget2.png"><img class="alignright size-full wp-image-584" title="widget2" src="http://blog.tumultco.com/wp-content/uploads/2012/01/widget2.png" alt="" width="153" height="261" /></a>To add your Hype document to a book in iBooks Author, go to the page where you&#8217;d like to place it, then click &#8216;Widgets&#8217; &gt; <span class="caps">HTML.</span> It&#8217;s best to be in &#8216;Landscape&#8217; mode to do this. You&#8217;ll then see a new widget and a file button in the inspector where you can select the widget you just exported. You&#8217;ll notice that your &#8216;Default.png&#8217; image is the placeholder for your animation. To preview your widget, click on it, then click &#8216;Edit <span class="caps">HTML&#8217;. </span>To see it on your iPad, plug it into your computer, then click the &#8216;Preview&#8217; button.</p>
<p>You&#8217;ll notice that your animation will place once, so depending on the effect you&#8217;re going for, you may want a &#8216;replay animation&#8217; button for your users.</p>
<p>That&#8217;s it! You now have an <span class="caps">HTML5 </span>animation within a book ready for iTunes.</p>
<p>We&#8217;d love to see what you make. Please share with us @<a href="http://twitter.com/hypeapp">hypeapp</a> or in <a href="http://hype.assistly.com/customer/portal/articles/227088-tumult-hype-animations-big-small-share-them-here">our forums</a> if you&#8217;ve put together a Hype-enabled ebook.</p>
<p>Note: At this time it seems that .mp4 videos within iBooks widgets <a href="http://hype.assistly.com/customer/portal/articles/330137-known-issue-html-widgets-containing-mp4-video-files-are-not-allowed-in-ibooks-author">are not supported</a>, though <a href="http://hype.assistly.com/customer/portal/articles/330137-known-issue-html-widgets-containing-video-files-are-not-allowed-in-ibooks-author">there is a workaround</a> that involves referencing an .mp4 file via an iframe.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2012/01/20/easy-html5-animations-in-ibooks-using-tumult-hype-and-ibooks-author/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumult Hype won a Macworld Eddy!</title>
		<link>http://blog.tumultco.com/2011/12/06/tumult-hype-won-a-macworld-eddy/</link>
		<comments>http://blog.tumultco.com/2011/12/06/tumult-hype-won-a-macworld-eddy/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 20:24:07 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[award]]></category>

		<guid isPermaLink="false">http://tumultco.com/blog/?p=525</guid>
		<description><![CDATA[Macworld&#8217;s editor&#8217;s choice awards: &#8220;recognize our favorite products released during the past year (from November 1, 2010 to November 1, 2011). It’s a task we take very seriously; starting with a list of over 130 candidates, we spend weeks discussing each product, debate its merits, and whether it fulfills our standards of quality, utility, innovation, [...]]]></description>
			<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumultco.com/wp-content/uploads/2011/12/Screen-Shot-2012-05-07-at-5.11.03-PM.png" width="240" />
		</p><p>Macworld&#8217;s editor&#8217;s choice awards:</p>
<blockquote><p>&#8220;recognize our favorite products released during the past year (from November 1, 2010 to November 1, 2011). It’s a task we take very seriously; starting with a list of over 130 candidates, we spend weeks discussing each product, debate its merits, and whether it fulfills our standards of quality, utility, innovation, value, and excellence. The result of all this is the list presented here, the 23 best products of 2011.&#8221;</p></blockquote>
<p><a href="http://www.macworld.com/article/163951/2011/12/the_27th_annual_editors_choice_awards.html"><img class="size-full wp-image-537 alignleft" title="macworld-eddy2" src="http://blog.tumultco.com/wp-content/uploads/2011/12/macworld-eddy2.png" alt="" width="585" height="701" /></a></p>
<p style="text-align: left;">We&#8217;d like to thank our amazing and creative users, Macworld, and everyone at the academy. <a href="http://www.macworld.com/article/163951/2011/12/the_27th_annual_editors_choice_awards.html"> Check out the other winners on Macworld</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2011/12/06/tumult-hype-won-a-macworld-eddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The anatomy of an advanced HTML5 banner created in Tumult Hype</title>
		<link>http://blog.tumultco.com/2011/12/02/the-anatomy-of-an-advanced-html5-banner-created-in-tumult-hype/</link>
		<comments>http://blog.tumultco.com/2011/12/02/the-anatomy-of-an-advanced-html5-banner-created-in-tumult-hype/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 00:07:15 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[Featured Work]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[featured work]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tumultco.com/blog/?p=410</guid>
		<description><![CDATA[Banner animated by Sasha Zivanovic with Tumult Hype It&#8217;s an exciting time for web animation. The accelerating development and adoption of web technologies are turning Flash developers, motion graphics professionals, and even print designers to create rich animations and interactive content for the web. Animators and designers of all backgrounds are turning to device-agnostic animation [...]]]></description>
			<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumultco.com/wp-content/uploads/2011/12/Screen-Shot-2012-05-07-at-5.09.33-PM.png" width="240" />
		</p><div style="margin: auto; position: relative; width: 300px;"><iframe src="http://tumultco.com/misc/static/Buckleys_Duckleys/Buckleys_Duckleys.html" width="300" height="250"></iframe><em>Banner animated by Sasha Zivanovic with Tumult Hype</em></p>
</div>
<p>It&#8217;s an exciting time for web animation. The accelerating development and adoption of web technologies are turning Flash developers, motion graphics professionals, and even print designers to create rich animations and interactive content for the web. Animators and designers of all backgrounds are turning to device-agnostic animation tools like Tumult Hype for creating interactive web content.</p>
<p>In the hands of a skilled animator, Tumult Hype is a powerful tool for creating engaging and interactive content. Our hope is that Hype enables talented animators as they move towards cross-platform web technologies and away from technologies like Flash, which is <a href="http://blogs.adobe.com/flashplatform/2011/11/flash-to-focus-on-pc-browsing-and-mobile-apps-adobe-to-more-aggressively-contribute-to-html5.html">losing support from Adobe</a> on mobile devices.</p>
<p><a href="http://pixelpusher.ca"><img class="alignright size-full wp-image-461" title="" src="http://blog.tumultco.com/wp-content/uploads/2011/12/pixelpusher2.png" alt="Pixel Pusher" width="180" height="44" align="right" /></a> Today, we&#8217;re showcasing an animated ad banner created by Sasha Zivanovic, the animation director at <a href="http://pixelpusher.ca/">Pixelpusher</a>. Sasha produced the animation above <strong>in the first two hours after installing Hype</strong>. As Pixelpusher&#8217;s senior animator &amp; animation director, Sasha has 10 years of <a href="http://pixelpusher.ca/awards/">award winning</a> animation experience behind him. It was a treat to see his first production in Hype. It&#8217;s worth mentioning that this banner looks virtually identical on the major desktop and mobile browsers.</p>
<p>In this post, I&#8217;ll be going through Sasha&#8217;s Tumult Hype document to expose some of his tricks. Don&#8217;t worry, we have his permission <img src='http://blog.tumultco.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You can rewatch this animation by refreshing the page, or viewing it on its <a href="http://tumultco.com/misc/static/Buckleys_Duckleys/Buckleys_Duckleys.html">own page</a>.</p>
<h3>The Puff of Smoke</h3>
<p><img class="alignright size-full wp-image-483" title="Puff_NEW2" src="http://blog.tumultco.com/wp-content/uploads/2011/12/Puff_NEW2.png" alt="" width="145" height="147" /> The brief cloud of smoke was achieved by briefly enlarging a transparent PNG. The element is quickly made visible by adjusting the opacity from 0 &#8211; 100% opacity in the timeline, and rapidly increased in size. In the image below, you can make out minor movements in the X and Y axes as well, which give the puff a bit of a shake over the puff&#8217;s 4 frames, which comes out to about 1/10th of a second:</p>
<p><a href="http://blog.tumultco.com/wp-content/uploads/2011/12/puff2"><img class="aligncenter size-large wp-image-471" title="puff2" src="http://blog.tumultco.com/wp-content/uploads/2011/12/puff2-610x488.png" alt="" width="610" height="488" /></a></p>
<h3>Shooting the ducks</h3>
<p>As the gun fires, the ducks appear to fall at the exact same time, then quickly descend below the water. To accomplish this, Sasha created two duck images: one upright, and one laying down. After the gun is shot, the normal Duck&#8217;s opacity is reduced to zero, and the &#8216;Duck_laying&#8217; image appears in its place. You&#8217;ll notice a few other effects: the water and the pussy willows on stage left and right quiver after the shot is fired. The ducks also quickly move below the surface of the water, which is illustrated by the red animation path in the image below:</p>
<p><a href="http://blog.tumultco.com/wp-content/uploads/2011/12/duck-down.png"><img class="aligncenter size-large wp-image-449" title="duck-down" src="http://blog.tumultco.com/wp-content/uploads/2011/12/duck-down-610x438.png" alt="" width="610" height="438" /></a></p>
<h3>Animating the Lights</h3>
<p>Sasha added a nice touch: blinking lights along the top area to follow through with the mock-carnival game aesthetic. Sasha switched from an &#8216;off&#8217; version of the lights, and alternated two separate blinking versions:</p>
<p><img class="aligncenter size-full wp-image-468" title="" src="http://blog.tumultco.com/wp-content/uploads/2011/12/lights.png" alt="" width="589" height="173" /></p>
<p><img class="aligncenter size-large wp-image-469" title="lights" src="http://blog.tumultco.com/wp-content/uploads/2011/12/lights1-610x560.png" alt="" width="610" height="560" /></p>
<p><a href="http://tumultco.com/misc/static/Buckleys_Duckleys/Buckleys_Duckleys.hype.zip"><img class="aligncenter size-full wp-image-477" title="Screen Shot 2011-12-02 at 3.50.48 PM" src="http://blog.tumultco.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-02-at-3.50.48-PM.png" alt="" width="157" height="113" align="right" /></a> You can view this animation on its <a href="http://tumultco.com/misc/static/Buckleys_Duckleys/Buckleys_Duckleys.html">own page here</a> or download the <a href="http://tumultco.com/misc/static/Buckleys_Duckleys/Buckleys_Duckleys.hype.zip">original Tumult Hype document</a> to get your hands dirty. If you don&#8217;t have Hype, take our <a href="http://tumultco.com/hype">14 day trial</a> for a spin.</p>
<p>Want to show off your Tumult Hype document? Please <a href="http://hype.assistly.com/customer/portal/articles/227088-tumult-hype-animations-big-amp-small-share-them-here">get in touch</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.tumultco.com/2011/12/02/the-anatomy-of-an-advanced-html5-banner-created-in-tumult-hype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: blog.tumultco.com @ 2012-05-15 07:22:51 -->

