Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
12answers
1k views

Resources to Create Applications with a Great User Interaction Experience?

I am making the distinction between User Interaction Experience and pure User Interface (UI) design here, even though there is often a correspondence. You can have great user interaction even with a ...
8
votes
8answers
113 views

Where to store user's interface choices?

What is the widely-accepted way to store interface choices, such as 'Do not show this message again' settings, and any other interface-specific choices of the user? Registry? Settings files? I can ...
6
votes
6answers
1k views

C# For how long was user inactive

Some background: I am writing a application with several forms, etc. Users have to log in in order to use most of the features, and this worked fine until now. However, now, client has requested that ...
5
votes
4answers
122 views

Navigate manually with a cursor through nested lists by only providing “left()” and “right()” as commands?

Eventhough I write in python I think the abstract concept is more interesting to me and others. So pseudocode please if you like :) I have a list with items from one of my classes. Lets do it with ...
4
votes
3answers
687 views

How can a C# Windows Console application tell if it is run interactively

How can a Windows console application written in C# determine whether it is invoked in a non-interactive environment (e.g. from a service or as a scheduled task) or from an environment capable of ...
3
votes
4answers
176 views

Prompt user for confirmation in the middle of a process

I'm looking for a good approach to sometimes pause an action (function/method call) until the user confirms that he wants to do a specific part of that action. I need to do this in an environment that ...
3
votes
6answers
140 views

What subjects are beneficial to learn in order to understand human interaction with computers

I was inspired by this question, and it's first answer to ask my question. What specific areas of study, if any, focus on human-machine interaction and the study of human behaviour with regard to ...
2
votes
3answers
460 views

Objective C: How to disable user interaction to all of tab bars except one?

As what the title suggests, I would like to be able to lock all my tab bars except for one. And only after the user completes an action will I enable all the rest of the tab bars. How can I do that?
2
votes
1answer
131 views

How do I communicate with the user in a finite state machine implementation?

Basically I have a custom implemented finite state machine that mostly listens for hardware switch state changes for initiating transitions, but some things need communication with the user... For ...
1
vote
1answer
28 views

How to create a resizable rectangle with user touch events on Android?

I want to create a rectangular shape that will be resized with the touches of the user. Below image is a good example of what i want to do: Is there any example like that? What do I need to study ...
1
vote
2answers
83 views

User interaction from the PostScript executive

I'm building an application in PostScript that needs to take input fom the user at a prompt (I will be using the GhostScript executive, and the file won't be sent to the printer). I can't see ...
1
vote
1answer
71 views

Android: Detect General Use by User

I am working on an application that monitors phone use (specifically, what time its being used). Presently, I log times of phone calls, SMSs, MMSs, Screen turning on, screen turning off, and keygaurd ...
1
vote
1answer
272 views

Prevent Windows Error Reporting (DW20.exe) window for a particular process

I have an automated build system set up on a Windows box, but one of the compiling tools randomly fail to work. The whole system works as a service, so it has no interaction with users. I detect the ...
1
vote
2answers
588 views

Disable tableView, but enable UINavigationController's back button

I am disabling a UITableView while displaying a UIActivityIndicatorView, and I just wanted to know how I could enable the UINavigationController's back button while the UITableView is disabled?
1
vote
2answers
1k views

How to detect Ctrl+V in Silverlight 4?

What is the best way to detect Ctrl+V in Silverlight? I want to detect Ctrl+V, to get access to the Clipboard.
1
vote
5answers
173 views

Too much control is bad. But when?

I remember reading a law (well, maybe not exactly a law), but in software design, providing user with a lot of control without really giving him an option of a Basic and an Advanced Mode will ...
1
vote
6answers
364 views

Separating Logic/GUI and user interaction

imagine you have a function that creates/copies/moves files. [logic] For the case that a file that should be copied/created already exists you would like to ask the user to overwrite the file or ...
0
votes
1answer
24 views

I need an advice about interval setting in small pinging app

I'm creating an application which let me to ping IP or IP range using time interval between each ping. My concern here is that if the interval will be allowed to be too small then my program would ...
0
votes
1answer
38 views

uiimageview touchesbegan

developing iphone app, I have used a UIImageview and i have set an image of irregular shape // uiimageview type shutter shutter = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,320,32.5)]; ...
0
votes
0answers
13 views

New app compiled for iPhone/iPad works in iPhone has no user interaction on iPad

I have a problem with a new app I've written and compiled for both platforms. Works fine on iPhone 3GS with armv6 arch and iPhone 4S armv7 arch. But on iPad2 all user interaction is disabled after app ...
0
votes
1answer
30 views

Last Instance of User Interaction on Mac

I'm trying to detect the last instance that a user interacted with a given Mac (preferably in some sort of comparable data structure, like seconds since the epoch.) This interaction should include ...
0
votes
1answer
24 views

How to scan user activity in order to reset timer in Android

I'm facing one issue and I cannot find the solution. My application has a PIN code and I want to un-verify it after 2 minutes without any action from user. For instance user verified the PIN and ...
0
votes
1answer
40 views

Adding other UI elements to UITableViewCells

When I add an accessoryView to a UITableViewCell like so: cell.accessoryView = myTextField; I have to set the cell userInteractionEnabled to YES. The problem is, I don't want the cell's interaction ...
0
votes
1answer
48 views

change color of UITableViewCell after reenabled userinteraction

in my app, i've some menupoints, that are disabled for userinteraction. cell.userInteractionEnabled = FALSE; after the login, i want to reenable some of these cells. this snippet is working ...
0
votes
1answer
60 views

WebView in user interface on Android [closed]

How do you think, is it good idea to use WebView+html+java script to make user interface on android? And all Dialogs in application will open new WebView which contains html page, binded with Java ...
0
votes
0answers
25 views

Disable MainWindow user interaction from another view

Is it possible and how? I want to disable user interaction on entire screen when webView is loading
0
votes
1answer
46 views

jQuery: Control page reloads or moving away from the current page

If a user moves away from the current page by using mouse (clicking on a link) or keyboard (hitting enter while having a form element focused) interactions, i want to do be able to run ...
0
votes
1answer
57 views

Jquery detect all dom event calls and user interactions

I want to track all user actions in order to record the user behavior. For example, a user clicks on a link and i want to call a method that does something with that information before executing the ...
0
votes
1answer
25 views

Where is/are the usability bug/s in my portfolio?

I have a portfolio for "after hours" work; it's at: http://jonathanhayward.com/portfolio It is designed to provide multiple ways of accessing a site: there's a column of buttons to the left; ...
0
votes
1answer
223 views

iOS UIScrollView without user interaction and programmatic scrolling

Is it possible to have a UIScrollView without the user being able to scroll and therefore is it possible to scroll a UIScrollView programmatically?
0
votes
0answers
32 views

How to prevent the user from constructing/altering a simple polygon into a complex one?

I understand that the general problem of computing a simple non-convex 2D polygon out of a set of 2D points doesn't have a single solution (simple in the sense that the polygon doesn't cross over ...
0
votes
0answers
140 views

Rope physics in javascript

I am looking to simulate a piece of heavy rope/chord in javascript. So as the user moves around the end of the chord, the rest will react in a natural way. Is there a javascript library to do this?
0
votes
1answer
113 views

Iphone/ipad custom controls by touch event

I want to create segmented control when the user tap the specific portion of the screen just like the OliveTree bible software application makes it. When the user tap the verses the app, it ...
0
votes
2answers
183 views

Capture and stop propagation of user interaction iOS UITableViewCell

I am doing some custom drawing a UITableViewCell that I have subclassed. In there there is an OpenGL ES 2.0 control that needs user interaction to work... now if I start dragging horizontally the ...
0
votes
0answers
19 views

Use sound to trigger an event on networked computers?

I'm in charge of a computer lab for youths in the Dominican Republic and a frequent activity here is for the kids to get into shouting contests in the computer lab while others are trying to study. As ...
0
votes
1answer
106 views

Jquery, User Interaction: Hover links to highlight project combinations

JS Fiddle (code) This is more of a task I have set myself to learn Arrays but now I was wondering if any of you can think of a better cleaner way of doing this task. I simply want a list of projects ...
0
votes
0answers
237 views

Android contentView disable user interaction?

I want to disable the user interaction in an activity so that the user cannot touch the view/ subviews inside the content view of the activity. Is there any way to achieve this?
0
votes
3answers
1k views

Don't allow user interaction when activity indicator view is visible

I have a view which contains two views. One of those views contains two buttons and some text labels. The other one, with alpha set to 0.25, has an UIActivityIndicatorView to tell the user that the ...
0
votes
0answers
29 views

Official advice on “don't ask questions users cannot answer”? [closed]

Apologies if this is the wrong place to ask. I remember reading somewhere a lot of good advice on user interface, including something about "don't ask questions users cannot answer". It had some ...
0
votes
1answer
144 views

Disabling user interaction for the Google Earth plugin

I'm putting together an app that will show a news item's location in Google Earth using the javascript api. This is working great but we want to prevent users from manually dragging the globe around. ...
0
votes
1answer
176 views

Core graphics and UIKit interaction

Hey all, I'm am trying to make a very interactive UI with lots of animations and effects. But I don't know if: Core graphics can support user interaction (touches, drags, etc) Core graphics ...
0
votes
1answer
42 views

What happended to robot replay and are there any other services like that?

A couple of years ago I tried robot replay's service where I could, by adding a script on a site, replay what the users were doing. Mouse movement, scrolling, clicks etc. It was pretty cool and can be ...
0
votes
2answers
60 views

How should this user process be implemented to make it as intuitive as possible

I have to create this process: you have an arbitrary list of people you have to set their working schedule in terms of 5-2 or 6-4 (workdays and free days) you have to schedule it for several months ...
0
votes
2answers
83 views

IPhone Catch any application interaction

Im just wondering if there is any method of catching any user interaction with the application. The reason i ask is that when a user interacts with the app i update a date in the db. if they date is ...
0
votes
0answers
100 views

User interaction is disabled when run app on iPad, working fine for iPhone

My application is running perfectly on iPhone (all version 3.0 - 4.0), but when I run the app on iPad (3.2) app is running but I'm not able to make any user interaction, even the 2x button is also not ...
0
votes
4answers
151 views

Simplest way to get an interactive console for my app

I want a simple, interactive way to demo middle-tier features of my app which have not had a UI created yet. I want an interactive console. When my application (WPF but it shouldn't matter) boots up ...
0
votes
2answers
216 views

how to disable user interaction for a button

i have a play button in my view,if i press play its gets updated the stream and started playing.. until i get play song i dont want to take any user interactions on play button.. can any ony help me ...
0
votes
3answers
103 views

I need to create a contest [closed]

I'm working on a contest where users vote for contestants. Each contestant will have a bio. I was wondering what would be the best way to approach this? Should I do this in php or javascript? Should I ...
-1
votes
2answers
788 views

Does interface research indicate Arial is better than Verdana/Tahoma (for on screen reading)

I know Google does A LOT of user interface/experience testing and I'm looking for any type of scientific research on User Experience when it comes to typefaces used on a monitor display. As such, I'm ...
-2
votes
1answer
52 views

Enable user interaction on the table View

So I have a tableView with navigation controller. And the data loads from url. So when row is selected another table view appears while the data is loading the back button on the navigation bar is is ...