Workflow Design
Streamline workflows, don't over-simplifify them.
Types of Workflow
- Feedforward - which has added importance in CxUX because of it's error prevention abilities, so don't skimp!
- Feedback - which gives users confidence to continue on the workflow.
- Inference - keep the user on track by correcting their errors, or automating sub-steps of the workflow to speed things up.
Task Focussed Workflow Considerations
When designing your workflows, the following areas should be given due consideration. This is essentially a box ticking exercise to make sure you're giving your users a fighting chance! The (forthcoming) section on Context adds an extra dimension to this, but it's a good place to start.Workflow Consistency
Note: there is more about consistency in the page on Interface Design.
If there are similar workflows already in existence in the app or in common usage elsewhere, make sure you stick to established workflows, that way there's little / nothing new for a user to learn before trying the new workflow. That said, if you have an innovative approach that is a clear improvement on the status-quo - a product differentiator, you should obviously feel free to deviate; just don't do it without reason it results in needless bottlenecks for users.
Visibility
If it's relevant to the workflow it should be readily available to the user, so check if all the required components are obvious, or are revealed as the user proceeds along the workflow. An example of failing at this would be to have two controls that are often used together be buried in separate hierarchies that need digging out.
Feedback
A user should know that the workflow succeeded or failed. If it failed, you should try to say why, and for bonus points, tell them what they did wrong. For a gold star, fix what they did wrong automatically and complete the workflow for them.
Recoverability
Make it safe to experiment, and/ or go wrong. At the most basic level you should support undo for everything. In essence it should be easy for users to try something, change their mind, and then backtrack in order to try something else. When users can work like this, they will trust your app more.
Familiarity
Workflows can end up hurting users if they do not conform to existing mental models and expectations based on past experiences. As soon as you deviate from norms, learning must occur, and, in general, users hate learning.I don’t mean to imply that innovation should never occur, it's half the fun of the job; but design standards exist for a reason, and are not intended to stifle creativity, but rather to aid users by decreasing the time and effort needed to complete a task by presenting them with familiar concepts. Why waste people’s mental energy on new UI elements they need to learn? If a new, more efficient way of completing an activity is possible, by all means try it, and if it works, keep it. But, don’t leave your users in the dark — help them learn the new pattern by understanding their expectations and clearly communicating information important to them, generally this can be done with feedforward and hints, so that they know what they can do next.Assistance
Use tooltips, inline help, and hints to let users know what something does, or what they can do next. For example notice how hotkeys are (optionally) listed in the bottom left of the viewport to indicate to users what secondary actions they can perform.
Intuition
Examples from Cavalry
A Simple Short Circuit:
- Save the pasted file onto the hard drive so we can import it into the Scene.
- Import it into the Scene as an Asset.
- Create a Shape layer to contain the image.
- Create an Image Shader and assign that to the layer we just made.
- Assign the Asset (the pasted image) to the Image Shader.
A Moderately Complex Short Circuit:
Solution:Instead of the standard way of making users manage this manually, Cavalry provides a feature for dynamic content creation, in essence a user can hook up a spreadsheet to their animation, and Cavalry will go down the rows of the spreadsheet creating a different animation based on the content of the spreadsheet rows. This can obviously save users huge amounts of time.

Boss Level Short Circuit:

A quick note on proceduralism
In computing, the advantage of this kind of set up is that you can go in and change things later.
Consider the workflow of adding a blur, then a pixellate in Photoshop, the user performs a sequence of events which has a fixed outcome. If you want to change the blur, you must effectively start again, as each step is 'baked in' as we choose it.In procedural software, instead of the user performing a series of events we describe a sequence of events that we want to see the outcome of, and the software performs every event from start to finish, whenever needed. The benefit of this is that we can go in later and change anything in that description of events later. This is one of the techniques you can use to achieve non-destructive workflows.
If you need a system where users are free to change any aspect of the work at any time, you should consider proceduralism as an approach to the problem you're trying to solve. Be warned, this way of thinking is the diametric opposite of guiding a user along a well marked path toward a goal, and thus procedural systems are much harder to learn than more linear systems.