<?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>Juan Sanchez</title>
	<atom:link href="http://www.juanchez.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.juanchez.com</link>
	<description>Breakin&#039; necks and cashin&#039; checks.</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:30:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Spark Skins for Flex 3 Components</title>
		<link>http://www.juanchez.com/2010/07/30/using-spark-skins-for-flex-3-components/</link>
		<comments>http://www.juanchez.com/2010/07/30/using-spark-skins-for-flex-3-components/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 17:30:48 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[flex 4]]></category>
		<category><![CDATA[skins]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=186</guid>
		<description><![CDATA[A while back I helped create a set of custom themes for Flex 4 that worked for both Flex 3 and Flex 4. I wrote about this process for another article, but I thought I&#8217;d share it here as well. Thing may have changed since we used this approach, so let me know if you [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I helped create a set of custom themes for Flex 4 that worked for both Flex 3 and Flex 4. I wrote about this process for another article, but I thought I&#8217;d share it here as well. Thing may have changed since we used this approach, so let me know if you have issues.</p>
<p>When creating a theme it is important to consider that the Flex 4 SDK also allows for Flex 3 components to be used side-by-side with Flex 4 components. This means that skin artwork you create for Flex 4 components won’t get applied to Flex 3 components. However, there is a way to repurpose your pixel-perfect artwork for use with Flex 3 component skins. Be warned though, getting things to work properly will require some technical steps in MXML.</p>
<p>Part of the Flex 4 SDK includes a special skin class called SparkSkinForHalo. This class allows  you to repurpose your skin artwork and assign it to a Flex 3 component. While it does take an additional effort to account for the Flex 3 components, the additional skins will help insure consistency for both Flex 3 and Flex 4 components. Let’s see how it works.</p>
<ol>
<li>Create a new folder and name it HaloSkins.</li>
<li>Create a new file called HaloButtonSkin.mxml and save it into the HaloSkins folder you just created.</li>
<li>Open the MXML file that contains your Button Skin artwork for your Spark components.</li>
<li>Copy the all the markup and paste it into the HaloButtonSkin.mxml file replacing any markup that might be there.</li>
<li>Locate the line that uses the s:Skin tag and in its place use local:SparkSkinForHalo. You also need to change the State tags from s:states to local:states and add a definition for the local namespace.</li>
</ol>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;"><span style="color: #7400FF;">&lt;local:SparkSkinForHalo</span> xmlns:s=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span> xmlns:fx=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span> xmlns:d=<span style="color: #ff0000;">&quot;http://ns.adobe.com/fxg/2008/dt&quot;</span> xmlns:ai=<span style="color: #ff0000;">&quot;http://ns.adobe.com/ai/2009&quot;</span> xmlns:flm=<span style="color: #ff0000;">&quot;http://ns.adobe.com/flame/2008&quot;</span> xmlns:local=<span style="color: #ff0000;">&quot;mx.skins.spark.*&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;fx:Metadata</span><span style="color: #7400FF;">&gt;</span></span>[HostComponent(&quot;spark.components.Button&quot;)]<span style="color: #000000;"><span style="color: #7400FF;">&lt;/fx:Metadata</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;s:states</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;local:State</span> name=<span style="color: #ff0000;">&quot;up&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;local:State</span> name=<span style="color: #ff0000;">&quot;over&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;local:State</span> name=<span style="color: #ff0000;">&quot;down&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;local:State</span> name=<span style="color: #ff0000;">&quot;disabled&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:states</span><span style="color: #7400FF;">&gt;</span></span></pre></td></tr></table></div>

<ol>
<li>Delete the RichText, which is the label for the Button, from the skin. The reason you want to do this is that Halo components already have a label defined as part of the component.</li>
<li>That’s all you need to do for the skin. Now, you need to assign the skin to the Flex 3 Button.</li>
<li>Go into your CSS file and create a new style declaration for a Button with the MX prefix.</li>
</ol>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* CSS file */</span>
<span style="color: #a1a100;">@namespace s &quot;library://ns.adobe.com/flex/spark&quot;;</span>
<span style="color: #a1a100;">@namespace mx &quot;library://ns.adobe.com/flex/halo&quot;;</span>
&nbsp;
mx|Button
<span style="color: #00AA00;">&#123;</span>
skin<span style="color: #00AA00;">:</span> ClassReference<span style="color: #00AA00;">&#40;</span><span style="color: #ff0000;">'components.HaloSkins.HaloButtonSkin'</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<ol>
<li>All that’s left is to test the skin. Add an mx:Button to your primary view and run your application. You should see that the Flex 3 Button looks the same as the Flex 4 Button. You may need to define the mx namespace.</li>
</ol>
<p>Now that you know how to reuse your skin artwork you can take the same steps to make sure all your components for Spark and Halo look the same. For an extensive view at how to do this across all components you can refer to the sample skins provided as part of the latest builds of the Flex 4 SDK.</p>
<p><strong>Note:</strong> You can make a custom theme using only CSS, but keep in mind that the CSS properties for Spark skins and Halo skins are quite different. Refer to the documentation for both SDKs to learn about what styles are supported or take a look at some of the sample CSS themes provided with recent builds of the Flex 4 SDK.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/07/30/using-spark-skins-for-flex-3-components/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HomeShelf</title>
		<link>http://www.juanchez.com/2010/06/21/homeshelf/</link>
		<comments>http://www.juanchez.com/2010/06/21/homeshelf/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 16:43:28 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[homescreen]]></category>
		<category><![CDATA[homeshelf]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=183</guid>
		<description><![CDATA[I&#8217;m trying a little experiment called HomeShelf. It&#8217;s basically a Tumblog that is dedicated to sharing images you can use for your iPhone&#8217;s Homescreen wallpaper that makes it look like shelves. I&#8217;ve made the first one based on the iBooks shelves, but there&#8217;s plenty of room for more creativity. Check it out won&#8217;t you? HomeShelf

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying a little experiment called HomeShelf. It&#8217;s basically a Tumblog that is dedicated to sharing images you can use for your iPhone&#8217;s Homescreen wallpaper that makes it look like shelves. I&#8217;ve made the first one based on the iBooks shelves, but there&#8217;s plenty of room for more creativity. Check it out won&#8217;t you? <a href="http://homeshelf.tumblr.com/">HomeShelf</a></p>
<p><a href="http://www.juanchez.com/wp-content/uploads/2010/06/image.png"><img class="aligncenter size-full wp-image-184" title="HomeShelf Wood" src="http://www.juanchez.com/wp-content/uploads/2010/06/image.png" alt="" width="320" height="480" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/06/21/homeshelf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AppleTV: A New TV Experience?</title>
		<link>http://www.juanchez.com/2010/06/11/appletv-a-new-tv-experience/</link>
		<comments>http://www.juanchez.com/2010/06/11/appletv-a-new-tv-experience/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 23:11:26 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[wwdc]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=180</guid>
		<description><![CDATA[WWDC 10 is over. I&#8217;m at Starbuck&#8217;s waiting to grab a cab to the airport and am reflecting on the last week. It was great learning about the new technology that was just skimmed at the keynote, but one thing is missing. It&#8217;s something a lot of people were hoping to hear about; an update [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.juanchez.com/wp-content/uploads/2010/06/appletv.jpg"><img class="size-full wp-image-181 alignright" title="appletv" src="http://www.juanchez.com/wp-content/uploads/2010/06/appletv.jpg" alt="" width="161" height="158" /></a>WWDC 10 is over. I&#8217;m at Starbuck&#8217;s waiting to grab a cab to the airport and am reflecting on the last week. It was great learning about the new technology that was just skimmed at the keynote, but one thing is missing. It&#8217;s something a lot of people were hoping to hear about; an update to AppleTV. However, I think to a certain degree we&#8217;ve seen the components that could make Apple TV an entirely new TV experience. In the end, the TV may be the last screen Apple attempts to dominate and they may succeed. Let me explain.</p>
<p>Think about your current television. What&#8217;s great about it? Well, a great thing about it is that it can provide an awesome viewing experience. You can be instantly immersed in that experience with very minimal distraction.</p>
<p>Now, what sucks about? For me, it&#8217;s finding content. Endless scrolling lists, crazy remote controls and complicated set-top boxes. Granted, I only look forward to a few shows a week, but still, when I&#8217;m looking to watch something and tune in I immediately get overwhelmed. I just want to view stuff that&#8217;s relevant as quickly as possible.</p>
<p>Some solutions I&#8217;ve seen try to solve this by allowing you to search. Which may be part of the solution, but I really don&#8217;t want to have a keyboard on my lap to go with any remote controls. I&#8217;d rather just get rid of all that.</p>
<p>So, what&#8217;s the solution? As I mentioned, some of the technology we may have heard about may already be prepping us for a solution, beginning with the apps on your phone. Think about it? The apps you choose to download already begin to create a profile of your interests. Imagine if there was a way for those apps to display their content on a TV as easy as going into landscape mode or taking a picture.</p>
<p><a href="http://www.juanchez.com/wp-content/uploads/2010/06/realracing.jpg"><img class="aligncenter size-full wp-image-182" title="realracing" src="http://www.juanchez.com/wp-content/uploads/2010/06/realracing.jpg" alt="" width="404" height="296" /></a></p>
<p>We browse a ton of content on our iPhones, iPads and iPods. Wouldn&#8217;t it be cool, for example, if I were in the ABC Player app and while I&#8217;m watching a show I could tap a &#8220;Play on AppleTV&#8221; button, which would immediately detect my AppleTV device and start playing that content right on the TV? Better yet, what if I&#8217;m playing Real Racing and want to switch my view to play on the TV? Simple, tap the &#8220;View on AppleTV&#8221; button and now my iDevice turns into a controller and my view is now on the TV!</p>
<p>How would this work? We&#8217;ve already seen something like this on the iPad when you connect it to an external display. When you do, a completely different viewing version of the app is shown on the external display, while you go into a different mode of the app on the iDevice. This same thing would be great for TV because the iDevice could turn into the most appropriate thing for the way it&#8217;s being used. The iPad becomes the game controller or the iPad becomes the remote.</p>
<p>There&#8217;s one thing missing though; the hardware/software that connects the iDevice to the TV. How about that UI-less device people are buzzing about that is supposedly priced for $99? That device could sync what apps you have (wirelessly I hope) and when you trigger a bit of content you want to engage with on the TV, that triggers the AppleTV hardware with the app and you&#8217;re instantly in game/viewing mode, whether it&#8217;s content from the device or streaming.</p>
<p>Throw in GameCenter, iAds, an awesome OS, the ability for publishers to dictate content, a ton of devices ready to go and you may have that go-to-market strategy Steve mentioned. With it, there&#8217;s an opportunity to bring a whole new level of engagement to the TV. Would you pay $99 to get that? I would.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/06/11/appletv-a-new-tv-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile UX Design Slides</title>
		<link>http://www.juanchez.com/2010/05/27/mobile-ux-design-slides/</link>
		<comments>http://www.juanchez.com/2010/05/27/mobile-ux-design-slides/#comments</comments>
		<pubDate>Thu, 27 May 2010 19:33:52 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Speaking]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[slides]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=179</guid>
		<description><![CDATA[Here are my slides from a presentation I gave on Mobile UX Design at the Boulder Digital Works. There was a lot of great questions and discussions and it was great to formalize some more thoughts I have on mobile.
Mobile UX Design
View more presentations from Juan Sanchez.

Side note: I used a lot of screenshots from [...]]]></description>
			<content:encoded><![CDATA[<p>Here are my slides from a presentation I gave on Mobile UX Design at the Boulder Digital Works. There was a lot of great questions and discussions and it was great to formalize some more thoughts I have on mobile.</p>
<div id="__ss_4332151" style="width: 425px;"><strong><a title="Mobile UX Design" href="http://www.slideshare.net/juanchez/mobile-ux-design">Mobile UX Design</a></strong><object id="__sse4332151" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=bdw-mobileuxdesign-002-100527141909-phpapp02&amp;stripped_title=mobile-ux-design" /><param name="name" value="__sse4332151" /><param name="allowfullscreen" value="true" /><embed id="__sse4332151" type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=bdw-mobileuxdesign-002-100527141909-phpapp02&amp;stripped_title=mobile-ux-design" name="__sse4332151" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/juanchez">Juan Sanchez</a>.</div>
</div>
<p>Side note: I used a lot of screenshots from iPhone and iPad because it&#8217;s what I had access to, but a lot of this stuff applies to other mobile platforms.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/05/27/mobile-ux-design-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad Lockscreen Options</title>
		<link>http://www.juanchez.com/2010/05/02/ipad-lockscreen-options/</link>
		<comments>http://www.juanchez.com/2010/05/02/ipad-lockscreen-options/#comments</comments>
		<pubDate>Sun, 02 May 2010 04:32:49 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[lockscreen]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=176</guid>
		<description><![CDATA[If you have an iPad you know that on the lockscreen there&#8217;s a button you can tap to turn your iPad into a digital picture frame. I was thinking, why limit it to just pictures? What if you could turn the iPad into a jukebox, clock display, etc. right from the lockscreen? Here&#8217;s a mock [...]]]></description>
			<content:encoded><![CDATA[<p>If you have an iPad you know that on the lockscreen there&#8217;s a button you can tap to turn your iPad into a digital picture frame. I was thinking, why limit it to just pictures? What if you could turn the iPad into a jukebox, clock display, etc. right from the lockscreen? Here&#8217;s a mock up:</p>
<div id="attachment_178" class="wp-caption aligncenter" style="width: 440px"><a href="http://www.juanchez.com/wp-content/uploads/2010/05/Lockscreen-001.jpg"><img class="size-large wp-image-178  " title="iPad Lockscreen Options" src="http://www.juanchez.com/wp-content/uploads/2010/05/Lockscreen-001-1024x797.jpg" alt="" width="430" height="335" /></a><p class="wp-caption-text">Menu to select iPad Lockscreen Options.</p></div>
<p>Basically, instead of tapping the picture icon, there would be a more universal icon. When you tap on that you would see a popover with options for apps that support the lockscreen. These would be optimized views that did very specific things. For example, selecting &#8220;iPod&#8221; would shuffle songs like a jukebox, like this:</p>
<div id="attachment_177" class="wp-caption aligncenter" style="width: 440px"><a href="http://www.juanchez.com/wp-content/uploads/2010/05/Lockscreen-002.jpg"><img class="size-large wp-image-177  " title="iPod Lockscreen for iPad" src="http://www.juanchez.com/wp-content/uploads/2010/05/Lockscreen-002-1024x797.jpg" alt="" width="430" height="335" /></a><p class="wp-caption-text">The iPod App as a Lockscreen</p></div>
<h3>Other examples</h3>
<p>Any app could be packaged with the optimized lockscreen view. These views would do one thing and provide no options besides switching to another lockscreen version of an app (and unlocking your iPad). Here&#8217;s some other examples:</p>
<p><strong>QlockTwo</strong> &#8211; This is a <a href="http://www.qlocktwo.com/">typographic clock app</a>. It would be awesome to be able to have this as an option and run as a clock on my desk while I&#8217;m not using my iPad.</p>
<p><strong>Twitterific</strong> &#8211; This could show your tweet stream, but I think that might be a little extreme. It could show a single tweet from your tweet stream or maybe display your tweet stream in a different way that didn&#8217;t feel overwhelming.</p>
<p><strong>This Day in History</strong> &#8211; Display a single view with a list of things that happened this day in history or maybe cycle through different events for that occurred on that day.</p>
<p><strong>Dictionary.com</strong> &#8211; Could show the word of the day or cycle through a different word every hour.</p>
<p>Sure, something like this shortens the life of your monitor cause your screen would be on a lot more. Still, I thought it was worth mocking up.</p>
<p>You can see the images in higher resolution on <a href="http://www.flickr.com/photos/mostlyalso/tags/lockscreen/">my Flickr page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/05/02/ipad-lockscreen-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go Gamestorming</title>
		<link>http://www.juanchez.com/2010/04/28/go-gamestorming/</link>
		<comments>http://www.juanchez.com/2010/04/28/go-gamestorming/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 18:05:02 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[gamestorm]]></category>
		<category><![CDATA[ideas]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=175</guid>
		<description><![CDATA[Need some ways to draw information from clients or internal groups? Check out http://www.gogamestorm.com/
knowledge games: games designed to help you get more innovative, creative results in your work. We’ll show you not only how to play knowledge games but how to design them so they fit your own specific work goals.
]]></description>
			<content:encoded><![CDATA[<p>Need some ways to draw information from clients or internal groups? Check out <a href="http://www.gogamestorm.com/">http://www.gogamestorm.com/</a></p>
<blockquote><p>knowledge games: games designed to help you get more innovative, creative results in your work. We’ll show you not only how to play knowledge games but how to design them so they fit your own specific work goals.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/04/28/go-gamestorming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad Idea: Peeking at Apps</title>
		<link>http://www.juanchez.com/2010/04/28/ipad-idea-peeking-at-apps/</link>
		<comments>http://www.juanchez.com/2010/04/28/ipad-idea-peeking-at-apps/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 02:03:06 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[idea]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[peek]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=169</guid>
		<description><![CDATA[As I&#8217;ve been working with the iPad I&#8217;ve been intrigued by some of the UI differences between it and the iPhone. One of the first things you notice when playing with the iPad is the popovers that display in context of the element you&#8217;ve interacted with. On an iPhone, the same interaction would take you [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve been working with the iPad I&#8217;ve been intrigued by some of the UI differences between it and the iPhone. One of the first things you notice when playing with the iPad is the popovers that display in context of the element you&#8217;ve interacted with. On an iPhone, the same interaction would take you to a new view.</p>
<p><a style="text-decoration: none;" href="http://www.juanchez.com/wp-content/uploads/2010/04/popover.jpg"><img class="aligncenter size-full wp-image-174" title="popover" src="http://www.juanchez.com/wp-content/uploads/2010/04/popover.jpg" alt="" width="474" height="130" /></a></p>
<p>This got me thinking about how popovers might be used outside of applications and in the homescreens where your app icons live. Specifically, I was thinking of how I could use popovers to peek at specific content from an app instead of launching the entire application. For example, peek at recent emails, see what AIM buddies are online, etc.</p>
<p>Sure I could fire up the application and navigate to the information I&#8217;m interested in, but I&#8217;m lazy and am not interested in doing that. So, here&#8217;s some mockups of what I&#8217;m thinking. The popover could be displayed by double-tapping the app icon.</p>
<div id="attachment_171" class="wp-caption aligncenter" style="width: 452px"><a href="http://www.juanchez.com/wp-content/uploads/2010/04/Twitter.jpg"><img class="size-full wp-image-171 " title="Twitter" src="http://www.juanchez.com/wp-content/uploads/2010/04/Twitter.jpg" alt="" width="442" height="560" /></a><p class="wp-caption-text">Peeking at Twitterific to see only recent tweets</p></div>
<div id="attachment_172" class="wp-caption aligncenter" style="width: 452px"><a href="http://www.juanchez.com/wp-content/uploads/2010/04/AIM.jpg"><img class="size-full wp-image-172 " title="AIM" src="http://www.juanchez.com/wp-content/uploads/2010/04/AIM.jpg" alt="" width="442" height="560" /></a><p class="wp-caption-text">Peek at AIM to see who&#39;s online</p></div>
<div id="attachment_170" class="wp-caption aligncenter" style="width: 452px"><a href="http://www.juanchez.com/wp-content/uploads/2010/04/Weather.jpg"><img class="size-full wp-image-170 " title="Weather" src="http://www.juanchez.com/wp-content/uploads/2010/04/Weather.jpg" alt="" width="442" height="560" /></a><p class="wp-caption-text">See what the current weather is like</p></div>
<p>The person who creates the app can dictate what shows up in the Peek functionality of the app, but the goal would be to have a minimal amount of interactivity. Otherwise, what&#8217;s the point? The user could just launch the application.</p>
<p>It would also be important to keep content to a minimum. For example, don&#8217;t show an entire Twitter stream, just show the most recent tweets. Maybe even limit it and have the option to see more tweets that launches the app.</p>
<p>Customization of each Peek view might be interesting, but it may not be necessary. For example, setting Twitterific to show recent replies versus recent tweets.</p>
<h3>Dashboard and Widgets on the iPad</h3>
<p><a href="http://www.juanchez.com/wp-content/uploads/2010/04/dashboard.jpg"><img class="alignright size-full wp-image-173" title="dashboard" src="http://www.juanchez.com/wp-content/uploads/2010/04/dashboard.jpg" alt="" width="115" height="121" /></a>When you think about it, this feature mimics in some ways the Dashboard in OS X. So, if these views are already created, why not have a Dashboard app on the iPad?</p>
<p>To add these Peek views as widgets to the Dashboard app you could drag the icons onto the Dashboard app icon similar to the way folders work in iPhone OS 4. The only difference would be that the Peek views appear in the Dashboard now and the actual apps themselves don&#8217;t leave the homescreen.</p>
<h3>It&#8217;s just an idea</h3>
<p>Like any quickly executed idea I&#8217;m sure there&#8217;s flaws in this, but I thought it&#8217;d be fun to mock up. You can see the full resolution mockups on <a href="http://www.flickr.com/photos/mostlyalso/tags/peek/">my Flickr page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/04/28/ipad-idea-peeking-at-apps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mobile Monday: Mobile UI Design</title>
		<link>http://www.juanchez.com/2010/04/27/mobile-monday-mobile-ui-design/</link>
		<comments>http://www.juanchez.com/2010/04/27/mobile-monday-mobile-ui-design/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 18:14:46 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Speaking]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=168</guid>
		<description><![CDATA[Here&#8217;s a portion of my presentation from yesterday at Mobile Monday Colorado. Thanks to everyone who came out and for all the great questions.
Mobile Monday
View more presentations from Juan Sanchez.

]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a portion of my presentation from yesterday at Mobile Monday Colorado. Thanks to everyone who came out and for all the great questions.</p>
<div id="__ss_3873243" style="width: 425px;"><strong><a title="Mobile Monday" href="http://www.slideshare.net/juanchez/mobile-monday">Mobile Monday</a></strong><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=mobilemonday-002-100427130659-phpapp01&amp;stripped_title=mobile-monday" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=mobilemonday-002-100427130659-phpapp01&amp;stripped_title=mobile-monday" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="padding: 5px 0 12px;">View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/juanchez">Juan Sanchez</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/04/27/mobile-monday-mobile-ui-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ideate: A Sketching Application for the iPad</title>
		<link>http://www.juanchez.com/2010/04/03/ideate-a-sketching-application-for-the-ipad/</link>
		<comments>http://www.juanchez.com/2010/04/03/ideate-a-sketching-application-for-the-ipad/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 22:30:27 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[effectiveui]]></category>
		<category><![CDATA[ideate]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=162</guid>
		<description><![CDATA[
Communicating thoughts and ideas can be one of the biggest challenges in an industry that relies so heavily on visual interpretation and recognition. If you’re working on an idea by yourself, with a colleague or a client, it’s one thing to see an idea in your mind and another to get it out for others [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-163 alignright" title="Ideate Icon" src="http://www.juanchez.com/wp-content/uploads/2010/04/ideate-icon.png" alt="" width="121" height="122" /></p>
<p>Communicating thoughts and ideas can be one of the biggest challenges in an industry that relies so heavily on visual interpretation and recognition. If you’re working on an idea by yourself, with a colleague or a client, it’s one thing to see an idea in your mind and another to get it out for others to evaluate. As a UX designer, sketching is a daily necessity. It’s one of the most valuable tools you can wield.</p>
<p>At <a href="http://www.effectiveui.com">EffectiveUI</a>, we recognized just how important sketching is that we made custom EffectiveUI sketchbooks. They&#8217;ve evolved over the years in design and purpose. These sketchbooks were extremely popular within the company and beyond. When we&#8217;d visit clients they&#8217;d come to meeting with their EffectiveUI sketchbook in hand.</p>
<p style="text-align: center;"><a href="http://www.juanchez.com/wp-content/uploads/2010/04/81697687.jpg"><img class="aligncenter size-full wp-image-167" title="EffectiveUI Sketchbooks" src="http://www.juanchez.com/wp-content/uploads/2010/04/81697687.jpg" alt="" width="360" height="270" /></a></p>
<p>Then, along came the iPad. Everyone at EffectiveUI was excited about this new magical device. In fact, the concept for Ideate was born when Jonathan Branam gave me a call out of the blue exclaiming, &#8220;I want to build an iPad application&#8221;. After some brainstorming we decided to bring all the usefulness of our EffectiveUI sketchbooks to the iPad. We named the app &#8220;Ideate&#8221;.</p>
<p>Why take something so simply splendid and make it digital? Well, we wrestled with that a bit. Believe me, I love the smell of Sharpies as much as the next person. Give me a black pen and a highlighter and I can share ideas with the best of them. However, there are limitations that I kept experiencing when using good ol’ pen and paper. Those were the things we were looking to eliminate with Ideate. We weren’t looking to replace the sketching experience, but enhance it.</p>
<p style="text-align: center;"><a href="http://www.juanchez.com/wp-content/uploads/2010/04/fashion.jpg"><img class="aligncenter size-full wp-image-164" title="Fashion Design" src="http://www.juanchez.com/wp-content/uploads/2010/04/fashion.jpg" alt="" width="480" height="360" /></a></p>
<p>Every time I want to share a sketch I go to our copier/scanner, scan my sketch and email it to myself. I then email that on to someone. Or, I use my iPhone to snap a picture, but if lighting is bad, my sketch looks bad and that’s not good. It was this experience that drew us to making sharing sketches easy. The thought of sharing sketches right from my iPad to Flickr or via email really excites me.</p>
<p>Another thing I would do is draw out a template as a base for what I would be sketching and then make multiple copies to sketch on. For example, to accurately represent an idea for multiple states of a web application I would draw out a web browser, make copies of that and then sketch over those copies. The custom EffectiveUI sketchbooks alleviated some of this, but we thought it could be even better. As a result, we incorporated a wide variety of Templates you can load as backgrounds and sketch right over them. Bye, bye copy machine.</p>
<p>For every design, there are always sources of inspiration. I always bookmark sites, take screenshots, clip magazines and maintain my own little inspiration library. We wanted to bring this idea into Ideate as well. The web is an infinite source of inspiration, so why ignore that? You can clip images from the web via Safari, bring in images from your Photo Library or access Clips that come with the application to use as reference, provide inspiration or add to your sketch.</p>
<p>Designing and building an iPad application was particularly interesting, especially because we didn’t have access to the device. To get over this hump, Jonathan fashioned a prototype of wood, paper and boxing tape. Lo-fi, yes, but also incredibly helpful. He also made it so you could slide different printed Templates in and out. This prototype helped us make some valuable decisions, like the placement of the pen tray. It’s placed there so you can quickly switch between pens with your thumb (if you’re right-handed) as your sketching, but expect customization soon.</p>
<p style="text-align: center;"><a href="http://www.juanchez.com/wp-content/uploads/2010/04/wooden-ipad.jpg"><img class="aligncenter size-full wp-image-166" title="Wooden iPad" src="http://www.juanchez.com/wp-content/uploads/2010/04/wooden-ipad.jpg" alt="" width="448" height="336" /></a></p>
<p>The process of bringing this application together was completely agile and while we cut features we made sure the application was still useful. One of the things that really helped make progress was relying on the user interface elements and guidelines Apple gives you to work with. They put a lot of thought into the interface behind the iPad, so we leveraged that as much as possible.</p>
<div id="attachment_165" class="wp-caption alignright" style="width: 160px"><a href="http://www.juanchez.com/wp-content/uploads/2010/04/Hand.png"><img class="size-thumbnail wp-image-165" title="Hand Template" src="http://www.juanchez.com/wp-content/uploads/2010/04/Hand-150x150.png" alt="" width="150" height="150" /></a><p class="wp-caption-text">Hand Template</p></div>
<p>One thing we found and didn’t really expect was how useful Ideate is for other industries. As we were working on the application people in the company mentioned the idea to their doctors, architect friends and teachers. What we found is that the same ideas around Templates, sharing and drawing as a communication tool resonated with so many people. This pushed us to make more custom Templates to support these use cases we came across.</p>
<p>The way this app came together was quite the experience and a real testament to the kind of talent I get to work with at EffectiveUI. It was amazing to see a short phone call turn in to a finished application so quickly. We had an in-house concept artist create the <a href="http://www.ideateapp.com/documentation/Ideate-Templates-40210.pdf" target="_blank">Templates</a> and <a href="http://www.ideateapp.com/documentation/Ideate-Clips-40210.pdf" target="_blank">Clips</a>, development happening in-between client work and design changing on-the-fly as user feedback rolled in. It was fun.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/uliVcGijGsw&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="360" src="http://www.youtube.com/v/uliVcGijGsw&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Thinking through an iPad application and seeing it built has done wonders to help me understand what it takes to make something for this new device. Will Ideate replace the familiar pen and paper? No. The application is another tool that can be used to support your own thought process. For myself, it’s something I’ve been waiting for.</p>
<p>Ideate <a href="http://itunes.apple.com/us/app/ideate/id364169711?mt=8">is available</a> in the App Store for $3.99. You can learn more about Ideate on the <a href="http://www.ideateapp.com/">website</a> or follow <a href="http://twitter.com/ideateapp">@ideateapp</a> on Twitter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/04/03/ideate-a-sketching-application-for-the-ipad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Map Marker</title>
		<link>http://www.juanchez.com/2010/03/12/map-marker/</link>
		<comments>http://www.juanchez.com/2010/03/12/map-marker/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:42:54 +0000</pubDate>
		<dc:creator>Juan</dc:creator>
				<category><![CDATA[Images]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[marker]]></category>

		<guid isPermaLink="false">http://www.juanchez.com/?p=160</guid>
		<description><![CDATA[
Here&#8217;s a random pic from outside last year&#8217;s Google I/O.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.juanchez.com/wp-content/uploads/2010/03/4292244668_b62910abec_o.jpg"><img class="size-full wp-image-161 alignnone" title="Map Marker" src="http://www.juanchez.com/wp-content/uploads/2010/03/4292244668_b62910abec_o.jpg" alt="" width="360" height="480" /></a></p>
<p>Here&#8217;s a random pic from outside last year&#8217;s Google I/O.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juanchez.com/2010/03/12/map-marker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
