How to create a task flow after scenario?
I am trying to create a user experience design for ATM users. These users are semi-literate. I have created a Design strategy, Persona and Scenario. My next step is to create a Task flow and then wireframes. How do I create a…
How do I upload a GIF on Facebook that is the correct size and automatically plays from Facebook?
When I upload a GIF on Facebook, some people see the correct size, others need to click on it and see the GIF play from the site I uploaded it (like Giphy). How is it possible that there is difference in how people see a GIF …
Order of buttons when on the right of the page
I’ve been going through various posts on this board to clarify my doubts but I haven’t found anything yet.
As I understand, there are 3 methods of positioning buttons,
by importance of the action.
by how destructive the a…
What’s the most appropriate Metaphor for submitting a selected Item in android App?
I have designed and implemented an android application for patients aged >30. While conducting a usability Test, I found the following Issues :
- CheckBox: When the user searches for particular item and decides to choose the one he desires, the checkbox is hard to be activated on small-devices.
- Most of the participants on the test, tend to have difficulty finding a submitting button which is at the top-right of the tab-menu. What icon should I use or any other method/button? would hover button solve the issue or should I use animation since I am leveraging material design.
How do I measure a user’s seriousness while filling an online form?
I’m going to measure a user’s seriousness while filling a form. One example of a way to do this is with a time calculation from when the survey starts until it is submitted. By considering this time, we can eliminate some use…
Using Prototypes for more than just user-testing
Other than for user-testing purposes, PM, Dev and QA are asking the designers in our company to create prototypes to be used as a guide along side of annotated wireframes and visual specs and the actual stories.
In a perfect…
vba excel sub to validate 4 ranges fails sometimes
on 5 sheets, cols AD, AI, AL, AW:BF are dates output as string(10) mm/dd/yyyy
users can update values
the following code succeeds completely on 3 of 5 sheets, missing 1 column on the other two. (one sheet, the last col; one sheet, a col in the middle of a contiguous range).
Has anyone seen this kind of behavior?
xlsm workbook in Office 365 on Windows 7 SP1 64-bit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim ws As Worksheet
Dim lRow As Long
Dim x As Range
Dim rng As Range
Set ws = ThisWorkbook.Worksheets(“MySheet”)
‘Set rng = ActiveSheet.Cells
lRow = ws.Cells(ws.Rows.Count, “A”).End(xlUp).Row
Set x = ActiveSheet.Union(Range(“AD2:AD” & lRow), Range(“AI2:AI” & lRow), Range(“AL2:AL” & lRow), Range(“AW2:BF” & lRow))
For Each c In x
If c.Value <> “” And Not IsDate(c) Then
c.ClearContents
MsgBox “Enter date mm/dd/yyyy.”
End If
Next c
End Sub
Design implications of Balloon Tooltip vs Rectangular Tooltip
I’m using a tooltip for a validation message and trying to weigh different design options.
I’m curious because in this walkthrough on using MaskedTextBox.ValidatingType, they go out of their way to suggest using ToolTip.IsBa…
UI-solution for iOS/Swift
I hope that this kind of question is welcome here If not, please excuse me !
I have a TableViewController in iOS/Swift on top of the workflow:
In my setup, this controller is use to update/add rows:
SetupViewControlle…
Does anyone know of any examples of the use of character counter on an input field?
I am working on a project that allows users to edit objects named by clicking on it using something similar to the HTML 5 Content-editable attribute.
Update:
The character limit is 30 not three.
Also the input field is m…