<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Thoughts on Accordion Usability</title>
	<atom:link href="http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/</link>
	<description>On the desktop, on the web, on the device ... On the Platform</description>
	<pubDate>Wed,  7 Jan 2009 00:21:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Taldir</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-36894</link>
		<dc:creator>Taldir</dc:creator>
		<pubDate>Wed, 23 Apr 2008 13:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-36894</guid>
		<description>Hi,

Nice example ! Thanks a lot for sharing it.
I used this wizard example to build an application.

It's working very well but I am blocked...
With the Accordion, I can use the IndexChangedEvent when the selected element changes. But, how to use such event when the user switch form pages in the Wizard ?

I hope you understood my question... My English is not so good.

Thanks a lot !</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Nice example ! Thanks a lot for sharing it.<br />
I used this wizard example to build an application.</p>
<p>It&#8217;s working very well but I am blocked&#8230;<br />
With the Accordion, I can use the IndexChangedEvent when the selected element changes. But, how to use such event when the user switch form pages in the Wizard ?</p>
<p>I hope you understood my question&#8230; My English is not so good.</p>
<p>Thanks a lot !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Plante</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-21800</link>
		<dc:creator>Phil Plante</dc:creator>
		<pubDate>Fri, 01 Feb 2008 00:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-21800</guid>
		<description>Accordions are very useful to simplify long forms.  I think of them as collapsed sections of a written document with the folds representing the familiar model of a vertical outline. Users recognize them. Most of the issues can be managed with features like "show all" or mouseover effects to indicate the hidden content. My concern with your proposed alternative is that you have implied a linear left-to-right workflow. I dont' think users respond to tabs that way. Also, you provide no way to show everything at once. If it were a multi-part form, how would you avoid hiding data entry errors unless there was a separate save for each tab?</description>
		<content:encoded><![CDATA[<p>Accordions are very useful to simplify long forms.  I think of them as collapsed sections of a written document with the folds representing the familiar model of a vertical outline. Users recognize them. Most of the issues can be managed with features like &#8220;show all&#8221; or mouseover effects to indicate the hidden content. My concern with your proposed alternative is that you have implied a linear left-to-right workflow. I dont&#8217; think users respond to tabs that way. Also, you provide no way to show everything at once. If it were a multi-part form, how would you avoid hiding data entry errors unless there was a separate save for each tab?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dorai Thodla</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-4899</link>
		<dc:creator>Dorai Thodla</dc:creator>
		<pubDate>Thu, 30 Aug 2007 11:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-4899</guid>
		<description>I agree with you about the chance to misuse. But I found the pattern very usable in certain situation where the alternatives require you to scroll through the web page vertically.

For example, I find the use of this pattern in Google Reader has improved my reading experience. Now I just glance at the blog titles and decide which ones to explore.</description>
		<content:encoded><![CDATA[<p>I agree with you about the chance to misuse. But I found the pattern very usable in certain situation where the alternatives require you to scroll through the web page vertically.</p>
<p>For example, I find the use of this pattern in Google Reader has improved my reading experience. Now I just glance at the blog titles and decide which ones to explore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sho</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-4812</link>
		<dc:creator>sho</dc:creator>
		<pubDate>Wed, 29 Aug 2007 13:18:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-4812</guid>
		<description>thanks a lot... very helpful... i didnt see any contact email on ur website for futher correspondence</description>
		<content:encoded><![CDATA[<p>thanks a lot&#8230; very helpful&#8230; i didnt see any contact email on ur website for futher correspondence</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Hoyt</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-4705</link>
		<dc:creator>Kevin Hoyt</dc:creator>
		<pubDate>Tue, 28 Aug 2007 15:07:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-4705</guid>
		<description>Sho,

A link to the source code is included in the post.  At a high level, each screen is placed side by side in an HBox, and then clipped by being placed inside a Canvas without scroll bars turned on.  The movement is accomplished using the Move effect, with a BlurFilter being added just before the move, and removed just after the move.  The filter has a high value for the horizontal blur, and a small value for the vertical blur, which gives the overall effect of movement.

Hope this helps,
Kevin</description>
		<content:encoded><![CDATA[<p>Sho,</p>
<p>A link to the source code is included in the post.  At a high level, each screen is placed side by side in an HBox, and then clipped by being placed inside a Canvas without scroll bars turned on.  The movement is accomplished using the Move effect, with a BlurFilter being added just before the move, and removed just after the move.  The filter has a high value for the horizontal blur, and a small value for the vertical blur, which gives the overall effect of movement.</p>
<p>Hope this helps,<br />
Kevin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sho</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-4583</link>
		<dc:creator>sho</dc:creator>
		<pubDate>Mon, 27 Aug 2007 18:55:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-4583</guid>
		<description>kevin, very informative article.. sorry to digress, i love the transition effect on that last appliation.. i was wondering if i could get any tips (or code) on how to do something like that.. thanks</description>
		<content:encoded><![CDATA[<p>kevin, very informative article.. sorry to digress, i love the transition effect on that last appliation.. i was wondering if i could get any tips (or code) on how to do something like that.. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sho</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-4582</link>
		<dc:creator>Sho</dc:creator>
		<pubDate>Mon, 27 Aug 2007 18:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-4582</guid>
		<description>very nice article... sorry to digress.. i love the transition effect on that last application.. i was wondering if i could get any tips on how to  do somethin like that... thanks</description>
		<content:encoded><![CDATA[<p>very nice article&#8230; sorry to digress.. i love the transition effect on that last application.. i was wondering if i could get any tips on how to  do somethin like that&#8230; thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jre</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-2117</link>
		<dc:creator>Jre</dc:creator>
		<pubDate>Tue, 24 Jul 2007 20:20:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-2117</guid>
		<description>I agree that a lot of developers have a tendency to abuse the accordion component as it is a really easy way to cram a bunch of fields into a small area.  I think that an accordion relates to checkboxes in the way that both accordions and checkboxes are useful in small quantities.  It would be crazy to use 50 checkboxes when you could use a multi selection list instead.  Same thing goes for accordions, if you use it properly it can be very efficient.</description>
		<content:encoded><![CDATA[<p>I agree that a lot of developers have a tendency to abuse the accordion component as it is a really easy way to cram a bunch of fields into a small area.  I think that an accordion relates to checkboxes in the way that both accordions and checkboxes are useful in small quantities.  It would be crazy to use 50 checkboxes when you could use a multi selection list instead.  Same thing goes for accordions, if you use it properly it can be very efficient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elias</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-11</link>
		<dc:creator>Elias</dc:creator>
		<pubDate>Mon, 26 Feb 2007 06:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-11</guid>
		<description>Hi
this is a great article and i completely agree with you, but i'm thinking on doing another kind of navigation, a windows control panel like, i mean i want to put several icons on one panel and as the user clicks on one icon it passes to another level or to the form they want.

I haven't seen this kind of navigation made in flex  yet and i'd like some ideas on how to do this if you can spare some time thinking about it i'd appreciate.
 
</description>
		<content:encoded><![CDATA[<p>Hi<br />
this is a great article and i completely agree with you, but i&#8217;m thinking on doing another kind of navigation, a windows control panel like, i mean i want to put several icons on one panel and as the user clicks on one icon it passes to another level or to the form they want.</p>
<p>I haven&#8217;t seen this kind of navigation made in flex  yet and i&#8217;d like some ideas on how to do this if you can spare some time thinking about it i&#8217;d appreciate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lokesh Dhakar</title>
		<link>http://blog.kevinhoyt.org/2007/02/18/thoughts-on-accordion-usability/#comment-10</link>
		<dc:creator>Lokesh Dhakar</dc:creator>
		<pubDate>Mon, 19 Feb 2007 20:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kevinhoyt.org/?p=18#comment-10</guid>
		<description>Hi Kevin,

The problem, as you stated, with the 1040 form placed inside an accordion is the amount of real estate the chrome takes up. An alternative approach, if you have some horizontal real estate to spare, is to place the navigation on the left side as a set of links in a vertical list. The user works their way from top to bottom. This is similar to your last example, switching the thumbnails for text links and ditching the menubar. Theirs not much pizzaz in this solution, but it works.

Another note about the accordion; I've seen users bypass accordions sections because they didn't notice the inactive sections plopped way at the bottom of the screen. Users tend to keep their eyes above the middle of the screen unless something leads them downwards.</description>
		<content:encoded><![CDATA[<p>Hi Kevin,</p>
<p>The problem, as you stated, with the 1040 form placed inside an accordion is the amount of real estate the chrome takes up. An alternative approach, if you have some horizontal real estate to spare, is to place the navigation on the left side as a set of links in a vertical list. The user works their way from top to bottom. This is similar to your last example, switching the thumbnails for text links and ditching the menubar. Theirs not much pizzaz in this solution, but it works.</p>
<p>Another note about the accordion; I&#8217;ve seen users bypass accordions sections because they didn&#8217;t notice the inactive sections plopped way at the bottom of the screen. Users tend to keep their eyes above the middle of the screen unless something leads them downwards.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
