Every so often I get this bit of text that says “K2.HTML.Lockup.Updated” below the apps in the app store.  Anyone know what it means?

Sometimes it says "K2.HTML.Lockup.Updated" and sometimes it says "K2.HTML.Lockup.Upd..."

I tweeted about it and didn’t get any tweets back but I got a lot of hits on this website when that phrase came up in my twitter feed. Looks like many other people are getting it to.

iOS App store parsing error :) K2.HTML.LOCKUP.UPDATED http://t.co/NSUW5TU4
@soniiic
Dan Cooper

I’m guessing it’s a parsing error and it’s what Apple use to display that particular app’s last updated date.

 

Sharepoint has a nasty habbit of keep navigation flyouts on the screen for a good second before they hide.  This is probably to aid accessibility where a user might not have precise mouse control.  However if you’re a good designer then you should have plenty of large clickable navigation menu items and plenty of white space.

When rolling over a number of flyouts quickly, the user sees all the flyouts shown on the screen at once which looks rubbish.  To remove the delay altogether use this css in your page somewhere:

li.hover-off>ul
{
    display:none;
}

The way it works is when you hover over an item in the nav the built in sharepoint javascript adds a css class called “hover” and as soon as your mouse leaves the area it changes the class to “hover-off” for 1 second before removing it completely. This CSS will hide the unordered list directly below the list item that has the class “hover-off” thus hiding the flyout as soon as your mouse leaves the parent.

(P.s. this kind of flyout navigation can be set up by setting the ‘MaximumDynamicDisplayLevels’ attribute of the SharePoint:AspMenu control)

 

A pretty simple philosophy: If you make the primary action on a form or web page stand out, users will be more likely to click it. By emphasising these buttons or actions you are attempting to draw the user’s focus toward it.  And by primary action, I mean the submit, send, save etc buttons; actions where the user is making progress. Secondary actions could be buttons like back, undo or cancel

There are a number of ways to emphasise the primary action. One of the easiest and yet still effective methods is to colour the button brightly to draw attention. Similarly you could reduce the saturation of the cancel button. The human eye is drawn to areas of colour which stand out from the page. Also culturally the colour green is associated with a positive action and so if the user is in a hurry or just speedily going through the form, when they see the green button they will know it’s the button that submits the information. Chances are that they won’t actually read the text of the button!

Continue reading »

© 2011 athe.la blog Suffusion theme by Sayontan Sinha