Questions tagged [user-interaction]

User-interactivity is the dialog that occurs between a human being and a computer program.

326 questions
2
votes
0 answers

How to track user interaction when a dialog is shown?

I use Activity.onUserInteraction() in my application which triggers on any interaction (e.g. tapping the screen somewhere) even if it will not lead to action. Perfect for screen timeouts, etc. public class MainActivity extends Activity { ... …
Thomas
  • 816
  • 5
  • 16
2
votes
0 answers

Translation from plain English to a set of instruction

I have a set of instructions, for example Linux's "ls", "grep", "cd", etc. I want the user to be able to execute this commands without knowing the exact names and parameters but rather with something similar to their meaning in plain English, e.g.…
2
votes
4 answers

C++ Classes + objects and user interract

i am new to c++ and i have a really bad time with classes and objects. I can't find a way to make the user to enter the data and not just some cout <<".."; from me. I need to understand classes and objects . I would really appreciate your help. I…
Manuel Pap
  • 1,309
  • 7
  • 23
  • 52
2
votes
1 answer

Elaboration idea movement ajax wicket elements

I am trying to optimize a webapplication for ipad use. I am now implementing the user interaction and related action / feedback. I have the following idea and was wondering if it is possible to achieve this. Detect the user-interaction with…
Bram
  • 4,533
  • 6
  • 29
  • 41
2
votes
1 answer

ELCUIApplication timeout issue

I am new for ios. I have an app in which i have a login. After login user can use application. Now i have functionality that if user have no user intraction for 2 mins than app will navigate to login screen. I have used…
Priyank Gandhi
  • 1,257
  • 1
  • 16
  • 29
2
votes
1 answer

Windows 8 App: "Snapping" Drag and Drop for Card Game

After trying to use the following snippet to move cards (Images right now) around I was not satisfied with the result. Card.ManipulationDelta += (o, args) => { var dragableItem = o as Image; if (dragableItem == null) return; var…
2
votes
0 answers

Automatizing controlling of Skype Linux UI application

I am the author of project Sevabot http://sevabot-skype-bot.readthedocs.org/ - a Skype bot for Linux. As the server installation is painful ( https://sevabot-skype-bot.readthedocs.org/en/latest/ubuntu.html ) I'd like to figure out how to make it…
Mikko Ohtamaa
  • 82,057
  • 50
  • 264
  • 435
2
votes
1 answer

Can Jenkins handle an gui/non-gui interactive python or java program?

I want to create a build pipeline, and developers need to set up a few things into a properties file which gets populated using a front end GUI. I tried running sample CLI interactive script using python that just asked for a name and prints it out…
2
votes
4 answers

How to get touch behind the imageview on transparent part of image on iOS?

Here I want to get the touch for button action event on button tap - B and when image is tapped (on visible area of image) the tap gesture method will call but problem is image is on the button and its covers some part of the button I wants to…
RayofHope
  • 1,187
  • 2
  • 14
  • 30
2
votes
1 answer

How child view will identifie set property of parent view (iPhone)?

The scenario is like, I have one UIButton in one UIView. So UIView is parent view and UIButton is child view. Now, If I set user interaction false for parent view then can I click UIButton ? If I am not able to touch UIButton then why…
Nikh1414
  • 1,238
  • 2
  • 19
  • 35
2
votes
1 answer

JUnit ask user if test was successful?

Does JUnit has a build it feature to ask user interactively about test succeeded? I know JUnit is for automatic testing, but I have some sound generating classes which I want to test by ear and want in some rare one-run cases to test them manually…
Dims
  • 47,675
  • 117
  • 331
  • 600
2
votes
1 answer

always blocked on reading from pipe opened through php's proc_open when used with stream_select

I'm talking to a process requiring user interaction using the following (PHP 5.3/ Ubuntu 12.04), $pdes = array( 0 => array('pipe', 'r'), //child's stdin 1 => array('pipe', 'w'), //child's stdout ); $process = proc_open($cmd, $pdes,…
toofast1227
  • 160
  • 1
  • 15
2
votes
2 answers

Pausing a program to allow user to interact in wpf

Ok, so this is a kind of general program. I am trying to write a poker program where the user can interact against computer players. However, in order to simplify it I am testing with a much simpler program where two players are trying to guess a…
Ergodyne
  • 165
  • 1
  • 15
1
vote
1 answer

User Interaction Enable in a UIImageView under another UIImage View

I have two UIImageView in a UIView in my application. And I need to Zoom, Rotate and Move the UIImageView which is at bottom of the top one, I don't need to do any thing with top one. I've already implemented the code for Move, Rotate and Zoom but…
Sameera Chathuranga
  • 3,638
  • 3
  • 27
  • 48
1
vote
2 answers

Graphical, user friendly representation for 'All', 'Some', 'None'

I'm building a reporting tool where the user can filter results by selecting one or more options from various checkbox lists. To save space I'd like to shrink each list once the selections are made but have a symbol next to each to remind the user…
Derek
  • 2,092
  • 1
  • 24
  • 38