User-interactivity is the dialog that occurs between a human being and a computer program.
Questions tagged [user-interaction]
326 questions
0
votes
1 answer
interactjs "hold" sensitivity
Using interactjs, is there any way to control the sensitivity of drag v hold? On PC getting the hold event to fire is quite easy with mouse. On iPad/iPhone screen sensitivity (mostly finger pressure changes) make it quite hard to get the "hold"…

Robinson
- 9,666
- 16
- 71
- 115
0
votes
1 answer
Detecting palms on a touch screen
everyone!
I'm doing a research project involving detecting the simultaneous detection of palms placed on a multitouch screen.
I've done quite a bit googling and found out that there's a lot of libraries both for gesture recognition (AS3,…

sashakatin
- 13
- 4
0
votes
0 answers
Batch File to Automatically Install List of Drivers without User Interaction
At work, one of the tasks I am responsible for is resetting computers to their factory settings and installing the updated drivers. Lenovo makes this easy with their System Update tool, but Dell and other companies require you to install drivers…

juggling_pro
- 49
- 1
- 11
0
votes
1 answer
How do I let the user select opacity in Flash Professional CC using ActionScript 3?
So I was in the middle of making a type of test program where I would take parts of a shirt and the user could customize it with different colors.
While I was doing that I realized it wasn't realistic as there was absolutely no fade with the color…
user4740732
0
votes
1 answer
MVC : Is there any situation where the model can interact with the user?
I am currently learning how to use the MVC pattern by developing an Connect Four game with a graphic and console view ( JAVA ).
The app in console mode has two ways of asking for a move:
Manually introducing the column where you want to put the…

mtelloz
- 5
- 3
0
votes
1 answer
User interaction in mobile app
I am working on a mobile app and wanted to know if there is any plugin which traces the user interaction within the app. For ex. if user has clicked on any particular tab or navigated to any specific section of the app. I know crazy egg does this…
0
votes
2 answers
How to disable user ineraction in stage in AS3
I am new in Action Script.
I need to disable user interaction in stage . How can I achieve this.
I have tried with
stage.mouseEnabled = false; and
stage.mouseChildren = false;
both getting crash,
Error: Error #2071: The stage class does not…

Vineesh TP
- 7,755
- 12
- 66
- 130
0
votes
2 answers
JavaScript / Wicket : How to display an overlay which prevents user interaction
I'm looking for a solution for displaying an overlay which should prevent userinteraction. I want to start an upload and force the user to wait until it is finished. After finishing the overlay should be removed.
Background:
I'm using Apache Wicket…

DaUser
- 357
- 3
- 5
- 19
0
votes
2 answers
How to continue through a UI with multiple loops and waiting for user feedback?
I am writing in C# and using .net framework 3.5. I am running through multiple loops that on each iteration build the UI and then wait for user feedback (waiting for a Pass or Fail button click). Here is what I am looking to do:
public partial class…

scanlynx
- 1
- 1
0
votes
0 answers
How to stop touch event if not left the finger
I have a problem that, if i put a finger on a view, and I implement the touch Began/Move/End/Cancel functions.
Than I draw some other content on the view. But I want to make sure if the user still put his finger on the view(touch Move), I can…

JerryZhou
- 4,566
- 3
- 37
- 60
0
votes
1 answer
Displaying an error message during insert execution
How do I display an error message if a student is already assigned with the position currently being inserted into the mysql database, then rollback the transaction?
If a different position is assigned, it should continue to check the next row.
Here…

Justin Aizengard
- 92
- 1
- 12
0
votes
2 answers
In Scala execute OS command that requires user interaction
How to execute an operating system command that requires user interaction using a Scala process ?
To illustrate this, consider for instance passwd in Unix/Linux OS, as follows,
import sys.process._
import scala.language.postfixOps
and so
scala>…

elm
- 20,117
- 14
- 67
- 113
0
votes
4 answers
Disable interaction for views behind background image
To show a help view I've put an UIImageView which behind has some UIButtons. How can I disable user interaction of these buttons? If I touch this image where buttons are behind, they responds to touch events.
CODE FOR IMAGE…

RFG
- 2,880
- 3
- 28
- 44
0
votes
1 answer
Use a UIGestureRecognizer to get the coordinates whenever the finger moves?
I am trying to make a slider, where an image slides with the finger, left to right. I want to use a UIGestureRecognizer. How do I make it so it for this purpose, logs out the coordinates of the finger, every time the finger moves?

Benr783
- 2,860
- 4
- 20
- 28
0
votes
1 answer
Disable background userinteraction - Cocos2d
I have a custom CCNode that I am using for providing notifications on a popup basis. I am trying to disable the background when the CCNode is popped up but allow user interaction on the new CCNode.
I can disable the parent UIView by using the…

memyselfandmyiphone
- 1,080
- 4
- 21
- 43