<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tumult Company Blog &#187; General</title>
	<atom:link href="http://blog.tumult.com/category/general/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tumult.com</link>
	<description></description>
	<lastBuildDate>Mon, 08 Apr 2013 23:51:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Myth busting the HTML5 performance of transform:translate vs. top/left</title>
		<link>http://blog.tumult.com/2013/02/28/transform-translate-vs-top-left/</link>
		<comments>http://blog.tumult.com/2013/02/28/transform-translate-vs-top-left/#comments</comments>
		<pubDate>Thu, 28 Feb 2013 23:09:58 +0000</pubDate>
		<dc:creator>Jonathan Deutsch</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.tumult.com/?p=1279</guid>
		<description><![CDATA[<p>I recently came across Christian Heilmann&#8217;s Five things you can do to make HTML5 perform better article, where point number three is to use CSS Transforms instead of position and top/left when moving elements across a page. It is a practice increasingly championed, such as in the noted Paul Irish video, Why Moving Elements With [...]</p><p>The post <a href="http://blog.tumult.com/2013/02/28/transform-translate-vs-top-left/">Myth busting the HTML5 performance of transform:translate vs. top/left</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I recently came across Christian Heilmann&#8217;s <a href = "http://christianheilmann.com/2013/01/25/five-things-you-can-do-to-make-html5-perform-better/">Five things you can do to make HTML5 perform better</a> article, where point number three is to use CSS Transforms instead of position and top/left when moving elements across a page.  It is a practice increasingly championed, such as in the noted Paul Irish video, <a href = "http://paulirish.com/2012/why-moving-elements-with-translate-is-better-than-posabs-topleft/">Why Moving Elements With Translate() Is Better Than Pos:abs Top/left</a>. The central point is when animating you&#8217;ll achieve higher frame rates using this transform code:</p>
<pre>element.style["-webkit-transform"] = "translate(xPos, yPos)";</pre>
<p>than this code:</p>
<pre>element.style.position = "absolute";
element.style.top = xPos;
element.style.left = yPos;</pre>
<p>Both will change the displayed element position on a web page, though if performance is no object you may choose to semantically differentiate the techniques for different purposes. Translate also allows non-integral values which can result in smoother animations when moving an element slowly over a long period of time.</p>
<p>I still found the advice of always preferring to use transforms surprising; a while ago in developing <a href = "http://tumult.com/hype/">Tumult Hype</a> I had run some tests on the two different techniques and recalled transform not necessarily being faster.  But, browsers have changed a lot since then. I couldn&#8217;t find any readily available benchmarks online, so I decided to make a new test and measure to see whether the advice of always using transform was valid.</p>
<h3>The Benchmark Test</h3>
<p>For my test, I wanted to compare various aspects involved in changing positions and compositing a page.  These are:</p>
<ol>
<li>transform:translate vs. position:absolute and top/left
<li>CSS Transitions vs. custom JavaScript heartbeat animations using requestAnimationFrame()
<li>Graphics acceleration on vs. off (forced via rotateY hack)
<li>Opaque elements vs. partially transparent elements
</ol>
<p>The test itself is relatively simple, it generates <i>n</i> boxes and animates them from point A to point B.  It runs the 16 combinations serially. I&#8217;ve posted the test online so others can run it and pick it apart if need be:</p>
<p><a href = "https://github.com/tumult/PerformanceBenchmarks/blob/master/MovingBoxes.html">https://github.com/tumult/PerformanceBenchmarks/blob/master/MovingBoxes.html</a></p>
<p>My desktop testing system is a 27&#8243; iMac (Mid 2011) with a 3.4 Ghz Intel Core i7 processor and AMD Radeon HD 6970M 1024 MB Graphics card. I also tested on an iPad Mini and iPhone 5.  FPS on the desktop were taken using Quartz Debug and Instruments for iOS.  I ran the test several times to make sure the results were repeatable.  The FPS itself has some degree of eye-balling; the main point was to relatively compare various techniques.</p>
<h3>Results</h3>
<p>All numbers are in frames per second.  Because Firefox&#8217;s performance was too slow to draw conclusions, I re-ran using only 500 boxes to help bring out results from the tests.  I also used 500 boxes for testing Mobile Safari for the same reason.  For fun, I ran IE 10 in VMWare to see how it performed (surprisingly well), but don&#8217;t count the results as valid since it isn&#8217;t a real world setup.</p>
<p><a href = "http://blog.tumult.com/wp-content/uploads/2013/02/PerformanceTestingResults.gif"><img src = "http://blog.tumult.com/wp-content/uploads/2013/02/PerformanceTestingResults.gif" width = "600px" alt="Performance Testing Results Chart"></a></p>
<p>Download as: <a href = "http://blog.tumult.com/wp-content/uploads/2013/02/PerformanceTestingResults.gif">Image</a> | <a href = "http://blog.tumult.com/wp-content/uploads/2013/02/PerformanceTestingResults.numbers">.numbers document</a></p>
<h3>Primary Conclusions</h3>
<ul>
<li> Setting the top/left properties will be faster than using a transform if you are not using transitions
<li> If the target is WebKit, the fastest frame rates will come from using transitions with the translate property, and forcing graphics acceleration for Safari/Mobile Safari (Chrome automatically does this)
<li> If compositing non-opaque items, forcing graphics acceleration in WebKit will have a huge performance boost in Safari/Mobile Safari and a modest boost in Chrome
<li> If compositing only opaque items, forcing graphics acceleration in WebKit will have a negative impact on performance
</ul>
<h3>Other Notes</h3>
<ul>
<li> The rotateY(0deg) method to force graphics acceleration has no significant effect on Firefox
<li> Safari is ~1.5x faster than Chrome across the tests
<li> Firefox is ridiculously slow at this test, even compared to IE 10 running through VMWare &#8212; <b>Update: see below</b>.
</ul>
<h3>Q: What does Tumult Hype use for its animations?</h3>
<p>Unfortunately there&#8217;s no straightforward answer!  Tumult Hype <a href = "http://tumult.com/hype/whats-new/1.6/">v1.6</a> <i>prefers</i> to use top/left positioning with requestAnimationFrame() and graphics acceleration enabled. In some cases we may automatically disable graphics acceleration or use transforms to workaround specific browser bugs. There&#8217;s a checkbox in the Document inspector to disable graphics acceleration if manual intervention is required.  On iOS we cannot use requestAnimationFrame() at all due to a Mobile Safari bug*, and clearly cannot use it on older browsers because it&#8217;s not supported.  Tumult Hype v1.0 used transitions when available for the best performance, however we encountered issues keeping animations synchronized, and this technique would not work with newer features such as our bounce effect and pausing/resumes/go-to-time features so it was abandoned in <a href = "http://tumult.com/hype/whats-new/1.5/">v1.5</a>.</p>
<h3>Q: Why shouldn&#8217;t I always use CSS Transitions?</h3>
<ul>
<li>They are difficult to programmatically manipulate.
<li>They are missing many features which might be required for interactivity (getting current positions, synchronizing with other animations, pausing, etc.).
</ul>
<p><a href = "http://paulirish.com/2012/why-moving-elements-with-translate-is-better-than-posabs-topleft/#comment-786943434">David Poyner</a> has  an elaboration I agree with.</p>
<h3>Q: Why use transforms if not using CSS Transitions or CSS Animations?</h3>
<ul>
<li>You may encounter browser bugs*. They go in both directions and sometimes using top/left is the only workaround.
</ul>
<p>I recommend reading <a href = "http://paulirish.com/2012/why-moving-elements-with-translate-is-better-than-posabs-topleft/#comment-786943435">Zachary Johnson</a>&rsquo;s comment for more information.</p>
<h3>Q: Why not always use the graphics acceleration hack?</h3>
<ul>
<li>It&#8217;s a hack!  Browsers may be able to make more intelligent decisions, and in some cases are faster (opaque elements).
<li>You may encounter browser bugs*.
<li>It could have battery life implications.
</ul>
<h3>Further Testing</h3>
<p>This is admittedly a simple and singular test I hope accurately covers general performance characteristics which might be seen in the real world. Because the GPU is a factor, it would be interesting to test against different hardware. Completely missing is a test on CSS Animations, but my assumption is their performance characteristics are the same as transitions.  With more time, I would vary box sizes, textures, and numbers. I would also test different effects known to cause performance issues such as box shadows and blurs.  I&#8217;d also test against the latest WebKit nightlies and Chrome Canary builds, perhaps compare against older versions of the browsers, and run a native tests on Windows and Android. I&#8217;m also curious about scale performance vs. width/height.</p>
<h3>End Note</h3>
<p>There&#8217;s no single path to best performance where web browsers are concerned. The first step in achieving performance for your site is measurement.</p>
<h3>* List of Related Browser Bugs We&#8217;ve Hit</h3>
<p><a href = "rdar://problem/9764859">&lt;rdar://problem/9764859&gt;</a> 3d webkit-transforms intersect elements inconsistently<br />
<a href = "rdar://problem/9973514">&lt;rdar://problem/9973514&gt;</a> Hardware compositing breaks full screen video in Safari 5.1<br />
<a href = "rdar://problem/10346853">&lt;rdar://problem/10346853&gt;</a> REGRESSION: webkit-transform:rotate causes other css properties to not change<br />
<a href = "rdar://problem/10506553">&lt;rdar://problem/10506553&gt;</a> Box-shadow not always drawn when an element is rotated and animating<br />
<a href = "rdar://problem/10543798">&lt;rdar://problem/10543798&gt;</a> Table border not drawn when there&#8217;s a 3D transform<br />
<a href = "rdar://problem/10737092">&lt;rdar://problem/10737092&gt;</a> contenteditable cursor displayed incorrectly with translates and 3D rotations<br />
<a href = "rdar://problem/10786551">&lt;rdar://problem/10786551&gt;</a> 3D transformed div has aliased/jagged edges<br />
<a href = "rdar://problem/12307742">&lt;rdar://problem/12307742&gt;</a> CSS3 Filter Effects rendered inconsistently across Safari CPU path, GPU path, iOS, and Chrome<br />
<a href = "rdar://problem/12363449">&lt;rdar://problem/12363449&gt;</a> webkitRequestAnimationFrame does not work between pages on Mobile Safari<br />
<a href = "rdar://problem/12628214">&lt;rdar://problem/12628214&gt;</a>/<a href = "http://code.google.com/p/chromium/issues/detail?id=159253">Chromium 159253</a> Changing background-color and left at the same time does not work<br />
<a href = "rdar://problem/12722122">&lt;rdar://problem/12722122&gt;</a> elements with 3d transforms non-retina if they are in two divs with perspective<br />
<a href = "rdar://problem/13043725">&lt;rdar://problem/13043725&gt;</a> Child with rotateY is not clipped by parent with overflow:hidden and border-radius<br />
<a href = "http://code.google.com/p/chromium/issues/detail?id=161423">Chromium 161423</a> Blur CSS3 Filter Effect does not blur outside the bounds of the div<br />
<a href = "http://code.google.com/p/chromium/issues/detail?id=164703">Chromium 164703</a> Rendering artifacts on page while rotating element on z axis</p>
<h3>Update</h3>
<p>Mozilla has found the performance issues with Firefox 19 are the result of a regression, and are tracking with <a href = "https://bugzilla.mozilla.org/show_bug.cgi?id=849263">https://bugzilla.mozilla.org/show_bug.cgi?id=849263</a>.</p>
<p>The post <a href="http://blog.tumult.com/2013/02/28/transform-translate-vs-top-left/">Myth busting the HTML5 performance of transform:translate vs. top/left</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2013/02/28/transform-translate-vs-top-left/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS Filter Effects in Practice</title>
		<link>http://blog.tumult.com/2013/02/18/css-filter-effects-in-practice/</link>
		<comments>http://blog.tumult.com/2013/02/18/css-filter-effects-in-practice/#comments</comments>
		<pubDate>Mon, 18 Feb 2013 19:52:54 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://blog.tumult.com/?p=1192</guid>
		<description><![CDATA[<p>Setting a filter effect like &#8216;blur&#8217; or &#8216;saturation&#8217; on an image using CSS can create an interesting tech demo, but what&#8217;s the point? Why go to the trouble to manipulate an image in the browser when it can be easily edited in an image editor? When we added CSS filter effects to Tumult Hype, we [...]</p><p>The post <a href="http://blog.tumult.com/2013/02/18/css-filter-effects-in-practice/">CSS Filter Effects in Practice</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumult.com/wp-content/uploads/2013/02/poppa.jpg" width="240" />
		</p><p>Setting a filter effect like &#8216;blur&#8217; or &#8216;saturation&#8217; on an image using CSS can create an interesting tech demo, but what&#8217;s the point? Why go to the trouble to manipulate an image in the browser when it can be easily edited in an image editor?</p>
<p>When we added CSS filter effects to Tumult Hype, we knew it would open up a world of possibilities for animators. An un-animated CSS Filter effect is one thing, but when animated, the CSS Filters bring a new richness to web content. Blurring, saturating, and hue shifting images, text, or elements (and even videos!) brings a new dimension to animations. Think lighting effects, indicating motion with blurring, and setting the color temperature for images. Technically, Tumult Hype is setting CSS properties on your elements:</p>
<pre><code data-language="css">#YourElement {
  -webkit-filter:saturate(5) hue-rotate(500deg) sepia(0.7) contrast(1.5) brightness(.9);
}
</code></pre>
<p>&#8230; but doing so up to 60 times a second at a rate you define. Even though it&#8217;s a cutting-edge feature that currently works in Webkit based browsers, it&#8217;s ready for prime time: Reuters has added subtle blurs to their recent <a href="http://www.reuters.com/article/interactive/idUSBRE90M0ZO20130124?view=large">infographic on the Boeing&#8217;s 787 Dreamliner</a>.  In the document below, we show what filter effects do when applied to photos, how they can augment infographics, and a few other fun examples.We hope these inspire you to play around with all the CSS filter effects! Click the image below to open it up: <span id="more-1192"></span></p>
<p><a href="http://tumult.com/hype/tutorials/documents/CSSFilterDemo/CSSFilterDemo.html"><img class="size-full wp-image-1228 alignnone" alt="CSSFilterEffects" src="http://blog.tumult.com/wp-content/uploads/2013/02/CSSFilterEffects1.png" width="755" height="612" /></a></p>
<p>If you&#8217;d like to examine some of the code or techniques used in this document, grab <a href="http://tumult.com/hype/tutorials/documents/CSSFilterDemo/CSSFilterDemo.zip">the original .hype file here</a>.</p>
<h3>Environmental Effects</h3>
<p>Want more? <a href="http://brokenword.org/mandala.html" target="_blank">Here&#8217;s a mesmerizing mandala</a> produced in Tumult Hype by one of our more creative users who goes by the name <em>Big Poppa E (<a href="http://blog.tumult.com/wp-content/uploads/2013/02/CSSFilters/mandala/mandala.html" target="_blank">alternate mandala link here</a>)</em>. His <a href="http://brokenword.org" target="_blank">entire site is worth a look</a>; it&#8217;s a mystical tour into his work and life through a <a href="https://en.wikipedia.org/wiki/Myst">Myst</a>-like system of rooms chock full of sound and lighting effects. <a href="http://www.brokenword.org/menu.html#splash" target="_blank">Check it out!</a></p>
<p><a href="http://www.brokenword.org/menu.html#splash"><img class="alignleft size-full wp-image-1237" alt="poppa" src="http://blog.tumult.com/wp-content/uploads/2013/02/poppa.jpg" width="1240" height="789" /></a></p>
<p>The possibilities are endless. Go have fun!</p>
<p><iframe style="border: none;" src="http://blog.tumult.com/wp-content/uploads/2013/02/CSSFilters/cssfunk/colorwheels/colorwheels.html" height="400" width="100%" frameborder="0" scrolling="no"></iframe></p>
<p>The post <a href="http://blog.tumult.com/2013/02/18/css-filter-effects-in-practice/">CSS Filter Effects in Practice</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2013/02/18/css-filter-effects-in-practice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tumult Hype 1.6.1 Update Released</title>
		<link>http://blog.tumult.com/2013/02/12/tumult-hype-1-6-1-update-released/</link>
		<comments>http://blog.tumult.com/2013/02/12/tumult-hype-1-6-1-update-released/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 22:16:47 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[Release Notes]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://blog.tumult.com/?p=1206</guid>
		<description><![CDATA[<p>We&#8217;ve just released Tumult Hype version 1.6.1! Thanks to all our users for bug reports and sharing awesome animations with us. Go grab this update. The 1.6.1 update includes some important bug fixes and is recommended for everyone to upgrade. The most important note about this release is that we&#8217;ve changed the &#8220;.resources&#8221; export folder [...]</p><p>The post <a href="http://blog.tumult.com/2013/02/12/tumult-hype-1-6-1-update-released/">Tumult Hype 1.6.1 Update Released</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<h4>We&#8217;ve just released <a href="http://tumult.com/hype/">Tumult Hype</a> version 1.6.1! Thanks to all our users for bug reports and sharing awesome animations with us. Go <a href="http://tumult.com/hype/documentation/history/#instructions">grab this update</a>.</h4>
<p>The 1.6.1 update includes some important bug fixes and is recommended for everyone to upgrade.</p>
<p>The most important note about this release is that we&#8217;ve changed the &#8220;.<span style="font-family: monospace;">resources</span>&#8221; export folder names to &#8220;<span style="font-family: monospace;">.hyperesources</span>&#8221; to prevent problems displaying on older Microsoft IIS web servers (such as those used by GoDaddy). The inclusion of the &#8220;.&#8221; in Tumult Hype is necessary to support <a href="https://developer.apple.com/devcenter/mac/app-sandbox/">sandboxing</a>, which is required by Apple as a part of their Mac App Store review process. The move to .hyperesources was motivated by very old but widely used versions of Microsoft&#8217;s Internet Information Services servers which are unable to serve content from folders with a .resources extension. Unfortunately, the incompatibility was not caught during 1.6 development, so we needed to change the extension once again. We apologize for the inconvenience and expect no further changes to the export filenames.</p>
<p><a href="http://tumult.com/hype/documentation/history/#1.6.1">Read the full release notes for Tumult Hype 1.6.1</a>.</p>
<p>The post <a href="http://blog.tumult.com/2013/02/12/tumult-hype-1-6-1-update-released/">Tumult Hype 1.6.1 Update Released</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2013/02/12/tumult-hype-1-6-1-update-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Final Day for Tumult Hype Sale (Sale is now over)</title>
		<link>http://blog.tumult.com/2013/01/21/final-day-for-tumult-hype-sale/</link>
		<comments>http://blog.tumult.com/2013/01/21/final-day-for-tumult-hype-sale/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 19:20:51 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.tumult.com/?p=1168</guid>
		<description><![CDATA[<p>(The sale is over. Thanks!) Today is the last day of our 15% off sale. If you were waiting to grab Tumult Hype, today is the day:  Grab it on the Mac App store! We&#8217;re also pleased to announce that Tumult Hype licenses may be bought with Bitcoins (learn about Bitcoins here). At this time one [...]</p><p>The post <a href="http://blog.tumult.com/2013/01/21/final-day-for-tumult-hype-sale/">Final Day for Tumult Hype Sale (Sale is now over)</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>(The sale is over. Thanks!)</h3>
<h3>Today is the last day of our 15% off sale. If you were waiting to grab Tumult Hype, today is the day:  <a href="https://itunes.apple.com/us/app/hype/id436931759?mt=12">Grab it on the Mac App store</a>!</h3>
<p>We&#8217;re also pleased to announce that Tumult Hype licenses may be bought with Bitcoins (<a href="http://weusecoins.com">learn about Bitcoins here</a>). At this time one license amounts to about 3 Bitcoins. See the <a href="http://tumult.com/hype/purchasing/">Tumult Hype purchasing page</a> to get started.<a href="http://tumult.com/hype/purchasing"><img class="wp-image-1189 alignright" alt="Screen Shot 2013-01-22 at 12.51.46 PM" src="http://blog.tumult.com/wp-content/uploads/2013/01/Screen-Shot-2013-01-22-at-12.51.46-PM.png" width="150" height="42" /></a></p>
<p>New to Tumult Hype? <a href="http://tumult.com/hype">Start here</a>.</p>
<p>The post <a href="http://blog.tumult.com/2013/01/21/final-day-for-tumult-hype-sale/">Final Day for Tumult Hype Sale (Sale is now over)</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2013/01/21/final-day-for-tumult-hype-sale/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Announcing Tumult Hype 1.6 with Filter Effects</title>
		<link>http://blog.tumult.com/2013/01/07/announcing-tumult-hype-1-6-with-filter-effects/</link>
		<comments>http://blog.tumult.com/2013/01/07/announcing-tumult-hype-1-6-with-filter-effects/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 17:00:41 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[Release Notes]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://blog.tumult.com/?p=1113</guid>
		<description><![CDATA[<p>Tumult Hype is the award-winning HTML5 animation builder for OS X.  It has been used for all kinds of different projects, like infographics, porfolios, NASA roadmaps, mobile ads, greeting cards, museum kiosks, children&#8217;s books and much, much more. Our new update, Tumult Hype 1.6, contains 35 new features and has several bug fixes and performance improvements. We are beyond excited to get it in your [...]</p><p>The post <a href="http://blog.tumult.com/2013/01/07/announcing-tumult-hype-1-6-with-filter-effects/">Announcing Tumult Hype 1.6 with Filter Effects</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumult.com/wp-content/uploads/2012/12/icon_256x2562x.png" width="240" />
		</p><p>Tumult Hype is the award-winning HTML5 animation builder for OS X.  It has been used for all kinds of different projects, like <a href="http://graphics.thomsonreuters.com/RNGSi/hurricanes/hurricanes.html">infographics</a>, <a href="http://www.adamcampbellphoto.com/">porfolios</a>, <a href="http://open.nasa.gov/exploration-roadmap/">NASA roadmaps</a>, <a href="http://tumult.com/hype/gallery/BuckleysDuckleys/BuckleysDuckleys.html">mobile ads</a>, <a href="http://tumult.com/hype/gallery/HolidayCard3/HolidayCard3.html">greeting cards</a>, <a href="http://blog.tumult.com/2012/07/06/interactive-museum-displays-the-museum-of-making-musics-sound-of-sax-exhibit/">museum kiosks</a>, <a href="https://itunes.apple.com/us/app/noa-ladybird/id566976949?ls=1&amp;mt=8">children&#8217;s books</a> and <a href="http://tumult.com/hype/gallery/">much, much more</a>.</p>
<p>Our new update, Tumult Hype 1.6, contains 35 new features and has several bug fixes and performance improvements. We are beyond excited to get it in your hands. We’re incredibly proud of this release and think you will love it — Tumult Hype 1.6 is face-meltingly powerful!</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/hG1-cIchKJc?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span></p>
<p>Some of the 35+ new features include:</p>
<ul>
<li>CSS Filter Effects to blur, change brightness/contrast, and hue shift</li>
<li>Resource Library for managing images, videos, functions, and document assets</li>
<li>Capo tool: easily set animation start times when recording</li>
<li>New actions to pause, continue, and jump to specific times</li>
<li>Timeline Actions which can be triggered at any point on the timeline</li>
<li>Action chaining to make sophisticated flows</li>
<li>New JavaScript APIs (shown in our new documentation viewer)</li>
<li>The document&#8217;s &lt;head&gt; can now be modified</li>
<li>Layout guides</li>
<li>Scene editing improvements for rotating and resizing elements</li>
<li>IE 10 and other current browser compatibility updates</li>
<li>Sandboxed</li>
<li>Retina artwork and icons for the app</li>
</ul>
<div>And much, much, more&#8230;</div>
<div></div>
<div><a href="http://tumult.com/hype/whats-new/1.6/"><img class="aligncenter size-full wp-image-1120" title="whatsnew" alt="" src="http://blog.tumult.com/wp-content/uploads/2012/12/whatsnew.png" width="646" height="71" /></a></div>
<div></div>
<div>New to Hype? Go grab it on the <a href="http://bit.ly/u4RZZD">Mac App Store</a> or from the <a href="https://sites.fastspring.com/tumultco/instant/hype">Tumult Store</a>, download a <a href="http://tumult.com/hype/download/">14 day unrestricted trial</a>, or <a href="http://tumult.com/hype/purchasing/">get in touch</a> if you have questions about purchasing.</div>
<div></div>
<p>The post <a href="http://blog.tumult.com/2013/01/07/announcing-tumult-hype-1-6-with-filter-effects/">Announcing Tumult Hype 1.6 with Filter Effects</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2013/01/07/announcing-tumult-hype-1-6-with-filter-effects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tumult Hype Bug Fix Update: 1.5.2</title>
		<link>http://blog.tumult.com/2012/09/21/tumult-hype-bug-fix-update-1-5-2/</link>
		<comments>http://blog.tumult.com/2012/09/21/tumult-hype-bug-fix-update-1-5-2/#comments</comments>
		<pubDate>Fri, 21 Sep 2012 18:23:56 +0000</pubDate>
		<dc:creator>Daniel Morgan</dc:creator>
				<category><![CDATA[Release Notes]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://blog.tumult.com/?p=993</guid>
		<description><![CDATA[<p>Today&#8217;s Tumult Hype update resolves a number of bugs, implements Dropbox&#8217;s new sharing and authentication method, and makes Tumult Hype even more stable. Minor fixes for Mac OS X 10.8 Mountain Lion and Retina displays Workaround for Chrome/Safari 6 issue where scenes flicker images when using Dropbox Fixed issues where z-ordering may be incorrect inside [...]</p><p>The post <a href="http://blog.tumult.com/2012/09/21/tumult-hype-bug-fix-update-1-5-2/">Tumult Hype Bug Fix Update: 1.5.2</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Today&#8217;s Tumult Hype update resolves a number of bugs, implements Dropbox&#8217;s new sharing and authentication method, and makes Tumult Hype even more stable.</p>
<p><img class="alignright" style="border: none;" src="http://blog.tumult.com/wp-content/uploads/2012/09/hypeicon.png" alt="" /></p>
<ul>
<li>Minor fixes for Mac OS X 10.8 Mountain Lion and Retina displays</li>
<li>Workaround for Chrome/Safari 6 issue where scenes flicker images when using Dropbox</li>
<li>Fixed issues where z-ordering may be incorrect inside of groups</li>
<li>Dropbox authentication is now web-based</li>
<li><a href="http://tumult.com/hype/documentation/history/">Many other bug fixes</a>&#8230;</li>
</ul>
<p>If you purchased from&#8230;</p>
<p><strong>&#8230; The <a href="http://cl.ly/1E0F4000462r">Mac App Store</a></strong></p>
<ul>
<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>
</ul>
<p><strong>&#8230; The Tumult Store</strong></p>
<ul>
<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>
</ul>
<p>&nbsp;</p>
<p>The post <a href="http://blog.tumult.com/2012/09/21/tumult-hype-bug-fix-update-1-5-2/">Tumult Hype Bug Fix Update: 1.5.2</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2012/09/21/tumult-hype-bug-fix-update-1-5-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes on Tumult Hype&#8217;s Cross-Browser Compatibility (or: How I Learned to Stop Worrying and Almost Not Hate IE6)</title>
		<link>http://blog.tumult.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.tumult.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>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.tumultco.com/?p=828</guid>
		<description><![CDATA[<p>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 [...]</p><p>The post <a href="http://blog.tumult.com/2012/05/15/notes-on-tumult-hypes-cross-browser-compatibility-or-how-i-learned-to-stop-worrying-and-almost-not-hate-ie6/">Notes on Tumult Hype&#8217;s Cross-Browser Compatibility (or: How I Learned to Stop Worrying and Almost Not Hate IE6)</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumult.com/wp-content/uploads/2012/05/Screen-Shot-2012-08-01-at-2.35.51-PM.png" width="240" />
		</p><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 Menlo"><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 Menlo; 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 Menlo; 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 Menlo"><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 Menlo; 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 Menlo; 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 Menlo"><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 Menlo; 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 Menlo; 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 Menlo"><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 Menlo; 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 Menlo; 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 Menlo"><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 Menlo; 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&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;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>
<p>The post <a href="http://blog.tumult.com/2012/05/15/notes-on-tumult-hypes-cross-browser-compatibility-or-how-i-learned-to-stop-worrying-and-almost-not-hate-ie6/">Notes on Tumult Hype&#8217;s Cross-Browser Compatibility (or: How I Learned to Stop Worrying and Almost Not Hate IE6)</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.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.tumult.com/2012/05/10/tumult-hype-1-5-1-released/</link>
		<comments>http://blog.tumult.com/2012/05/10/tumult-hype-1-5-1-released/#comments</comments>
		<pubDate>Thu, 10 May 2012 19:45:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://blog.tumultco.com/?p=821</guid>
		<description><![CDATA[<p>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.</p><p>The post <a href="http://blog.tumult.com/2012/05/10/tumult-hype-1-5-1-released/">Tumult Hype 1.5.1 Released!</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img src="http://blog.tumult.webfactional.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>
<p>The post <a href="http://blog.tumult.com/2012/05/10/tumult-hype-1-5-1-released/">Tumult Hype 1.5.1 Released!</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2012/05/10/tumult-hype-1-5-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Special Announcement: Tumult Acquires Adobe</title>
		<link>http://blog.tumult.com/2012/04/01/special-announcement-tumult-acquires-adobe/</link>
		<comments>http://blog.tumult.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><![CDATA[<p></p><p>The post <a href="http://blog.tumult.com/2012/04/01/special-announcement-tumult-acquires-adobe/">Special Announcement: Tumult Acquires Adobe</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.tumult.webfactional.com/wp-content/uploads/2012/04/acquire-larger.png"><img class="aligncenter size-full wp-image-740" title="TumultAcquiresAdobe" src="http://blog.tumult.webfactional.com/wp-content/uploads/2012/04/TumultAcquiresAdobe.png" alt="" width="616" height="820" /></a></p>
<p>The post <a href="http://blog.tumult.com/2012/04/01/special-announcement-tumult-acquires-adobe/">Special Announcement: Tumult Acquires Adobe</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2012/04/01/special-announcement-tumult-acquires-adobe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s a big day: Tumult Hype 1.5 is here!</title>
		<link>http://blog.tumult.com/2012/02/23/tumult-hype-1-5-is-here/</link>
		<comments>http://blog.tumult.com/2012/02/23/tumult-hype-1-5-is-here/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 18:11:18 +0000</pubDate>
		<dc:creator>tumultco</dc:creator>
				<category><![CDATA[Release Notes]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://tumultco.com/blog/?p=641</guid>
		<description><![CDATA[<p>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 [...]</p><p>The post <a href="http://blog.tumult.com/2012/02/23/tumult-hype-1-5-is-here/">It&#8217;s a big day: Tumult Hype 1.5 is here!</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></description>
				<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://blog.tumult.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&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;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>
<p>The post <a href="http://blog.tumult.com/2012/02/23/tumult-hype-1-5-is-here/">It&#8217;s a big day: Tumult Hype 1.5 is here!</a> appeared first on <a href="http://blog.tumult.com">Tumult Company Blog</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.tumult.com/2012/02/23/tumult-hype-1-5-is-here/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
Object Caching 2053/2145 objects using disk: basic

 Served from: blog.tumult.com @ 2013-05-21 12:51:45 by W3 Total Cache -->