<?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>Danny-T.co.uk &#187; UI</title>
	<atom:link href="http://danny-t.co.uk/index.php/category/ui/feed/" rel="self" type="application/rss+xml" />
	<link>http://danny-t.co.uk</link>
	<description>Web apps fanatic, ramblings on dev for web, mobile and other geeky stuff</description>
	<lastBuildDate>Sat, 04 Feb 2012 09:59:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>You&#8217;re doing handlers wrong</title>
		<link>http://danny-t.co.uk/index.php/2010/12/06/youre-doing-handlers-wrong/</link>
		<comments>http://danny-t.co.uk/index.php/2010/12/06/youre-doing-handlers-wrong/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 11:36:25 +0000</pubDate>
		<dc:creator>DannyT</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Interface Design]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://danny-t.co.uk/?p=294</guid>
		<description><![CDATA[Okay so it&#8217;s a link bait, sensationalist title, but that fact I&#8217;ve recognised that fact makes it okay yeah? Anyway like I said you&#8217;re doing handlers wrong&#8230; or rather, to stop with the hype-generating, FUD-like statements; If you&#8217;re waiting for RPC/Async handlers to return in order to update your application&#8217;s interface then allow me to [...]]]></description>
			<content:encoded><![CDATA[<p>Okay so it&#8217;s a link bait, sensationalist title, but that fact I&#8217;ve recognised that fact makes it okay yeah? Anyway like I said you&#8217;re doing handlers wrong&#8230; or rather, to stop with the hype-generating, FUD-like statements; If you&#8217;re waiting for RPC/Async handlers to return in order to update your application&#8217;s interface then allow me to propose a new approach:</p>
<blockquote><p>Always assume the call you&#8217;re making will work.</p></blockquote>
<p>Some context for the above, I recently got sick of my iPhone and decided to give Android a spin, side-stepping the obvious discussion here, one of the things that has irked me about the Android experience is that it just doesn&#8217;t feel as responsive as the iPhone for certain applications, specifically email. So I started to compare the two and realised that the iPhone reacts to my interactions immediately whereas Android seems to wait for approval from the server. This eye-opening discovery led to me imposing a new standard here at <a href="http://moov2.com">Moov2</a>:</p>
<blockquote><p>Every user interaction must have an immediate and obvious reaction.</p></blockquote>
<p>Proud and smug feelings of wearing my user experience hat were soon interupted when challenged to explain wtf I actually meant by this. So, for example, deleting an email from a list of viewed email messages. When I hit delete I expect that message to be removed from the list and if that happens as soon as I press the delete button, I&#8217;m a happy chap. Conversely, if I have to wait, even a couple of seconds, I may think I missed and try hitting it again&#8230; and again&#8230; etc. So developers, quite simply, as soon as that delete button is hit, remove the message from the list and THEN send your call informing the server to do it&#8217;s part. This approach can be applied to pretty much any application development that involves a rich user interface, Flash, Flex, Silverlight, AJAX, Android, iPhone, native desktop apps and whatever.</p>
<h3>But what if something goes wrong?</h3>
<p>Of course, just throwing the message away willy-nilly is reckless, there&#8217;s a whole host of things that could prevent that message from being deleted. The user might be offline, the email list might not be up to date or there may just be some other bug elsewhere making the delete email process just plain not possible at the moment. In this case, sheepishly, politely and unobtrusively, let your user know the fact and pop the email back where it came from. This will obviously be a nuissance to the user, but how often does this really happen in comparisson to how often it works? Very rarely, and it&#8217;s no less annoying for the user than having to sit there waiting with no response only to find out the action failed.</p>
<h3>What if I NEED the response in order to update the UI?</h3>
<p>So deleting is a fairly convenient example because we&#8217;re taking away from an already viewable interface, what about if we&#8217;re adding to our interface based on the response from our call? For example displaying the list of emails in the first place. Well, for this I suggest you present all of the interface elements that you know are going to be available and just provide some indication that something else is going on to reassure the user that their input has been acknowledged. So when the user chooses to view their inbox, immediately react and change the view, present them the &#8216;Inbox&#8217; title, show them any user controls they might be able to interact with and display the space those messages are going to load into with some form of preloader/spinner and note indicating their messages are being retrieved.</p>
<p>So take a minute and review your result handlers to see how much UI stuff is being done there. Could it be moved to before the call was made? This sometimes means you need to think about how to best back-track when things go wrong but for the 95% of the time when you just get the result you&#8217;d expect you&#8217;ll deliver a MUCH more responsive feeling interface that your users will thank you for.</p>
<p>By the way, if you&#8217;d like to actually see some code demonstrating this concept tweet the following message to Pete who has prepared a very clean implementation of this for a Flex application we&#8217;re currently working on: &#8220;<a href="http://twitter.com/?status=Hey @peterkeating, codez pls http://bit.ly/f8HOyp">Hey @peterkeating, codez pls http://bit.ly/f8HOyp</a>. I&#8217;m sure he&#8217;ll oblige with a sample soon enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://danny-t.co.uk/index.php/2010/12/06/youre-doing-handlers-wrong/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When to invest in an improved user experience</title>
		<link>http://danny-t.co.uk/index.php/2008/02/09/when-to-invest-in-an-improved-user-experience/</link>
		<comments>http://danny-t.co.uk/index.php/2008/02/09/when-to-invest-in-an-improved-user-experience/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 16:00:45 +0000</pubDate>
		<dc:creator>DannyT</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Interface Design]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2008/02/09/when-to-invest-in-an-improved-user-experience/</guid>
		<description><![CDATA[Tony MacDonell of Teknision has a great post over on InsideRIA about The supply and demand of user experience. I left a comment there but whilst it&#8217;s in moderation but it&#8217;s raised some more thoughts for me so thought it deserved it&#8217;s own post. Tony writes about how an investment in user experience is driven [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.teknision.com/siteVersions/tek3/index.html#Home">Tony MacDonell of Teknision</a> has a great post over on <a href="http://www.insideria.com/">InsideRIA</a> about <a href="http://www.insideria.com/2008/01/the-supply-and-demand-of-exper.html#comments">The supply and demand of user experience</a>.</p>
<p>I left a comment there but whilst it&#8217;s in moderation but it&#8217;s raised some more thoughts for me so thought it deserved it&#8217;s own post.</p>
<p>Tony writes about how an investment in user experience is driven by supply and demand of said experience. In slow moving uncompetitive markets, this added value of a slick user experience isn&#8217;t necessary and therefore is unlikely to receive heavy recognition and investment. You only need to look at many banking systems, trading platforms and data entry software to believe this is the case (N.B. these being slow movers rather than uncompetitive).</p>
<p>Tony also mentions the example of router interfaces as something that blatantly receives little UX attention because it&#8217;s more appropriate for router manufacturers to compete on price rather than improving user experience.</p>
<p>The general cycle of things seems to be as follows:</p>
<p>1 &#8211; New product enters market, has no competition, focuses on functionality over form, it works, it does the job, reaches x% of market.<br />
2 &#8211; Competition appears, attention on products grows, market grows, slice of pie desired grows, product&#8217;s prices reduced.<br />
3 &#8211; Prices reach lowest reasonable point, value needs to be added, user experience rears its head, flash/flex guy gets a new contract.</p>
<p>This sucks. And in my view is stupid. At point 3 we&#8217;re still trying to generate more sales/users/whatever so we try to build desire through improving the product experience. Yet we&#8217;re now making less per unit than ever before.</p>
<p>Had we invested in a suitable UX in the first instance the costs of doing so would have been less (I.e. not having wasted time and money on the first iteration crappy implentation), we&#8217;d have a much better, more desirable product, we&#8217;d have benefited from the additional interest whilst we&#8217;re charging a premium and we&#8217;d be raising barriers to entry for any future competition.</p>
<p>You could argue the new interface extends the product lifecycle which would otherwise have dropped off sooner but in my opinion the advantages of doing it right first time far outweigh that.</p>
]]></content:encoded>
			<wfw:commentRss>http://danny-t.co.uk/index.php/2008/02/09/when-to-invest-in-an-improved-user-experience/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Attention to Detail in Rich Internet Applications</title>
		<link>http://danny-t.co.uk/index.php/2008/02/06/attention-to-detail-in-rich-internet-applications/</link>
		<comments>http://danny-t.co.uk/index.php/2008/02/06/attention-to-detail-in-rich-internet-applications/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 01:23:33 +0000</pubDate>
		<dc:creator>DannyT</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Interface Design]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2008/02/06/attention-to-detail-in-rich-internet-applications/</guid>
		<description><![CDATA[Adobe&#8217;s Ethan, Ted and Ryan recently gave a big thumbs up to Firebrand an RIA for watching adverts. Niels Bruin responded with what I think is a very good wake-up call to the starry eyed approach to reviewing web apps with lots of transitions, reflections and other shiny bits. Niels highlights some real basic usability [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe&#8217;s <a href="http://eismann-sf.com/news/?p=117">Ethan</a>, <a href="http://www.onflex.org/ted/2008/01/adobe-flex-super-bowl-xlii-and.php">Ted</a> and <a href="http://blog.digitalbackcountry.com/?p=1254">Ryan</a> recently gave a big thumbs up to <a href="http://www.firebrand.com/">Firebrand</a> an RIA for watching adverts.</p>
<p><a href="http://www.nielsbruin.nl/blog/">Niels Bruin responded</a> with what I think is a very good wake-up call to the starry eyed approach to reviewing web apps with lots of transitions, reflections and other shiny bits. Niels highlights some real basic usability <a href="http://en.wikipedia.org/wiki/Faux_pas">faux pas</a> that Firebrand made such as mystery meat navigation, red punishing looking confirmation messages and inconsistent design touches.</p>
<p>To be honest, I read all the commotion and Niels put down before I looked at the site and to be fair to Firebrand I probably wouldn&#8217;t have picked up on those points myself. But then I&#8217;m not and would not claim to be a UX hotshot of any kind. The key point for me is that the points raised by Niels do not require a magical usability eye and could very easily be a printed checklist and implemented as part of a quality control assessment before final delivery of a product. To be fair I do also agree with the points Ryan makes in his <a href="http://blog.digitalbackcountry.com/?p=1264">followup</a> and I&#8217;m also all too familiar with things such as expectation and deadlines which can all to easily prevent this much-needed attention to detail. However, if we keep reminding ourselves of it then hopefully it will become second nature and not needed as a time consuming afterthought.</p>
<p>If you&#8217;re responsible for the creation, delivery or quality of a customer facing project, take 20 minutes, open up your word-processor of choice (perhaps use it as an opportunity to try out <a href="http://www.buzzword.com/">Buzzword</a>) and hack together a simple list of quality control checks. </p>
<p>Here&#8217;s a handful of checks plagerised from Niels post and an old post I remembered by <a href="http://aralbalkan.com">Aral</a> to get you started, copy the below and paste into a document, print out 10 copies, run through your current project and tick each one off and you&#8217;re well on your way to becoming a quality control engineer!</p>
<p><strong>Niels&#8217; <a href="http://www.nielsbruin.nl/blog/">Firebrand wrist-slap</a>:</strong></p>
<ul>
<li>Make sure any icons/metaphors are extremely obvious or explained with tooltips or other indicators</li>
<li>Make confirmation messages look positive and warnings look like warnings (I.e. don&#8217;t positively confirm an action in red)</li>
<li>Is everything laid out consistently? How much effort would it really be to tweak that button a few pixels to line up properly?</li>
<li>Can familiar controls be used in a familiar manner? E.g. can I scroll a scrollbar using my mousewheel, drag it and click up/down arrows?</li>
<li>Have you tested on all likely platforms/browsers? At <em>least</em> WinXP, Vista, Linux, OSX with IE6 &#038; 7, Firefox, Safari, Opera</li>
</ul>
<p><strong>Aral&#8217;s old <a href="http://aralbalkan.com/687">post on UI principles</a> (interpretation by moi for checklisting purposes):</strong></p>
<ul>
<li>I can use it but am I a &#8216;typical user&#8217;? Even better: can I get an intended user (or several) to use it?</li>
<li>Does validation &#8220;prevent not scold&#8221;? Does the user get scolded &#8220;YOU IDIOT, WHY DIDN&#8217;T YOU SELECT A GENDER BEFORE CLICKING THAT BUTTON?!&#8221; or do we just make the button un-clickable until the gender has been selected with some unobtrusive instruction to do so?</li>
<li>Does the user receive sufficient feedback? If the user makes an interaction, is it obvious that interaction has been acknowledged by the app and the expected result has happened? (see Niels point on adding to faves).</li>
</ul>
<p>There&#8217;s a load of other things that can be added to this list, for generic testing and I&#8217;m sure for specific audiences/companies/application types etc. I&#8217;m going to do some digging on other principles people have come up with as I know there are a ton out there but whilst this is topical I thought I&#8217;d add my opinion and throw in a call to action to anyone reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://danny-t.co.uk/index.php/2008/02/06/attention-to-detail-in-rich-internet-applications/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The &#8220;Enterprise Widget&#8221;</title>
		<link>http://danny-t.co.uk/index.php/2007/04/02/the-enterprise-widget/</link>
		<comments>http://danny-t.co.uk/index.php/2007/04/02/the-enterprise-widget/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 12:45:46 +0000</pubDate>
		<dc:creator>DannyT</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Development Tools]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2007/04/02/the-enterprise-widget/</guid>
		<description><![CDATA[I was just having a conversation with Ryan (through the medium of geek &#8211; aka twitter and blog comments) and we established a concept of &#8220;enterprise widgets&#8221;. It&#8217;s not really a new concept rather than a different outlook on the &#8220;widget&#8221; concept. It is also something that Apollo is an ideal platform for developing. In [...]]]></description>
			<content:encoded><![CDATA[<p>I was just having a conversation with <a href="http://blogs.zdnet.com/Stewart/?p=329">Ryan</a> (through the medium of geek &#8211; aka twitter and blog comments) and we established a  concept of &#8220;enterprise widgets&#8221;.</p>
<p>It&#8217;s not really a new concept rather than a different outlook on the &#8220;widget&#8221; concept. It is also something that Apollo is an ideal platform for developing.</p>
<p>In Ryan&#8217;s post he demonstrated use cases of when to focus on a browser app vs when to focus on a desktop app. One of the points about when to target the desktop was:</p>
<blockquote><p>You&#8217;re building a &#8220;widget&#8221; application. Widgets are becoming bigger and bigger (in terms of capability) and you just can&#8217;t run a widget platform inside the browser. Widgets need to be accessible from the desktop, where they can take up a small space and be easily moved around. The browser restricts that too much.</p></blockquote>
<p>He then asked for other ideas to which I responded:</p>
<blockquote><p>Something that I&#8217;ve been harping on about a bit lately is the opportunity of a &#8220;desktop web service&#8221; (service in the desktop sense, not a web service). So that&#8217;s not too clear and a better term is needed, I think an example is in order:</p>
<p>Say you were a trader and wanted to be notified when certain things happened to rates/markets. With a desktop app you can have a form of service (or invisible app) that runs in the background watching the trading web services, when something pertinent happens you can fire into action informing the user.</p>
<p>This is a use case for a desktop app as you don&#8217;t want the user to rely on having a browser window open on a specific website.</p>
<p>Clear as mud? Wicked, I think i need to go away and create this application to aid my ill-eloquent thoughts-to-text abilities. <img src='http://danny-t.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p></blockquote>
<p>Ryan alerted me to the fact that my suggestion IS a widget of sorts. However, for myself, the term widget conjurs up the image of a small funky looking app that runs on your desktop and is used for fun, interest or time-passing E.g. weather reports, RSS readers, traffic warnings etc. In light of this I hadn&#8217;t associated my example (a corporate or enterprise type application) with the term &#8220;widget&#8221;.</p>
<p>So an &#8220;enterprise widget&#8221; is essentially a widget with or without a UI which can run as a desktop service until some event or action happens that would require further interaction with it (or another desktop or web application).</p>
<p>Another idea that could be classed as an enterprise widget is<br />
<a href="http://www.gskinner.com/blog/archives/2007/03/apollo_time_tra.html">Grant Skinners gTimer</a> &#8211; I don&#8217;t know the specifics of this (it looks very cool and a something I&#8217;ve been wanting for a long time) but it could potentially run as an invisible application on your desktop (or just an icon in the system tray) and only prompt for client/project details when you open/close files and applications. Therefore negating the need to conciously update your timesheets when you switch projects.</p>
<p>Basically any action you need to take that needs to be responsive to some event or information change you can setup an enterprise widget to monitor activity and prompt with the necessary action based on certain flags. E.g. you could have an RSS reader that spurs you into a blogging frenzy whenever anyone mentions a specific term or technology you&#8217;re interested in.</p>
<p>Apollo seems to be the ideal choice for developing such enterprise widgets because of it sits squarely on the line between desktop and web. Making use of web services, desktop presence and desktop chromelessness (a word I just invented) are all key elements of the enterprise widget. </p>
<p>I&#8217;m not sure &#8220;Enterprise Widget&#8221; is the best term because, as I mentioned earlier, I don&#8217;t associated &#8220;widget&#8221; with a business tool but maybe that&#8217;s just me or maybe there is an existing definition that might be a better fit. I initially referred to it as a &#8220;desktop web service&#8221; but that was just plain confusing. Ideas?</p>
]]></content:encoded>
			<wfw:commentRss>http://danny-t.co.uk/index.php/2007/04/02/the-enterprise-widget/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Intuition Vs Conditioning in Interface Design</title>
		<link>http://danny-t.co.uk/index.php/2006/11/24/intuition-vs-conditioning-in-interface-design/</link>
		<comments>http://danny-t.co.uk/index.php/2006/11/24/intuition-vs-conditioning-in-interface-design/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 03:58:30 +0000</pubDate>
		<dc:creator>DannyT</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Interface Design]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://danny-t.co.uk/index.php/2006/11/24/intuition-vs-conditioning-in-interface-design/</guid>
		<description><![CDATA[Last month myself and Colin travelled up to London to attend the LFPUG and saw two excellent presentations from Rob Bateman and Tink. During Rob&#8217;s presentation on Optimising visual interfaces for the human brain something was brought up that I hadn&#8217;t considered previously; the difference between &#8220;Intuition&#8221; and &#8220;Conditioning&#8221;. This wasn&#8217;t a major part of [...]]]></description>
			<content:encoded><![CDATA[<p>Last month myself and <a href="http://www.lightinteractive.co.uk/">Colin</a> travelled up to London to attend the <a href="http://www.lfpug.com/">LFPUG</a> and saw two excellent presentations from <a href="http://www.lfpug.com/rob-bateman/#more-29">Rob Bateman</a> and <a href="http://www.lfpug.com/tink/#more-15">Tink</a>. </p>
<p>During Rob&#8217;s presentation on <a href="http://www.lfpug.com/optimising-visual-interfaces-for-the-human-brain-25102006/">Optimising visual interfaces for the human brain</a> something was brought up that I hadn&#8217;t considered previously; the <em>difference between &#8220;Intuition&#8221; and &#8220;Conditioning&#8221;</em>. This wasn&#8217;t a major part of the presentation but something that got me thinking nonetheless.</p>
<p><strong>Intuition</strong>, for the sake of this discussion, is similar to instinct, they are a form of common sense that perhaps cannot be associated to any specific learning experience.<br />
<strong>Conditioning</strong>, is a more manufactured type of action that we may perform, we&#8217;ve been told to do it this way, we&#8217;ve been doing it like this for some time, so when we want to do something, we&#8217;ll try to do it this way.</p>
<p>The above are two very crude explanations, I have no psychological knowledge and so have drawn these explanations from the presentation last month and some brief further reading. Please feel free to offer any comments below, agreeing or otherwise.</p>
<p>Anyway, what has this got to do with interface design? Actually quite a lot I have realised. Usability is obviously a very important factor of interface design, the user has got to instantly feel comfortable with their environment and almost know where to look and what to click in order to achieve a desired action. Even if they have never before performed this action. When designing an interface, we have to make a concious decision on whether we feel it is appropriate to target a user&#8217;s intuition, conditioning or both or even if there is a distinction between the two.</p>
<p>This is perhaps best explained by example, of which there were several in Rob&#8217;s presentation which I am unashamedly going to borrow.<br />
<img src="http://danny-t.co.uk/images/delete_contact.gif" alt="Windows Dialogue OK Cancel" /><img src="http://danny-t.co.uk/images/delete_account.bmp" alt="Mac dialogue OK Cancel" /></p>
<p>Here are two &#8220;OK&#8221; / &#8220;Cancel&#8221; dialogue prompts, one is for Mac one is for Windows. Despite aesthetics, the fundemental difference between the two is that for Mac the Cancel option is to the left, for Windows this is to the right. Aparently, the rationale for Mac putting their cancel button on the left and the OK button on the right is because it is synonomous with the Escape and Return keys on a keyboard. I would assume the Windows approach is based on the typical left to right reading and expected order of events, confirm or reject.</p>
<p>Another example is one I thought of whilst getting my mind in knots trying to get my head around this. If I were to launch a completely new program, with a save option, it would be perfectly reasonable for me to offer access to the save feature by way of a floppy disk icon. Why is this? Is a floppy disk icon the most intuitive approach? No it&#8217;s probably not, I&#8217;m sure many new and younger computer users wouldn&#8217;t even know what a floppy disk was (maybe most would at present but give it another few years), when was the last time you saved to a floppy disk? This is what I would consider conditioning, we&#8217;re used to doing it this way so we&#8217;ll continue to do so even if it might not be the most appropriate approach for new and future users.</p>
<p>I&#8217;m not sure there is a distinct line between intuition and conditioning. It almost seems as if they are both results of a way we get used to doing things only intuition is more towards being hard-wired as part of who we are as opposed to conditioning being something we are more recently used to doing. Thats not to say i think intuition is not affected by our development within our individual surroundings. For example, would someone who reads arabic, or other right to left language, expect to see the first option on the right, second on the left? Do operating systems even take this into consideration in translated versions? It&#8217;s all food for thought but definitely worth bearing in mind when thinking about your application audience. If you get a chance do check out the <a href="http://www.lfpug.com/optimising-visual-interfaces-for-the-human-brain-25102006/">online video of Rob&#8217;s presentation</a> as there is a lot more interesting and useful information about much more than just intuition.</p>
]]></content:encoded>
			<wfw:commentRss>http://danny-t.co.uk/index.php/2006/11/24/intuition-vs-conditioning-in-interface-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

