Questions tagged [user-interaction]

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

326 questions
2
votes
1 answer

How to make cartpole game from GYM where user can play with keyboard

I have learned about cart pole from open ai GYM and I was wondering it is possible to make a game where user can control the pole. I have tried to take user key stroke value as input and put that in action but the environment just freezes. Is there…
2
votes
2 answers

Javascript event listeners and arrays

I am trying to recreate a scratch-to-reveal-image effect with 3 images in an array triggered by 3 buttons. My event listener is not working, as you can see, it shows the same revealed images no matter the button. The event listener syntax has…
Esme June
  • 67
  • 5
2
votes
1 answer

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 failure by looking at the DW20.exe process. The…
Andrew T
  • 5,549
  • 7
  • 43
  • 55
2
votes
1 answer

PayPal Payments without user interaction

I wanted to ask if someone knows a possibility to pay make PayPal payments without user interaction. I am currently working on a Project, where we want to make PayPal Payments on demand without the user having to login to PayPal. What I found…
2
votes
1 answer

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. I know for Google Maps there is a function…
Peter Duijnstee
  • 3,759
  • 2
  • 20
  • 30
2
votes
1 answer

Notify Admin when app crashes in node.js

I am running an web app and an helper app in parallel. The helper app updates some particular values in database used by the web app. This update happens at fixed time interval by using node-cron. Is it possible to notify admin when the helper app…
2
votes
1 answer

What is the difference between System Image and Conceptual model in interaction design?

I have Googled this but couldn't find a good answer. I understand that they are closed related. If someone has a definite answer on what the difference is I would be very grateful. Thank you.
2
votes
2 answers

Forbid user interaction with UI except the keyboard while editing text field

New to Swift. When a user clicks on a text field to begin typing, is there a way to disable all user interaction other than typing into that text field? I want it so that the user is unable to click outside the text field, and should press the…
brownmamba
  • 173
  • 1
  • 1
  • 16
2
votes
1 answer

How to detect user interaction on a Dialog?

I can detect user interaction in an activity with this code: @Override public void onUserInteraction() { super.onUserInteraction(); } But Android Dialog has no method like that. And I couldn't find the way to handle it. How can I do that?
Burak
  • 5,706
  • 20
  • 70
  • 110
2
votes
3 answers

Why my Tabbar's userinteraction is Enabled when come from popviewcontroller to another view?

Please review my code where i am wrong. first time when my app is launch every thing is fine tabBars.tabBar.userInteractionEnabled=NO; This code is working fine means my tabbar userInteraction is OFF. But i will go to another view and simple use…
2
votes
1 answer

Selecting record date with selectInput in shiny R

I am very new to R programming and I am trying to build an shiny r app that takes in data on shark attack data and builds a bar chart that specifies the frequency of a kind of attack e.g. Provoked, Unprovoked, Boating etc. I want to be able to…
Barzul
  • 97
  • 1
  • 2
  • 6
2
votes
2 answers

MapView over UITableViewCell

I'm trying to have a mapView cover an entire UITableViewCell and disable all user activity on this mapView, but still have the cell clickable. However, this mapView (even though I sent subview to back) is intercepting the user clicks and is causing…
bdc
  • 178
  • 1
  • 12
2
votes
1 answer

Discarding keyboard events between consecutive calls to input (MATLAB)

I have code that contains the following repeating pattern: Ask the user to press    ⏎    to begin computation (using input). Perform some lengthy computation and display some info to the user. Wait for the user to press    ⏎    again to proceed to…
Dev-iL
  • 23,742
  • 7
  • 57
  • 99
2
votes
1 answer

animateWithDuration and UIViewAnimationOptionsAllowUserInteraction

I'm making a simple app that involves a button moving across the screen and I would like for the user to be able to click it while it moves. I have this: func bonus () { UIView.animateWithDuration(14, delay: 0.1, …
Ben
  • 29
  • 5
2
votes
1 answer

Interact with a curve in a Matplotlib plot

I would like to allow user interactivity similar to this Javascript demo in a Matplotlib plot. I have a fairly good idea of how I can do this with a slider widget, but I would prefer direct interaction with the curve. What tools are available? It…
MyCarta
  • 808
  • 2
  • 12
  • 37