<?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>ANDREW TRICE</title>
	<atom:link href="http://www.tricedesigns.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tricedesigns.com</link>
	<description>Explorations and Evangelism in Technology</description>
	<lastBuildDate>Thu, 13 Jun 2013 16:20:03 +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>PhoneGap Exploration &#8211; Realtime Hardware Communication</title>
		<link>http://www.tricedesigns.com/2013/06/11/phonegap-exploration-realtime-hardware-communication/</link>
		<comments>http://www.tricedesigns.com/2013/06/11/phonegap-exploration-realtime-hardware-communication/#comments</comments>
		<pubDate>Tue, 11 Jun 2013 17:45:58 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Cordova]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[PhoneGap]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[cordova]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phonegap]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3191</guid>
		<description><![CDATA[Recently I&#8217;ve undertaken some explorations with fellow evangelist Kevin Hoyt, trying to determine how far we can push PhoneGap applications with devices and physical computing. Turns out, you can push things really far and now I&#8217;m delighted to share one of the experiments that we&#8217;ve been pursuing. I&#8217;ve been asked on more than one occasion, can you [...]]]></description>
				<content:encoded><![CDATA[<p>Recently I&#8217;ve undertaken some explorations with fellow evangelist <a href="http://blog.kevinhoyt.com/" target="_blank">Kevin Hoyt</a>, trying to determine how far we can push <a href="http://phonegap.com" target="_blank">PhoneGap</a> applications with devices and physical computing. Turns out, you can push things really far and now I&#8217;m delighted to share one of the experiments that we&#8217;ve been pursuing.</p>
<p>I&#8217;ve been asked on more than one occasion, can you access Bluetooth devices in PhoneGap applications. The answer is YES, you can. There is not a specific &#8220;Bluetooth API&#8221; in PhoneGap, however you can create <a href="http://docs.phonegap.com/en/2.7.0/guide_plugin-development_index.md.html" target="_blank">native plugins</a> to access any native library. Basically, with a native plugin, you create the native interface (written in the native language), and a JavaScript interface. The native and JavaScript interfaces can leverage the PhoneGap native to JavaScript bridge for bidirectional communication.</p>
<p>In this exploration, we researched whether or not you can use a pressure sensitive stylus with a PhoneGap application. Again, the answer is <strong>YES</strong>, you can. Check out the video below to see a sample application in-action. This example demonstrates the use of a <a href="http://www.tenonedesign.com/connect.php" target="_blank">TenOne Pogo Connect Stylus</a> inside of a PhoneGap application.</p>
<p><iframe src="http://www.youtube.com/embed/72hSqFqvKEI?rel=0" height="450" width="600" allowfullscreen="" frameborder="0"></iframe></p>
<p><em>Note: This is not connected to <a href="http://www.engadget.com/2013/06/04/adobe-xd-shows-project-mighty-napoleon-hands-on/" target="_blank">Project Mighty</a> in any way &#8211; Kevin and I started exploring completely separately from the big announcements at <a href="http://max.adobe.com" target="_blank">MAX</a>.</em></p>
<p>The Pogo Connect stylus leverages <a href="http://www.bluetooth.com/Pages/Low-Energy.aspx" target="_blank">Bluetooth 4 Smart (low energy)</a> connectivity to communicate with the device, and provides pressure sensitivity and a physical button for the user to interact with. The JavaScript interface doesn&#8217;t interact directly with with the Bluetooth connection. Instead, I leveraged <a href="http://www.tenonedesign.com/t1pogomanager.php" target="_blank">TenOne&#8217;s Pogo Connect SDK</a> and created a JavaScript bridge layer to delegate pen interaction from the SDK to the JavaScript layer.</p>
<p>There were definitely a few tricks to get this working. First, the SDK is designed to accept touch input at the native layer, and determine whether or not that touch is from the pen. When using the SDK (in Objective-c), you are supposed to implement the touchesBegan, touchesMoved, touchesEnded, and touchesCancelled functions for a view:</p>
<pre class="brush: objc; title: ; notranslate">- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event;</pre>
<p>In those functions, you check if any of the touches are pens, and if so, do something with that pen input.</p>
<pre class="brush: objc; title: ; notranslate">- (void) touchesBegan: (NSSet *)touches withEvent:(UIEvent *)event {
	for (UITouch *touch in touches) {
		if ([pogoManager touchIsPen:touch]) {
			//do something with the pen
		}
	}
}</pre>
<p>The first catch with implementing this inside of a PhoneGap application is that you can&#8217;t override the touch handlers of a web view on iOS. Luckily, there is another way! I leveraged a <a href="http://developer.apple.com/library/ios/#documentation/uikit/reference/UIGestureRecognizer_Class/Reference/Reference.html" target="_blank">UIGestureRecognizer</a> instance to intercept the touch input that is received by the web view, determine if the touches were from the PogoConnect Stylus, and if so, then delegate that input back to the JS layer.</p>
<p>UIGestureRecognizer is normally used as a base class for creating custom gestures in iOS applications. If has everything you need to handle touch input, and it gives you that information without having to subclass an actual view. This means you can attach it to any UIView instance. Since you don&#8217;t have to subclass a view to use this, this plugin can be implemented in a PhoneGap native plugin without having to modify *any* code inside the PhoneGap framework.</p>
<p>So, here&#8217;s how I did it&#8230; Once the <a href="http://docs.phonegap.com/en/2.8.0/guide_plugin-development_ios_index.md.html#Developing%20a%20Plugin%20on%20iOS_plugin_initialization_and_lifetime" target="_blank">PhoneGap plugin is initialized on load</a>, I create a gesture recognizer instance and attach it to the PhoneGap application&#8217;s web view. Whenever touch input is received by the gesture recognizer, that input is passed back to the PhoneGap plugin instance, which executes JavaScript on the web view to pass that information to the JavaScript layer in real time as it is received.</p>
<p>On the JavaScript layer, stylus/pen input is dispatched to the application as custom events on the window.document object. To subscribe to pen input in JavaScript, you just add event listeners for the Pogo Connect events that I defined in the native plugin&#8217;s JavaScript file.</p>
<pre class="brush: jscript; title: ; notranslate">document.addEventListener( pogoConnect.PEN_TOUCH_BEGIN, app.penTouchBegin );
document.addEventListener( pogoConnect.PEN_TOUCH_MOVE, app.penTouchMove );
document.addEventListener( pogoConnect.PEN_TOUCH_END, app.penTouchEnd );</pre>
<p>Information about the stylus will be contained in the event.detail attribute, and will be an instance of this object (containing accurrate values about the pen&#8217;s state, of course):</p>
<pre class="brush: jscript; title: ; notranslate">{
    identifier: 0,
    connected:false,
    x:NaN,
    y:NaN,
    pressure:0,
    buttonDown:false,
    tipDown:false,
    lowBattery:false
}</pre>
<p>In JavaScript, you can do whatever you want within your application once you receive this information.</p>
<p>I created two sample applications to test this functionality. The first is a very <a href="https://github.com/triceam/PGPogoConnect/tree/master/PGPogoConnect%20simple" target="_blank">basic app that simply outputs the pressure as text</a> which follows the pen tip. The intent with this app was really just to prove the concept and determine if it was actually possible to receive and respond to information from the stylus.</p>
<div id="attachment_3208" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-3208" alt="Basic Pressure Sensitivity Detection in PhoneGap" src="http://www.tricedesigns.com/wp-content/uploads/2013/06/pressure-basic.jpg" width="600" height="293" /><p class="wp-caption-text">Basic Pressure Sensitivity Detection in PhoneGap</p></div>
<p>Once I proved it could be done, the next logical step was to create an app that actually takes advantage of the pressure sensitivity information. So, I made a <a href="https://github.com/triceam/PGPogoConnect/tree/master/PGPogoConnect%20sketch" target="_blank">sketching app</a>.</p>
<div id="attachment_3207" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-3207" alt="Pressure Sensitive Sketching in PhoneGap" src="http://www.tricedesigns.com/wp-content/uploads/2013/06/pressure-sketch.jpg" width="600" height="320" /><p class="wp-caption-text">Pressure Sensitive Sketching in PhoneGap</p></div>
<p>I started off by expanding on the drawing logic from my <a href="http://www.tricedesigns.com/2012/06/18/lil-doodle-source-code-now-available/" target="_blank">Lil&#8217; Doodle</a> PhoneGap application. This uses a <a href="http://docs.webplatform.org/wiki/apis/timing/methods/requestAnimationFrame" target="_blank">requestAnimationFrame</a> interval to render content in an HTML <a href="http://docs.webplatform.org/wiki/Meta:HTML/Elements/canvas" target="_blank">Canvas</a> element using a &#8220;<a href="http://www.tricedesigns.com/2012/01/04/sketching-with-html5-canvas-and-brush-images/" target="_blank">brush image</a>&#8221; technique. Next, I added logic to vary the opacity and stroke size based on the pressure information received from the pen plugin, and a few other options to change the pen tip/brush shape and color.</p>
<p>The pressure sensitive stylus gives a few interesting interactions that you wouldn&#8217;t get without the hardware:</p>
<ul>
<li><span style="line-height: 1.714285714; font-size: 1rem;">First, the obvious, you know the pressure being applied to the pen tip, and the app can respond accordingly.</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem;">Next, you have an extra input method. The button on the pen allows you to interact with the device without having to actually touch the device. I used the button in two ways: first, if the button is pressed and held, the pen erases instead of draws. Second, if you double-tap the pen button, it brings up the drawing options. These options are where I placed controls to modify the pen color and stroke.</span></li>
<li>Third, the plugin provides bidirectional communication with the Stylus. When you change the pen color, the LED on the pen will display the selected color for a few seconds.</li>
</ul>
<p>I used a modified version of DevGeeks&#8217; <a href="https://github.com/devgeeks/Canvas2ImagePlugin" target="_blank">Canvas2Image</a> plugin to save the content of the HTML Canvas to the device&#8217;s photo library. I also had to leverage a variation of <a href="http://blogs.adobe.com/digitalmedia/2011/01/setting-the-background-color-when-generating-images-from-canvas-todataurl/" target="_blank">this technique for getting the data from the Canvas element without transparency</a>.</p>
<p>All button and slider styling leverages <a href="http://topcoat.io" target="_blank">Topcoat</a>, Adobe&#8217;s brand new open source CSS framework designed to help developers build HTML-based apps with an emphasis on performance.</p>
<p>Full source code for this application is available on GitHub at <a href="https://github.com/triceam/PGPogoConnect" target="_blank">https://github.com/triceam/PGPogoConnect</a></p>
<p><strong><em>Note: This is iOS only &#8211; The third-party PogoConnect SDK is for iOS devices only. This example will also ONLY work if you have the PogoConnect Stylus. It does not support other stylus devices or finger-only drawing.</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/06/11/phonegap-exploration-realtime-hardware-communication/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DataVizDC Meetup: Images, Resources &amp; Audio Recording</title>
		<link>http://www.tricedesigns.com/2013/06/06/datavizdc-meetup-images-resources-audio-recording/</link>
		<comments>http://www.tricedesigns.com/2013/06/06/datavizdc-meetup-images-resources-audio-recording/#comments</comments>
		<pubDate>Thu, 06 Jun 2013 15:47:57 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Data Visualization]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[data vizualization]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3157</guid>
		<description><![CDATA[Last night I had the opportunity to give a presentation on Data Visualization With Web Standards to the DataVizDC meetup group. First of all, I&#8217;d like to thank the meetup group for hosting the event, and thank you to everyone who attended &#8211; It was a great event thanks to the excitement and energy brought [...]]]></description>
				<content:encoded><![CDATA[<p>Last night I had the opportunity to give a presentation on Data Visualization With Web Standards to the <a href="http://www.meetup.com/Data-Visualization-DC/events/120438582/" target="_blank">DataVizDC meetup group</a>. First of all, I&#8217;d like to thank the meetup group for hosting the event, and thank you to everyone who attended &#8211; It was a great event thanks to the excitement and energy brought by each of you. I promised to post a video recording, but unfortunately the video feed didn&#8217;t turn out (due to an error on my part).  Luckily, I was able to save the audio feed, which you can listen to here:</p>
<p><iframe src="https://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F95710883" height="166" width="100%" frameborder="no" scrolling="no"></iframe></p>
<p>You can access my presentation slides at the links below.  <em>Just use the &#8220;space&#8221; key to advance each slide.</em></p>
<ul>
<li><span style="line-height: 1.714285714; font-size: 1rem;"><a href="http://www.tricedesigns.com/presentations/dc_data_viz/" target="_blank">http://www.tricedesigns.com/presentations/dc_data_viz/</a></span></li>
</ul>
<p>You can also view all the associated resources from the presentation at:</p>
<ul>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.tricedesigns.com/presentations/dc_data_viz/interact/" target="_blank">http://www.tricedesigns.com/presentations/dc_data_viz/interact/</a></li>
</ul>
<p>Here are just a few images from the event, and you can find more presentation details below:</p>
<p><img class="aligncenter size-full wp-image-3171" alt="001" src="http://www.tricedesigns.com/wp-content/uploads/2013/06/0011.jpg" width="600" height="306" /> <img class="aligncenter size-full wp-image-3172" alt="photo-1" src="http://www.tricedesigns.com/wp-content/uploads/2013/06/photo-11.jpg" width="600" height="310" /> <img class="aligncenter size-full wp-image-3173" alt="photo-2" src="http://www.tricedesigns.com/wp-content/uploads/2013/06/photo-21.jpg" width="600" height="361" /> <img class="aligncenter size-full wp-image-3174" alt="photo-3" src="http://www.tricedesigns.com/wp-content/uploads/2013/06/photo-31.jpg" width="600" height="350" /></p>
<h1>Key Takeaways</h1>
<p>Here are links to the Adobe HTML resources I mentioned at the beginning of the presentation.</p>
<ul>
<li><a href="http://html.adobe.com/" target="_blank">html.adobe.com</a></li>
<li><a href="http://phonegap.com/" target="_blank">PhoneGap</a></li>
<li><a href="http://build.phonegap.com/" target="_blank">PhoneGap Build</a></li>
<li><a href="http://html.adobe.com/" target="_blank">Adobe Web Platform Team</a></li>
</ul>
<p>Here is a direct link to the simple interactive data experience that was created using <a href="http://html.adobe.com/edge/animate/" target="_blank">Adobe Edge Animate</a> (also available for download in the <a href="http://html.adobe.com/edge/animate/showcase.html" target="_blank">Edge Animate Showcase</a>):</p>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://html.adobe.com/edge/animate/showcase/mobilebrowser/mobile_marketshare.html" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/edge.jpg" width="370" height="256" /></a><p class="wp-caption-text">Edge Animate Data Sample</p></div>
<h1>Visualization Techniques</h1>
<h2>&lt;img&gt;</h2>
<p>You can embed images using the html &lt;img&gt; element that have server-rendered data visualizations. This is nothing new… They are very basic, but will certainly work.</p>
<ul>
<li>Not interactive</li>
<li>Requires online &amp; round-trip to server</li>
<li>No “WOW” factor – let’s face it, they are boring</li>
<li>Example: <a href="https://developers.google.com/chart/image/" target="_blank">Google Image Charts</a></li>
</ul>
<hr />
<h2>HTML5 &lt;canvas&gt;</h2>
<p>You can use the HTML5 &lt;canvas&gt; element to programmatically render content based upon data in-memory using JavaScript. The HTML5 Canvas provides you with an API for rendering graphical content via moveTo or lineTo instructions, or by setting individual pixel values manually.  Learn more about the <a href="https://developer.mozilla.org/en/Canvas_tutorial" target="_blank">HTML5 canvas from the MDN tutorials</a>.</p>
<ul>
<li>Can be interactive</li>
<li>Dynamic – client side rendering with JavaScript</li>
<li>Hardware accelerated on some platforms</li>
<li>Can work offline</li>
<li>Works in newer browsers: <a href="http://caniuse.com/#search=canvas" target="_blank">http://caniuse.com/#search=canvas</a></li>
</ul>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://guns.periscopic.com/" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/guns.jpg" width="370" height="256" /></a><p class="wp-caption-text">Gun Violence Visualization &#8211; Please, let&#8217;s not discuss the politics.</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://www.tricedesigns.com/presentations/dc_data_viz/assets/pages/HTML5BitmapChart/index.html" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/fifty.jpg" width="370" height="256" /></a><p class="wp-caption-text">HTML5 Canvas Scatterplot with Histogram (50K data points)</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://hamilton.dm.unipi.it/astdys2/Plot/" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/asteroids.jpg" width="370" height="256" /></a><p class="wp-caption-text">HTML5 Canvas Chart &#8211; Asteroids Analysis</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://threejs.org/examples/canvas_camera_orthographic.html" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/3d.jpg" width="370" height="256" /></a><p class="wp-caption-text">HTML5 Canvas &#8211; Three.js 3D Chart</p></div>
<hr />
<h2>Scalable Vector Graphics (SVG)</h2>
<p>SVG is a declarative XML-based markup language that is used to create vector graphics content, and can be used to create visual content inside of web experiences.</p>
<ul>
<li>Client or Server-side rendering</li>
<li>Can be static or dynamic</li>
<li>Can be scripted with JS</li>
<li>Can be manipulated via HTML DOM</li>
<li>Works in newer browsers (but not on Android 2.x and earlier): <a href="http://caniuse.com/#search=SVG" target="_blank">http://caniuse.com/#search=SVG</a></li>
</ul>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://007.lucklaboratories.com/" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/bond.jpg" width="370" height="256" /></a><p class="wp-caption-text">SVG &#8211; James Bond Visualization</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://bost.ocks.org/mike/sankey/" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/sankey.jpg" width="370" height="256" /></a><p class="wp-caption-text">SVG &#8211; Sankey Diagrams</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://mbostock.github.com/d3/talk/20111116/iris-splom.html" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/scatter.jpg" width="370" height="256" /></a><p class="wp-caption-text">SVG &#8211; Connected Scatterplots</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://mbostock.github.com/d3/ex/bullet.html" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/bullet.jpg" width="370" height="256" /></a><p class="wp-caption-text">SVG &#8211; Bullet Charts</p></div>
<hr />
<h2>HTML DOM Elements</h2>
<p>Visualizations such as interactive maps, or simple charts can be created purely with HTML structures and creative use of CSS styles to control position, visual presentation, etc… You can use CSS positioning to control x/y placement, and percentage-based width/height to display relative values based upon a range of data. For example, the following bar chart/table is created purely using HTML DIV containers with CSS styles.</p>
<p><img title="dom_viz" alt="" src="http://www.tricedesigns.com/wp-content/uploads/2012/05/dom_viz.jpg" width="550" height="261" /></p>
<hr />
<h2>WebGL</h2>
<p><a href="http://en.wikipedia.org/wiki/WebGL" target="_blank">WebGL</a> is on the “bleeding edge” of interactive graphics &amp; data visualization across the web. WebGL enables hardware-accelerated 3D graphics inside the browser experience. Technically, it is not a standard, and there is varied and/or incomplete support across different browsers (<a href="http://caniuse.com/#search=webgl" target="_blank">http://caniuse.com/#search=webgl</a>).  There is also considerable debate whether it ever will be a standard; however there are some incredible samples out on the web worth mentioning:</p>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://workshop.chromeexperiments.com/projects/armsglobe/" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/smallarms.jpg" width="370" height="256" /></a><p class="wp-caption-text">WebGL &#8211; Globe w/ Arms Trading Data</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="https://www.google.com/maps/preview#!data=!1m7!1m3!1d943!2d-122.3820729!3d37.792711!2m2!1f270!2f78.7!2m1!1e3&amp;fid=7" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/googlemaps.jpg" width="370" height="256" /></a><p class="wp-caption-text">WebGL &#8211; New Google Maps</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://workshop.chromeexperiments.com/globe/" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/worldpopulation.jpg" width="370" height="256" /></a><p class="wp-caption-text">WebGL &#8211; World Population</p></div>
<div class="wp-caption alignnone" style="width: 380px"><a href="http://threejs.org/examples/webgl_geometry_hierarchy2.html" target="_blank"><img alt="" src="http://www.tricedesigns.com/presentations/dc_data_viz/assets/screenshots/helix.jpg" width="370" height="256" /></a><p class="wp-caption-text">WebGL &#8211; Sample Visualization (could be used for molecule structure)</p></div>
<hr />
<h1>Interactive Coding</h1>
<p>I also put together several interactive/editable samples for demonstrating basic visualization techniques.  You can preview all of these samples on my <a href="http://codepen.io/collection/epnmG/1" target="_blank">Data Visualization Collection on Codepen.io</a>.</p>
<div id="attachment_3184" class="wp-caption aligncenter" style="width: 610px"><a href="http://codepen.io/collection/epnmG/1"><img class="size-full wp-image-3184" alt="Interactive Coding in the Browser on CodePen.io" src="http://www.tricedesigns.com/wp-content/uploads/2013/06/codepen.jpg" width="600" height="398" /></a><p class="wp-caption-text">Interactive Coding in the Browser on CodePen.io</p></div>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/06/06/datavizdc-meetup-images-resources-audio-recording/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sound Remover in Adobe Audition CC</title>
		<link>http://www.tricedesigns.com/2013/05/30/sound-remover-in-adobe-audition-cc/</link>
		<comments>http://www.tricedesigns.com/2013/05/30/sound-remover-in-adobe-audition-cc/#comments</comments>
		<pubDate>Thu, 30 May 2013 18:22:44 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Creative Cloud]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[creative cloud]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3149</guid>
		<description><![CDATA[The update to Creative Cloud that is coming in June is loaded with awesome tools and incredible new features. I recently demonstrated shake reduction in Photoshop, which can greatly enhance photos that are blurred from a shaky camera, but that&#8217;s not the only great update coming in June. Another feature that I wanted to highlight [...]]]></description>
				<content:encoded><![CDATA[<p>The update to <a href="http://creative.adobe.com" target="_blank">Creative Cloud</a> that is coming in June is loaded with awesome tools and incredible new features. I recently demonstrated <a href="http://www.tricedesigns.com/2013/05/24/shake-reduction-in-adobe-photoshop-cc/" target="_blank">shake reduction in Photoshop</a>, which can greatly enhance photos that are blurred from a shaky camera, but that&#8217;s not the only great update coming in June. Another feature that I wanted to highlight is the <strong>Sound Remover</strong> process in <a href="http://www.adobe.com/products/audition.html" target="_blank">Adobe Audition CC</a>.</p>
<p>The Sound Remover enables you to select specific sound frequencies and patterns, and remove them from a sound file/composition. Imagine that you have a great recording which was ruined by a cell phone ringing, birds chirping in the background, or someone slamming a door. Now it is possible to easily remove those specific frequencies and patterns without losing or damaging the entire audio file. Check out the video below for an example.</p>
<p><iframe src="http://www.youtube.com/embed/O6zh6HuPB4I?rel=0" height="338" width="600" allowfullscreen="" frameborder="0"></iframe></p>
<p>In a nutshell, the process is this:</p>
<ul>
<li><span style="line-height: 14px;">In the Spectral Frequency Display, use the paintbrush selection tool to select the frequencies and patterns you want to remove.</span></li>
<li>Go to the Effects menu and select Noise Reduction/Restoration -&gt; Learn Learn Sound Model.</li>
<li>Select the clip/segments that you want to be affected.</li>
<li>Go to the Effects menu and select Noise Reduction/Restoration -&gt; Sound Remover (process).</li>
<li>Next, change the settings as appropriate for your sounds/compositions, and hit &#8220;Apply&#8221;.</li>
</ul>
<p><img class="aligncenter size-full wp-image-3151" alt="Sound Remover" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/Sound-Remover.png" width="594" height="415" /></p>
<p>You can learn more about some of the other great features in Adobe Audition CC in the video below from Adobe TV:</p>
<p><iframe title="AdobeTV Video Player" src="http://tv.adobe.com/embed/1199/16789/" height="345" width="600" allowfullscreen="" frameborder="0" scrolling="no"></iframe></p>
<p>Or, you can learn more about the exciting new features coming in June&#8217;s Creative Cloud update on <a href="http://www.adobe.com/products/creativecloud.html" target="_blank">adobe.com</a> and see video previews of a lot of the <a href="http://success.adobe.com/en/na/programs/events/1303_30759_nab.html?sdid=KEYJL" target="_blank">new Audio/Video features</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/05/30/sound-remover-in-adobe-audition-cc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shake Reduction in Adobe Photoshop CC</title>
		<link>http://www.tricedesigns.com/2013/05/24/shake-reduction-in-adobe-photoshop-cc/</link>
		<comments>http://www.tricedesigns.com/2013/05/24/shake-reduction-in-adobe-photoshop-cc/#comments</comments>
		<pubDate>Fri, 24 May 2013 16:41:34 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Creative Cloud]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[creative cloud]]></category>
		<category><![CDATA[PhotoShop]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3118</guid>
		<description><![CDATA[If you haven&#8217;t heard about the new Camera Shake Reduction feature coming to Adobe Creative Cloud members this June in Photoshop CC, it is a new filter that will analyze your photos to detect and correct blurring due to a shaky camera. Yes you read that correctly, it can make a shaky/blurry photo LESS shaky/blurry. It&#8217;s [...]]]></description>
				<content:encoded><![CDATA[<p>If you haven&#8217;t heard about the new <a href="http://blogs.adobe.com/richardcurtis/?p=985" target="_blank">Camera Shake Reduction</a> feature coming to <a href="http://creative.adobe.com" target="_blank">Adobe Creative Cloud</a> members this June in <a href="http://www.adobe.com/products/photoshop.html" target="_blank">Photoshop CC</a>, it is a new filter that will analyze your photos to detect and correct blurring due to a shaky camera. Yes you read that correctly, it can make a shaky/blurry photo LESS shaky/blurry. It&#8217;s an awesome new feature that can be used to enhance photos under low light conditions or taken with slow shutter speeds. Check out the official teaser video below:</p>
<p><iframe src="http://www.youtube.com/embed/stUD-DRhTZg?rel=0" height="315" width="560" allowfullscreen="" frameborder="0"></iframe></p>
<p>This can have huge implications, everything from enhancing precious photos of your loved ones, to crime analysis and forensics. Speaking of which, did you know <a href="http://blogs.adobe.com/photoshopdotcom/2013/05/celebrating-law-enforcement-week-with-adobes-john-penn-ii.html" target="_blank">Adobe does some amazing work with law enforcement and image forensics</a>?</p>
<p>Like any other curious individual, I wanted to test this out on my own, with my own photographs. So, I broke out my camera, set it to have a slow shutter speed (for intentionally blurry photos), and started walking around and taking pictures. I was completely blown away by the outcome.</p>
<p>Let&#8217;s take a look at the results&#8230;</p>
<p>In all of the following examples, the image on the left is the original. The image on the right is the enhanced/corrected image. The only changes that I have made are camera shake correction and minor color/contrast corrections. I have not used any other touchup/enhancement or alteration techniques. It&#8217;s amazing how much detail was able to be pulled out of the original blurred images.</p>
<p>First, let&#8217;s take a look at an office building. The enhanced image has much more detail, including brick textures, more readable/discernable content, and while it has some minor artifacts, it is a huge improvement.</p>
<div id="attachment_3126" class="wp-caption aligncenter" style="width: 610px"><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/office-full.jpg" target="_blank"><img class="size-full" alt="Click to view full size image" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/office-small.jpg" width="600" height="225" /></a><p class="wp-caption-text">Click to view full size image</p></div>
<p>Now, let&#8217;s look a little bit closer&#8230; If you&#8217;ve already glanced at the image below, you&#8217;ll see that I was able to extract the license plate from a car that just happened to be passing at the time I took the photo.<br />
<img class="aligncenter" alt="aligncenter office-license-plate" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/office-license-plate.jpg" width="600" height="282" /><br />
Seriously, this is real. All of those &#8220;image enhancement&#8221; sequences that you&#8217;ve seen in crime and sci-fi movies and TV shows (which you&#8217;ve probably rolled your eyes at) are now a reality. Still don&#8217;t believe me? Take a look at this video I put together for a closer look.</p>
<p><iframe src="http://www.youtube.com/embed/rXAclS3XywY?rel=0" height="450" width="600" allowfullscreen="" frameborder="0"></iframe></p>
<p>Note: I edited this down to the &#8220;short version&#8221;, in reality it took a lot more trial and error and permutations of the shake reduction tools to achieve the final result.</p>
<p>That&#8217;s not all, I was able to extract detail about other items in the photograph. For example, You can now see enough detail to identify the light bulb in the street lamp.</p>
<p><img class="aligncenter size-full" alt="office-lamp" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/office-lamp.jpg" width="600" height="300" />You can even make out the faint outline of the bicycle and arrow on the &#8220;bike lane&#8221; street sign behind the car.<br />
<img class="aligncenter size-full" alt="office-sign" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/office-sign.jpg" width="600" height="200" /></p>
<p>Pretty cool, right? Now, let&#8217;s take a look at another example. Again, the blurry image on the left is the *original*.</p>
<div id="attachment_3134" class="wp-caption aligncenter" style="width: 610px"><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/window-full.jpg" target="_blank"><img class="size-full wp-image-3134" alt="Click to view full size image" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/window-small.jpg" width="600" height="400" /></a><p class="wp-caption-text">Click to view full size image</p></div>
<p>You can see that the enhanced image is sharper and has more detail. Let&#8217;s look a bit closer&#8230;</p>
<p>In the original image, did you see that guy in the blue shirt standing walking towards the white van? Yeah, neither did I:</p>
<p><img class="aligncenter size-full wp-image-3133" alt="window-person" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/window-person.jpg" width="600" height="225" /></p>
<p>Or, could you tell what kind of cars were in the parking lot? I know I couldn&#8217;t in the original, but I can make a much better educated guess in the enhanced image:</p>
<p><img class="aligncenter size-full wp-image-3131" alt="window-cars" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/window-cars.jpg" width="600" height="300" /></p>
<p>OK, let&#8217;s take a look at one more. In the enhanced photo on the right, you can see much more detail&#8230; everything from the brick patterns, to street signs, to details on people and objects.</p>
<div id="attachment_3130" class="wp-caption aligncenter" style="width: 610px"><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/street-full.jpg" target="_blank"><img class="size-full wp-image-3130" alt="Click to view full size image" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/street-small.jpg" width="600" height="400" /></a><p class="wp-caption-text">Click to view full size image</p></div>
<p>While you still can’t read the entire law office sign, you can certainly see more detail in both the sign and the surroundings.</p>
<p>.</p>
<p><img class="aligncenter size-full wp-image-3129" alt="street-sign" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/street-sign.jpg" width="600" height="300" /></p>
<p>You can also make out much more detail on people, doorways to buildings, flowers, and leaves on the trees.</p>
<p><img class="aligncenter size-full wp-image-3128" alt="street-people" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/street-people.jpg" width="600" height="300" /></p>
<p>Again, The only changes that I have made are camera shake correction and minor color/contrast corrections. There have been no other modifications made to these images.</p>
<p>All of my test images have fairly significant shake blurs. Due to the extreme amount of blur, there are some visual artifacts. Any images that have a less extreme blur will have fewer artifacts, with enhanced clarity.</p>
<p>You can reduce artifacts and improve the final output quality by experimenting with the Camera Shake Reduction options. You can create multiple regions for estimating blur, and adjust trace bounds, smoothing, and artifact suppression for each. You&#8217;ll likely need to experiment with the settings and try different permutations to achieve optimal results, but you&#8217;ll be amazed by the outcome.</p>
<div id="attachment_3137" class="wp-caption aligncenter" style="width: 316px"><img class="size-full wp-image-3137" alt="Camera Shake Reduction Options" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/2013-05-23_1624.png" width="306" height="420" /><p class="wp-caption-text">Camera Shake Reduction Options</p></div>
<p>It&#8217;s important to understand that while it can &#8220;work miracles&#8221; on some images, the Shake Reduction feature will not correct all blur in all types of images. If the blurring is because your image is simply out of focus, this probably won&#8217;t help. Again, it is intended to correct blurs caused by a shaky camera situation.</p>
<p>If you&#8217;re wondering how to get this feature, just go over to <a href="http://creative.adobe.com" target="_blank">creative.adobe.com</a> and become a Creative Cloud member today! Photoshop CC will be available in June, and you&#8217;ll be notified.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/05/24/shake-reduction-in-adobe-photoshop-cc/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>PhoneGap &amp; Android Studio</title>
		<link>http://www.tricedesigns.com/2013/05/16/phonegap-android-studio/</link>
		<comments>http://www.tricedesigns.com/2013/05/16/phonegap-android-studio/#comments</comments>
		<pubDate>Thu, 16 May 2013 15:11:10 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Cordova]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[PhoneGap]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cordova]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phonegap]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3091</guid>
		<description><![CDATA[Yesterday at GoogleIO, Google announced Android Studio, a new development environment for authoring Android applications. This is a great looking new IDE for Android, based off of IntelliJ IDEA, with some new Android-specific tools and features. You can read more about Android Studio on the Google Android Developers blog. One of my first tasks upon [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday at <a href="https://developers.google.com/events/io/" target="_blank">GoogleIO</a>, Google announced <a href="http://developer.android.com/sdk/installing/studio.html" target="_blank">Android Studio</a>, a new development environment for authoring Android applications. This is a great looking new IDE for Android, based off of <a href="http://www.jetbrains.com/idea/" target="_blank">IntelliJ IDEA</a>, with some new Android-specific tools and features. You can read more about Android Studio on the <a href="http://android-developers.blogspot.com/2013/05/android-studio-ide-built-for-android.html" target="_blank">Google Android Developers blog</a>.</p>
<p>One of my first tasks upon downloading Android Studio was to get a <a href="http://phonegap.com" target="_blank">PhoneGap</a> app up and running in it. Here&#8217;s how to get started. Note: I used <a href="http://phonegap.com/download/#" target="_blank">PhoneGap 2.7</a> to create a new project with the latest stable release, however you could use the same steps (minus the CLI create) to import an already-existing PhoneGap application. <span style="color: #ff0000;">Be sure to backup your existing project before doing so, just in case you have issues (Android Studio is still in beta/preview).</span></p>
<p>First, follow the <a href="http://docs.phonegap.com/en/2.7.0/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android" target="_blank">PhoneGap &#8220;Getting Started&#8221; instructions</a> all the way up to (and including) the command line invocation of the &#8220;create&#8221; script.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-3092" alt="01-cmd" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/01-cmd.jpg" width="600" height="286" /></p>
<p style="text-align: left;">Once you have the Java environment configured just run the create script to create a based PhoneGap project. In this case, I used the following command to create a new PhoneGap project:</p>
<pre class="brush: bash; title: ; notranslate">./create ~/Documents/dev/android_studio_phonegap com.tricedesigns.AndroidStudioPhoneGap AndroidStudioPhoneGap</pre>
<p style="text-align: left;">Next launch <a href="http://developer.android.com/sdk/installing/studio.html" target="_blank">Android Studio</a>. When the welcome screen appears, select the &#8220;Import Project&#8221; option.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3093" alt="02-welcome" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/02-welcome.jpg" width="531" height="400" /></p>
<p style="text-align: left;">Next, you&#8217;ll have to select the directory to import. Choose the directory for the PhoneGap project you just created via the command line tools.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3094" alt="03-select existing src" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/03-select-existing-src.jpg" width="361" height="400" /></p>
<p style="text-align: left;">Once you click &#8220;OK&#8221;, you will proceed through several steps of the import wizard. On the next screen, make sure that &#8220;Create project from existing sources&#8221; is selected, and click the &#8220;Next&#8221; button.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3095" alt="04-create from existing src" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/04-create-from-existing-src.jpg" width="464" height="400" /></p>
<p style="text-align: left;">You will next specify a project name and project location. Make sure that the project location is the same as the location you selected above (and used in the PhoneGap command line tools). I noticed that the default setting was to create a new directory, which you do not want. Once you&#8217;ve verified the name and location, click &#8220;Next&#8221;.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3096" alt="05-project location" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/05-project-location.jpg" width="464" height="400" /></p>
<p style="text-align: left;">On the next step, leave the default settings (everything checked), and click &#8220;Next&#8221;.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3097" alt="06-import project" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/06-import-project.jpg" width="464" height="400" /></p>
<p style="text-align: left;">Again, leave the default settings (everything checked), and click &#8220;Next&#8221;.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3098" alt="07-import project" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/07-import-project.jpg" width="464" height="400" /></p>
<p style="text-align: left;">Yet again, leave the default settings (everything checked), and click &#8220;Next&#8221;.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3099" alt="08-import project" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/08-import-project.jpg" width="464" height="400" /></p>
<p style="text-align: left;">For the last time, leave the default settings (everything checked), and click &#8220;Next&#8221;. This is the last one!</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3100" alt="09-import project" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/09-import-project.png" width="464" height="400" /></p>
<p style="text-align: left;">Next, review the frameworks detected. If it looks correct to you, click the &#8220;Finish&#8221; button.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3101" alt="10-import project" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/10-import-project.jpg" width="464" height="400" /></p>
<p style="text-align: left;">Android Studio should now open the full IDE/editor. You can just double click on a file in the &#8220;Project&#8221; tree to open it.</p>
<p style="text-align: center;"><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/11-android_studio.jpg"><img class="aligncenter  wp-image-3102" alt="11-android_studio" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/11-android_studio-1024x640.jpg" width="625" height="390" /></a></p>
<p style="text-align: left;">To run the project, you can either go to the &#8220;Run&#8221; menu and select &#8220;Run {project name}&#8221;, or click on the &#8220;Run&#8221; green triangle icon.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-3103" alt="12-run" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/12-run.jpg" width="459" height="126" /></p>
<p style="text-align: left;">This will launch the application in your configured environment (either emulator or on a device). You can see the new PhoneGap application running in the Android emulator in the screenshot below. If you&#8217;d like to change your &#8220;Run&#8221; configuration profile, go to the &#8220;Run&#8221; menu and select &#8220;Edit Configurations&#8221;, and you can create multiple launch configurations, or modify existing launch configurations.</p>
<p style="text-align: center;"><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/13-running.jpg"><img class="aligncenter  wp-image-3104" alt="13-running" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/13-running-1024x640.jpg" width="625" height="390" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/05/16/phonegap-android-studio/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Video Introduction to Adobe Creative Cloud</title>
		<link>http://www.tricedesigns.com/2013/05/14/video-introduction-to-adobe-creative-cloud/</link>
		<comments>http://www.tricedesigns.com/2013/05/14/video-introduction-to-adobe-creative-cloud/#comments</comments>
		<pubDate>Tue, 14 May 2013 20:01:23 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Creative Cloud]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[creative cloud]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3085</guid>
		<description><![CDATA[Here&#8217;s a great video introduction to Adobe Creative Cloud. I strongly recommend taking a moment to watch it if you have any questions about Creative Cloud, even if you&#8217;re already are a member.  It&#8217;s only two and a half minutes, so it won&#8217;t take much of your time. Enjoy!]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a great video introduction to<a href="http://creative.adobe.com" target="_blank"> Adobe Creative Cloud</a>. I strongly recommend taking a moment to watch it if you have any questions about Creative Cloud, even if you&#8217;re already are a member.  It&#8217;s only two and a half minutes, so it won&#8217;t take much of your time.</p>
<p><iframe src="http://www.youtube.com/embed/02MNiUbm_sc?rel=0" height="338" width="600" allowfullscreen="" frameborder="0"></iframe></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/05/14/video-introduction-to-adobe-creative-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started With Adobe Edge Web Fonts</title>
		<link>http://www.tricedesigns.com/2013/05/14/getting-started-with-adobe-edge-web-fonts/</link>
		<comments>http://www.tricedesigns.com/2013/05/14/getting-started-with-adobe-edge-web-fonts/#comments</comments>
		<pubDate>Tue, 14 May 2013 18:34:20 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe Edge Suite]]></category>
		<category><![CDATA[Creative Cloud]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[creative cloud]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Edge]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3080</guid>
		<description><![CDATA[Amongst the big announcements last week, you may not have noticed that the Adobe Edge Web Fonts got a huge upgrade too!  It&#8217;s now easier than ever to browse web fonts and include them into your own HTML experiences. All for free, with no Creative Cloud membership required! Check out the video below to see [...]]]></description>
				<content:encoded><![CDATA[<p>Amongst the <a href="http://www.tricedesigns.com/2013/05/08/adobes-exploration-in-cloud-enabled-hardware/" target="_blank">big</a> <a href="http://www.tricedesigns.com/2013/05/07/adobes-max-announcements/" target="_blank">announcements</a> last week, you may not have noticed that the <a href="http://edgewebfonts.adobe.com" target="_blank">Adobe Edge Web Fonts</a> got a huge upgrade too!  It&#8217;s now easier than ever to browse web fonts and include them into your own HTML experiences. All for free, with no Creative Cloud membership required!</p>
<div id="attachment_3081" class="wp-caption aligncenter" style="width: 610px"><a href="https://edgewebfonts.adobe.com/"><img class="size-full wp-image-3081" alt="Adobe Edge Web Fonts" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/webfonts.jpg" width="600" height="359" /></a><p class="wp-caption-text">Adobe Edge Web Fonts</p></div>
<p>Check out the video below to see the new interface in action:</p>
<p><iframe src="http://www.youtube.com/embed/YwAD_B11ACY?rel=0" height="338" width="600" allowfullscreen="" frameborder="0"></iframe></p>
<p>Also shown in the video is <a href="http://html.adobe.com/edge/code/" target="_blank">Adobe Edge Code</a> for live editing/previewing HTML in the browser.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/05/14/getting-started-with-adobe-edge-web-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe&#8217;s Exploration in Cloud-Enabled Hardware</title>
		<link>http://www.tricedesigns.com/2013/05/08/adobes-exploration-in-cloud-enabled-hardware/</link>
		<comments>http://www.tricedesigns.com/2013/05/08/adobes-exploration-in-cloud-enabled-hardware/#comments</comments>
		<pubDate>Wed, 08 May 2013 17:25:41 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Creative Cloud]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[AdobeMAX]]></category>
		<category><![CDATA[creative cloud]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3060</guid>
		<description><![CDATA[Another exciting announcement from the Adobe MAX first day keynote was Adobe&#8217;s explorations into cloud enabled hardware for creative processes. Adobe announced two exciting new pieces of creative hardware: Project Mighty and Project Napoleon. Project Mighty is a pressure sensitive pen that enables expressive drawing. However, it&#8217;s not *just* a pressure sensitive stylus/pen. Project Mighty knows who [...]]]></description>
				<content:encoded><![CDATA[<p>Another exciting announcement from the <a href="http://tv.adobe.com/watch/max-2013/a-creative-evolution/" target="_blank">Adobe MAX first day keynote</a> was Adobe&#8217;s explorations into cloud enabled hardware for creative processes. Adobe announced two exciting new pieces of creative hardware: <a href="http://blogs.adobe.com/conversations/2013/05/adobe-xd-explores-the-analog-future.html" target="_blank">Project Mighty and Project Napoleon</a>.</p>
<p><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/hero.png"><img class="aligncenter size-full wp-image-3061" alt="hero" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/hero.png" width="762" height="403" /></a></p>
<h1></h1>
<p><strong>Project Mighty</strong> is a pressure sensitive pen that enables expressive drawing. However, it&#8217;s not *just* a pressure sensitive stylus/pen. Project Mighty knows who you are, and is connected to Creative Cloud to enables quick access to your personalized <a href="http://kuler.adobe.com/" target="_blank">Kuler</a> themes, and a cloud-clipboard for copying assets across devices.</p>
<p><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/mighty.jpg"><img class="aligncenter size-full wp-image-3062" alt="mighty" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/mighty.jpg" width="600" height="341" /></a></p>
<h1></h1>
<p><strong>Project Napoleon</strong> is a tool designed to complement Project Mighty by bringing an analog experience back to the digital creation process. Project Napoleon is a drawing aid that enables the experience of a T-square or Triangle in the digital/tablet world.</p>
<p><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/napoleon.jpg"><img class="aligncenter size-full wp-image-3063" alt="napoleon" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/napoleon.jpg" width="600" height="344" /></a></p>
<p>You can check out both of these tools in action in this <a href="http://www.youtube.com/watch?v=DmHV0Wb69A4&amp;feature=player_embedded" target="_blank">excerpt from the Adobe MAX day-one keynote</a>:</p>
<p><iframe src="http://www.youtube.com/embed/DmHV0Wb69A4" height="338" width="600" allowfullscreen="" frameborder="0"></iframe></p>
<p>I strongly suggest checking out the <a href="http://blogs.adobe.com/conversations/2013/05/adobe-xd-explores-the-analog-future.html" target="_blank">Adobe Featured Blog</a> to learn more about both Project Mighty and Project Napoleon. You can also sign up to be notified and learn more about Adobe&#8217;s explorations into cloud enabled hardware at <a href="http://xdce.adobe.com/mighty/" target="_blank">http://xdce.adobe.com/mighty/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/05/08/adobes-exploration-in-cloud-enabled-hardware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe MAX Videos Now Available</title>
		<link>http://www.tricedesigns.com/2013/05/08/adobe-max-videos-now-available/</link>
		<comments>http://www.tricedesigns.com/2013/05/08/adobe-max-videos-now-available/#comments</comments>
		<pubDate>Wed, 08 May 2013 15:26:42 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Creative Cloud]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[AdobeMAX]]></category>
		<category><![CDATA[creative cloud]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3050</guid>
		<description><![CDATA[The keynotes and many of the session videos form Adobe MAX are now available online at tv.adobe.com/show/max-2013/, and are free for everyone to view. Keep in mind, not all videos are up yet, but will be added soon. Thanks to Ray for sharing on twitter! The first-day keynote focuses on Adobe&#8217;s evolution of Creative Cloud [...]]]></description>
				<content:encoded><![CDATA[<p>The keynotes and many of the session videos form <a href="http://max.adobe.com" target="_blank">Adobe MAX</a> are now available online at <a href="http://tv.adobe.com/show/max-2013/" target="_blank">tv.adobe.com/show/max-2013/</a>, and are free for everyone to view. <em>Keep in mind, not all videos are up yet, but will be added soon.</em></p>
<p>Thanks to <a href="http://www.raymondcamden.com/" target="_blank">Ray</a> for sharing on <a href="https://twitter.com/cfjedimaster/status/332149381971197952" target="_blank">twitter</a>!</p>
<p>The first-day keynote focuses on Adobe&#8217;s evolution of Creative Cloud and various product updates. The second day keynote focuses upon inspiration &#8211; do not miss this one.  I especially liked Erik Johansson and Rob Legatto&#8217;s segments.</p>
<h1>Day 1 Keynote: A Creative Evolution</h1>
<p><iframe title="AdobeTV Video Player" src="http://tv.adobe.com/embed/1217/18400/" height="345" width="600" allowfullscreen="" frameborder="0" scrolling="no"></iframe></p>
<p><span style="color: #888888;"><strong><span style="color: #000000;"><a href="http://tv.adobe.com/watch/max-2013/a-creative-evolution/" target="_blank">About This Episode</a>:</span> </strong>The process of where and how we create is dramatically changing thanks to major advancements in technology, and there has never been a more exciting time. Join Adobe CEO Shantanu Narayen, Adobe&#8217;s SVP and GM of Digital Media David Wadhwani, and a collection of Adobe visionaries across digital photography, web design, illustration, video and more as we unveil brand new creative workflows and capabilities. We&#8217;ll take a look at the present and set our sights on the endless possibilities in our creative future.</span></p>
<h1>Day 2 Keynote: Community Inspires Creativity</h1>
<p><iframe title="AdobeTV Video Player" src="http://tv.adobe.com/embed/1217/18405/" height="345" width="600" allowfullscreen="" frameborder="0" scrolling="no"></iframe></p>
<p><strong><span style="color: #000000;"><a href="http://tv.adobe.com/watch/max-2013/community-inspires-creativity/" target="_blank">About This Episode</a>: </span></strong><span style="color: #888888;">Join David Wadhwani, Adobe’s SVP and GM of Digital Media, as he welcomes four incredibly creative minds to explore how they foster creativity and approach their work. You will hear from Rob Legato, an Oscar winning visual effects supervisor; Paula Scher, an iconic graphic designer and illustrator; Erik Johansson, an up and coming photographer and retouch artist; and Phil Hansen, a constraint-based artist that believes limitations drive creativity. We think you’ll leave with more than a few new ideas to incorporate in your next creative project.</span></p>
<p><span style="color: #000000;">You can view all Adobe MAX 2013 session recordings online at: <a href="http://tv.adobe.com/show/max-2013/" target="_blank">http://tv.adobe.com/show/max-2013/</a> (Keep in mind, not all videos are up yet, but will be added soon).</span></p>
<p><strong>Update</strong>: Videos of MAX Sneaks also available via the <a href="https://www.youtube.com/playlist?list=PLD8AMy73ZVxXRHZvcj5WvsMopeNMcL_so" target="_blank">Adobe Creative Cloud Youtube Channel</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/05/08/adobe-max-videos-now-available/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adobe&#8217;s MAX Announcements &#8211; A Major Update To Creative Cloud</title>
		<link>http://www.tricedesigns.com/2013/05/07/adobes-max-announcements/</link>
		<comments>http://www.tricedesigns.com/2013/05/07/adobes-max-announcements/#comments</comments>
		<pubDate>Tue, 07 May 2013 20:40:44 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe Edge Suite]]></category>
		<category><![CDATA[Creative Cloud]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[creative cloud]]></category>
		<category><![CDATA[Edge]]></category>

		<guid isPermaLink="false">http://www.tricedesigns.com/?p=3022</guid>
		<description><![CDATA[Yesterday kicked off Adobe MAX, Adobe&#8217;s annual conference for designers and developers to converge and learn about the latest and greatest from Adobe and our community. In yesterday&#8217;s keynote, there were lots of big announcements. If you weren&#8217;t able to catch the keynote live, it will soon be available for viewing online. In the meantime, [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday kicked off <a href="http://max.adobe.com" target="_blank">Adobe MAX</a>, Adobe&#8217;s annual conference for designers and developers to converge and learn about the latest and greatest from Adobe and our community. In yesterday&#8217;s keynote, there were lots of big announcements. If you weren&#8217;t able to catch the keynote live, it will soon be <a href="http://www.max.adobe.com/sessions/online.html" target="_blank">available for viewing online</a>. In the meantime, I&#8217;ve tried to summarize some of the biggest announcements, so let&#8217;s get started&#8230;</p>
<h1>Major Update to Creative Cloud</h1>
<p>Basically, just about everything in the keynote is related to the major updates for Creative Cloud. This includes the vision and direction of Creative Cloud, and all of the tools and services that you are able to take advantage of with your Creative Cloud membership.</p>
<p>First and foremost, Adobe is shifting emphasis from packaged software releases to focusing on the Creative Cloud. From the <a href="http://www.adobe.com/aboutadobe/pressroom/pressreleases/201305/050613AdobeAcceleratesShifttotheCloud.html" target="_blank">press release</a>:</p>
<p style="padding-left: 30px;"><span style="color: #993300;">Adobe also announced that the company will focus creative software development efforts on its Creative Cloud offering moving forward.  While Adobe Creative Suite® 6 products will continue to be supported and available for purchase, the company has no plans for future releases of Creative Suite or other CS products. Focusing development on Creative Cloud will not only accelerate the rate at which Adobe can innovate but also broaden the type of innovation the company can offer the creative community.</span></p>
<p>The shift to Creative Cloud is great for more reasons than I could possibly list in one post. To start:</p>
<ol>
<li><span style="line-height: 14px;">Creative Cloud membership gives you the latest and greatest updates from Adobe, without an upgrade cost, and without having to wait for a boxed release cycle. As soon as updates to the tools are ready, you receive them.</span></li>
<li>Creative Cloud gives you the ability to have your content everywhere. Not only do you get a shared file space in the cloud that automatically synchs across your computers (complete with private folders and versioning), but you can also have creative applications on multiple computers, you can access your files on Creative Cloud from any device (including your phones and/or tablets), and your application settings can be synched with the cloud.</li>
<li>Creative Cloud membership makes it easy to share your work. You can share your work with the public (either through Creative Cloud sharing, or through Behance integration).</li>
</ol>
<p>I strongly suggest reading more about <a href="http://blogs.adobe.com/conversations/2013/05/big-day-1-news-at-max.html?scid=social7749884" target="_blank">Creative Cloud update here</a>, and learning about the <a href="http://www.adobe.com/cc/letter.html" target="_blank">vision for Creative Cloud</a>. There is a lot of rumor and misinformation also floating around, so please, please, please read <a href="http://blogs.adobe.com/dreamweaver/2013/03/5-myths-about-adobe-creative-cloud.html" target="_blank">5 Myths About Creative Cloud</a>, and be sure to check the <a href="http://www.adobe.com/products/creativecloud/faq.html" target="_blank">FAQ</a> if you have any additional questions. Or, just watch the video below, where fellow Adobe evangelist <a href="http://paultrani.com/" target="_blank">Paul Trani</a> debunks myths about Creative Cloud:</p>
<p><iframe src="http://www.youtube.com/embed/xADqehaGh2A?rel=0" height="338" width="600" allowfullscreen="" frameborder="0"></iframe></p>
<p>Contrary to <a href="http://en.wikipedia.org/wiki/Fear,_uncertainty_and_doubt" target="_blank">FUD</a> that is floating around the Internet, Creative Cloud is not about anti-piracy, it is not about price gouging, it is not about trying to control you. Creative Cloud is about providing you with the best tools and services to produce creative experiences, collaboration, and adding value to your workflow.</p>
<p>For an external (non-Adobe) viewpoint, check out what others have had to say:</p>
<ul>
<li><a href="http://www.forbes.com/sites/anthonykosner/2013/05/06/adobes-creative-cloud-and-the-expansive-future-of-the-digital-workplace/" target="_blank"><span style="line-height: 14px;">Forbes: Adobe&#8217;s Creative Cloud And The Expansive Future Of The Digital Workplace<br />
</span></a></li>
<li><a href="http://www.pcmag.com/article2/0,2817,2418640,00.asp" target="_blank">PC Mag: A Killer Event</a></li>
<li><span style="line-height: 14px;"><a href="http://scottkelby.com/2013/my-take-on-adobes-announcements-yesterday-at-the-max-conference/?utm_source=twitterfeed&amp;utm_medium=twitter" target="_blank">Scott Kelby&#8217;s take on Adobe&#8217;s Announcements</a></span></li>
</ul>
<p>I&#8217;ll cover more product specific updates in Creative Cloud tools later in this post, but check out the &#8220;<a href="http://www.adobe.com/products/creativecloud/new-features.html" target="_blank">new features</a>&#8221; details to get an idea of what is now available. Or check out fellow evangelist Terry White&#8217;s videos on &#8220;<a href="http://terrywhite.com/whats-new-in-photoshop-cc-illustrator-cc-indesign-cc-and-muse-cc/?wt=3" target="_blank">What’s New In Photoshop CC, Illustrator CC, InDesign CC and Muse CC</a>&#8220;.</p>
<h1>Improved Desktop Presence</h1>
<p>In addition to product updates, the Creative Cloud update also features an improved desktop presence for managing your tools and files.</p>
<p><a href="http://www.tricedesigns.com/wp-content/uploads/2013/05/Creative-Cloud-Feature-Reveal-FINAL-12.jpg"><img class="aligncenter size-full wp-image-3031" alt="Creative-Cloud-Feature-Reveal-FINAL-12" src="http://www.tricedesigns.com/wp-content/uploads/2013/05/Creative-Cloud-Feature-Reveal-FINAL-12.jpg" width="550" height="278" /></a></p>
<p>From the <a href="http://blogs.adobe.com/creativecloud/huge-announcements-at-max/" target="_blank">Creative Cloud team blog</a>, this desktop update will allow you to:</p>
<ul>
<li><span style="line-height: 1.714285714; font-size: 1rem;">Manage your files and sync them to the Cloud</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem;">Install and update your desktop software</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem;">Install and manage your Typekit desktop fonts</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem;">Keep track of everything in your creative work, from Behance notifications, to collaboration invitations, and even updates to your CC apps — all in a single activity stream.</span></li>
</ul>
<h1>Behance Integration</h1>
<p>It&#8217;s now easier than ever to showcase your work and gather feedback. You can now publish to <a href="http://www.behance.net/" target="_blank">Behance</a> directly from within Creative Cloud. You can learn more about <a href="https://www.adobe.com/products/creativecloud/behance-community.html" target="_blank">Creative Cloud and Behance community integration on adobe.com</a>, but here&#8217;s a sampling:</p>
<ul>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Share a work in progress from your Creative Cloud files or within Adobe® Photoshop® and get immediate feedback from the creative community.</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">As you perfect your work, upload new versions to Behance. The community can follow the evolution of your project and post comments along the way.</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Broadcast your work on Twitter, LinkedIn, and Facebook from within your Creative Cloud tools, all powered by Behance. All in just a few clicks.</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Creative Cloud keeps track of who&#8217;s following you, who appreciates your work, what&#8217;s happening with the creatives you&#8217;re following, and more — all in a single activity stream.</span></li>
</ul>
<p>Creative Cloud membership also comes with the pro features of Behance, including ProSite:</p>
<p style="padding-left: 30px;"><span style="color: #993300;">ProSite — a fully customizable professional portfolio with your own unique URL. And with Creative Cloud integration, keeping your portfolio up to date simply becomes part of your usual workflow.</span></p>
<h1>TypeKit Fonts on the Desktop</h1>
<p>As part of your Creative Cloud membership, you get access to 175 TypeKit fonts, which can be easily installed through the Creative Cloud desktop application, and are available to your entire desktop. If you were to license each of these fonts individually, it would cost you roughly $25,000. With Creative Cloud membership, you get these with no additional cost. You can read more about <a href="http://blog.typekit.com/2013/05/06/sneak-preview-syncing-fonts-to-your-desktop/" target="_blank">TypeKit and desktop font synching on the typekit blog</a>, and see a preview of it in action in the video below:</p>
<p><iframe src="http://www.youtube.com/embed/DOCDKANInU0?rel=0" height="320" width="600" allowfullscreen="" frameborder="0"></iframe></p>
<h1>Product Updates</h1>
<p>There are hundreds of new or updated features to Adobe&#8217;s desktop applications and services with the latest Creative Cloud update. Here are just a few highlights from the <a href="http://blogs.adobe.com/creativecloud/huge-announcements-at-max/" target="_blank">Creative Cloud Team Blog</a>:</p>
<ul>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Camera Shake Reduction in Photoshop CC “deblurs” an image by restoring sharpness to images blurred by camera shake</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">ACR8 is now available as a filter in Photoshop CC; you can apply Adobe Camera Raw processing to any of the layers in your document</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Touch Type tool in Illustrator CC allows you to design with type in a powerful new way by manipulating characters like individual objects. You can also use multitouch devices as well as a mouse or stylus</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">CSS Designer in Dreamweaver CC provides the most up-to-date CSS and properties available via an intuitive visual editing tool</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Editing Finesse in Premiere Pro CC focuses on sleek design and customization capabilities, combined with new editing features and keyboard-driven editing improvements</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Live 3D Pipeline with Cinema4D in After Effects CC lets you add 3D objects to scenes and eliminate intermediate rendering between applications</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Parallax Scrolling in Muse CC allows you to create stunning effects with just a few mouse clicks—images and elements move in different directions at different speeds when scrolling</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Motion Paths in Edge Animate allows you to animate elements along totally customizable paths</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">A completely modernized architecture in InDesign and Flash Pro has been rebuilt from the ground up to be faster and more reliable, with a streamlined UI</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">InDesign has a great new QR code creator</span></li>
<li><span style="line-height: 1.714285714; font-size: 1rem; color: #993300;">Flash Pro has real-time drawing and live preview</span></li>
</ul>
<p>Check out the links below to see all of the new features for each one of the Creative Cloud tools that will be available in June (there are too many for me to list individually on this post):</p>
<ul>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/photoshop/features.html" target="_blank">Adobe Photoshop CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/aftereffects/features.html" target="_blank">Adobe After Effects CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/premiere/features.html" target="_blank">Adobe Premiere Pro CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/indesign/features.html" target="_blank">Adobe InDesign CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/flash/features.html" target="_blank">Adobe Flash Professional CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/illustrator/features.html" target="_blank">Adobe Illustrator CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/muse/features.html" target="_blank">Adobe Muse CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/dreamweaver/features.html" target="_blank">Adobe Dreamweaver CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/audition/features.html" target="_blank">Adobe Audition CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/speedgrade/features.html" target="_blank">Adobe SpeedGrade CC</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/prelude/features.html" target="_blank">Adobe Prelude CC</a></li>
</ul>
<p>In addition to Creative Cloud tools, there have also been updates to the Edge Tools and Services. <a href="http://html.adobe.com/edge/webfonts/" target="_blank">Adobe Edge Web Fonts</a> has an updated interface on online presence available now, and other Edge Tools have updates that will arrive in June. You can read more about these tools below:</p>
<ul>
<li><a href="http://html.adobe.com/edge/animate/" target="_blank"><span style="line-height: 14px;">Adobe Edge Animate CC</span></a></li>
<li><a href="http://html.adobe.com/edge/code/" target="_blank">Adobe Edge Code CC</a></li>
<li><a href="http://html.adobe.com/edge/reflow/" target="_blank">Adobe Edge Reflow CC</a></li>
</ul>
<p>And there have been updates to Adobe&#8217;s touch apps:</p>
<ul>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="https://itunes.apple.com/us/app/adobe-ideas/id364617858" target="_blank">Adobe Ideas</a></li>
<li><a style="line-height: 1.714285714; font-size: 1rem;" href="http://www.adobe.com/products/kuler.html" target="_blank">Adobe Kuler</a><span style="line-height: 1.714285714; font-size: 1rem;"> (coming soon)</span></li>
</ul>
<h1>Creative Cloud</h1>
<p>You can always stay on top of the latest updates to Creative Cloud on the <a href="http://blogs.adobe.com/creativecloud/" target="_blank">Creative Cloud Team blog</a>. If you&#8217;re not already a member of Creative Cloud, you really should check it out at <a href="http://creative.adobe.com" target="_blank">creative.adobe.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tricedesigns.com/2013/05/07/adobes-max-announcements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.004 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-06-17 22:05:25 -->
