vote up 2 vote down star
1

How do you prototype your software UI?
What's your experience?
Could you please share with me?
Thanks in advance!

flag

not again: meta.stackoverflow.com/questions/9050/… – Sam Saffron Aug 3 at 4:52
This has been asked in various forms about 8 times already, see the above link – Sam Saffron Aug 3 at 4:54

4 Answers

vote up 2 vote down check

Pen and paper or a whiteboard. Prefer mockups to be reasonably divorced from the final products look and feel. While discussing interactions and how many clicks it takes to get a job done it's very fast to change paper mock ups and its obvious to all concerned that this doesn't represent the final product being almost finished.
Years ago I was involved in a project where we produced a really detailed GUI mock up that even had some code behind it to simulate the flow of events. It was fantastic for getting the users of the software to give feedback and input. It was then an absolute nightmare for the project because we were constantly behind where the users expected us to be, after all they had already seen it pretty much working, right?
Worst of all, some of that throwaway code ended up being included in the released product and was a nightmare to maintain later (there wasn't much thought put into structuring it originally 'cos it was throwaway, then the user had seen the behavior and it became the de-facto implementation of the logic for a major piece of the system. Yuk.

link|flag
vote up 4 vote down

I use Balsamiq http://www.balsamiq.com/

It's awesome.

link|flag
Could you please share your own experience When do UI mocking up? – MemoryLeak Aug 3 at 4:18
vote up 0 vote down

You can use a GUI editor such as the one in the NetBeans IDE, the QtCreator IDE, or the Xcode IDE, to create a GUI mockup, without implementing handlers for all the GUI events. This GUI can then be evaluated, and possibly redesigned. Once the GUI looks as it should, then events can be properly handled.

link|flag
Not a big fan of that approach. Its strength (having the UI as it will eventually look and feel) is also the source of its main pitfall. Non technical people seeing your UI mockup assume that the project must be nearly done 'cos the screens are all there. – Hamish Smith Aug 3 at 4:42
vote up 1 vote down

I create html pages with Visual Studio. This could easily be Dreamweaver, FrontPage, NotePad++. To me this has the benefit of the CSS and html being nearly done by time I am finished with the mockup. Usually it is easier and more productive to do your prototype in the tool or technology you plan to create the deliverable in.

link|flag
Good point, especially with css frameworks now days, it can be done very quickly. – Dmitris Aug 3 at 4:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.